diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index 3cb5d9a93..000000000 --- a/.appveyor.yml +++ /dev/null @@ -1,23 +0,0 @@ -clone_depth: 1 -version: "{build}" -image: Visual Studio 2015 -platform: - - x86 - - x64 -environment: - matrix: - - compiler: msvc -install: - - vcpkg install --triplet %PLATFORM%-windows --recurse fftw3 libsamplerate libsndfile sdl2 - - nuget install clcache -Version 4.1.0 -build_script: - - cd %APPVEYOR_BUILD_FOLDER% - - mkdir build - - cd build - - ps: $env:CMAKE_PLATFORM="$(if ($env:PLATFORM -eq 'x64') { 'x64' } else { '' })" - - ps: $env:QT_SUFFIX="$(if ($env:PLATFORM -eq 'x64') { '_64' } else { '' })" - - cmake -DUSE_COMPILE_CACHE=ON -DCACHE_TOOL=%APPVEYOR_BUILD_FOLDER%/clcache.4.1.0/clcache-4.1.0/clcache.exe -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_PREFIX_PATH=c:/Qt/5.9/msvc2015%QT_SUFFIX%;c:/tools/vcpkg/installed/%PLATFORM%-windows -DCMAKE_GENERATOR_PLATFORM="%CMAKE_PLATFORM%" .. - - cmake --build . -- /maxcpucount:4 - - cmake --build . --target tests -cache: - - c:/tools/vcpkg/installed diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 4174ba1ef..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,135 +0,0 @@ -version: 2 - -shared: - restore_cache: &restore_cache - restore_cache: - keys: - - ccache-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ .Branch }} - - ccache-{{ arch }}-{{ .Environment.CIRCLE_JOB }} - - ccache-{{ arch }} - save_cache: &save_cache - save_cache: - key: ccache-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ .Branch }}-{{ .BuildNum }} - paths: - - ~/.ccache - - ccache_stats: &ccache_stats - run: - name: Print ccache statistics - command: | - echo "[ccache config]" - ccache -p - echo "[ccache stats]" - ccache -s - - # Commmon initializing commands - init: &init - run: - name: Initialize - command: | - mkdir -p /tmp/artifacts - # Workaround for failing submodule fetching - git config --global --unset url."ssh://git@github.com".insteadOf || true - - # Commmon environment variables - common_environment: &common_environment - QT5: True - CMAKE_OPTS: -DUSE_WERROR=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DUSE_CCACHE=ON - CCACHE_MAXSIZE: 500M - CCACHE_LOGFILE: /tmp/artifacts/ccache.log - MAKEFLAGS: -j6 - -jobs: - mingw32: - environment: - <<: *common_environment - docker: - - image: lmmsci/linux.mingw32:18.04 - steps: - - checkout - - *init - - *restore_cache - - run: - name: Building - command: | - mkdir build && cd build - ../cmake/build_win32.sh - make lmms - make - - run: - name: Build tests - command: cd build && make tests - - *ccache_stats - - *save_cache - mingw64: - environment: - <<: *common_environment - docker: - - image: lmmsci/linux.mingw64:18.04 - steps: - - checkout - - *init - - *restore_cache - - run: - name: Building - command: | - mkdir build && cd build - ../cmake/build_win64.sh - make - - run: - name: Build tests - command: cd build && make tests - - *ccache_stats - - *save_cache - linux.gcc: - docker: - - image: lmmsci/linux.gcc:18.04 - environment: - <<: *common_environment - steps: - - checkout - - *init - - *restore_cache - - run: - name: Configure - command: mkdir build && cd build && cmake .. $CMAKE_OPTS -DCMAKE_INSTALL_PREFIX=./install - - run: - name: Build - command: cd build && make - - run: - name: Build tests - command: cd build && make tests - - run: - name: Run tests - command: build/tests/tests - - *ccache_stats - - run: - name: Build AppImage - command: | - cd build - make install - make appimage || (cat appimage.log && false) - cp ./lmms-*.AppImage /tmp/artifacts/ - - store_artifacts: - path: /tmp/artifacts/ - destination: / - - store_artifacts: - path: build/appimage.log - destination: / - - *save_cache - shellcheck: - docker: - - image: koalaman/shellcheck-alpine:v0.4.6 - steps: - - checkout - - run: - name: Shellcheck - command: shellcheck $(find "./cmake/" -type f -name '*.sh' -o -name "*.sh.in") -workflows: - version: 2 - build-and-test: - jobs: - - mingw32 - - mingw64 - - linux.gcc - - shellcheck diff --git a/.clang-format b/.clang-format new file mode 100644 index 000000000..6ef53c0ba --- /dev/null +++ b/.clang-format @@ -0,0 +1,84 @@ +--- +# Language +Language: Cpp +Standard: Cpp11 # Cpp14 and Cpp17 are not supported by clang 11 + +# Indentation +TabWidth: 4 +UseTab: Always +IndentWidth: 4 +ColumnLimit: 120 + +# Indentation detail +AlignAfterOpenBracket: DontAlign +ContinuationIndentWidth: 4 +BreakConstructorInitializers: BeforeComma +ConstructorInitializerIndentWidth: 4 +ConstructorInitializerAllOnOneLineOrOnePerLine: false +BinPackParameters: true +BinPackArguments: true +AlignOperands: false + +# Alignment +AlignEscapedNewlines: DontAlign +AccessModifierOffset: -4 +AllowShortBlocksOnASingleLine: Always +AllowShortIfStatementsOnASingleLine: Always +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: InlineOnly +BreakBeforeBinaryOperators: All + +# Includes +IncludeBlocks: Regroup +IncludeCategories: + # windows.h must go before everything else + # otherwise, you will get errors + - Regex: '^$' + Priority: -99 + # the "main header" implicitly gets priority 0 + # system headers + - Regex: '^<[^>]+>$' + Priority: 1 + # non-system headers + - Regex: '.*' + Priority: 2 +SortIncludes: true + +# Spaces +SpaceBeforeAssignmentOperators: true +SpaceBeforeParens: ControlStatements +SpacesInAngles: false +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false + +# Brace wrapping +# Not directly mentioned in the coding conventions, +# but required to avoid tons of auto reformatting +BreakBeforeBraces: Custom +BraceWrapping: + AfterClass: true + AfterControlStatement: Always + AfterEnum: true + AfterFunction: true + AfterNamespace: false + AfterStruct: true + AfterUnion: true + AfterExternBlock: false + BeforeCatch: true + BeforeElse: true + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true + BeforeWhile: false + BeforeLambdaBody: false + +# Do not break doxygen comments +CommentPragmas: '^[[:space:]]*\\.+' + +# Pointers +# Use pointer close to type: `const char* const* function()` +PointerAlignment: Left + +... + diff --git a/.clang-tidy b/.clang-tidy new file mode 100644 index 000000000..aff46bba6 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,46 @@ +--- +Checks: > + bugprone-macro-parentheses, + bugprone-macro-repeated-side-effects, + modernize-redundant-void-arg, + modernize-use-bool-literals, + modernize-use-emplace, + modernize-use-equals-default, + modernize-use-equals-delete, + modernize-use-override, + performance-trivially-destructible, + readability-identifier-naming, + readability-misleading-indentation, + readability-simplify-boolean-expr, + readability-braces-around-statements +WarningsAsErrors: '' +HeaderFilterRegex: '' # don't show errors from headers +AnalyzeTemporaryDtors: false +FormatStyle: none +User: user +CheckOptions: + - key: readability-identifier-naming.ClassCase + value: CamelCase + - key: readability-identifier-naming.EnumCase + value: CamelCase + - key: readability-identifier-naming.TypedefCase + value: CamelCase + - key: readability-identifier-naming.UnionCase + value: CamelCase + - key: readability-identifier-naming.StructCase + value: CamelCase + - key: readability-identifier-naming.UnionCase + value: CamelCase +# not yet working, as it currently applies both for static and object members +# - key: readability-identifier-naming.MemberPrefix +# value: 'm_' + # currently only working for local static variables: + - key: readability-identifier-naming.StaticVariablePrefix + value: 's_' +# not yet working +# - key: readability-identifier-naming.VariableCase +# value: camelBack + - key: readability-identifier-naming.FunctionCase + value: camelBack +... + diff --git a/.gitattributes b/.gitattributes index 0adef1096..af66ad017 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,5 @@ .gitattributes export-ignore .gitignore export-ignore data/locale/* linguist-documentation +* text=auto eol=lf +*.{bin,bmp,flac,icns,ico,mmpz,ogg,png,xiz,xmz,wav} binary diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..fcc875601 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,36 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: '' + +--- + +# Please search the issue tracker for existing bug reports before submitting your own. Delete this line to confirm no similar report has been posted yet. + +### Bug Summary + +#### Steps to reproduce + +#### Expected behavior + +#### Actual behavior + +#### Screenshot + +#### Affected LMMS versions + + + +#### Logs +
+ Click to expand +
+
+
+
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..2c51f276e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,4 @@ +contact_links: +- name: Get help on Discord + url: https://lmms.io/chat/ + about: Need help? Have a question? Reach out to other LMMS users on our Discord server! diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..f9a0ae192 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,18 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: '' + +--- + +# Please search the issue tracker for existing feature requests before submitting your own. Delete this line to confirm no similar request has been posted yet. + +### Enhancement Summary + +#### Justification + +#### Mockup + + diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..b51857402 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,252 @@ +--- +name: build +'on': [push, pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true +jobs: + linux: + name: linux + runs-on: ubuntu-latest + container: lmmsci/linux.gcc:18.04 + env: + CMAKE_OPTS: >- + -DUSE_WERROR=ON + -DCMAKE_BUILD_TYPE=RelWithDebInfo + -DUSE_COMPILE_CACHE=ON + CCACHE_MAXSIZE: 500M + MAKEFLAGS: -j2 + steps: + - name: Update and configure Git + run: | + add-apt-repository ppa:git-core/ppa + apt-get update + apt-get --yes install git + git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - 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 + run: | + source /opt/qt5*/bin/qt5*-env.sh || true + mkdir build && cd build + cmake .. $CMAKE_OPTS -DCMAKE_INSTALL_PREFIX=./install + - name: Build + run: cmake --build build + - name: Build tests + run: cmake --build build --target tests + - name: Run tests + run: build/tests/tests + - name: Package + run: | + cmake --build build --target install + cmake --build build --target appimage + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: linux + path: build/lmms-*.AppImage + - name: Print ccache statistics + run: | + echo "[ccache config]" + ccache -p + echo "[ccache stats]" + ccache -s + macos: + name: macos + runs-on: macos-11 + env: + CMAKE_OPTS: >- + -DUSE_WERROR=ON + -DCMAKE_BUILD_TYPE=RelWithDebInfo + -DUSE_COMPILE_CACHE=ON + CCACHE_MAXSIZE: 500M + MAKEFLAGS: -j3 + DEVELOPER_DIR: /Applications/Xcode_11.7.app/Contents/Developer + steps: + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - 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: ~/Library/Caches/ccache + - name: Install dependencies + run: | + brew install ccache fftw pkg-config libogg libvorbis lame libsndfile \ + libsamplerate jack sdl libgig libsoundio lilv lv2 stk \ + fluid-synth portaudio fltk qt@5 carla + npm install --location=global appdmg + - name: Configure + run: | + mkdir build + cmake -S . \ + -B build \ + -DCMAKE_INSTALL_PREFIX="../target" \ + -DCMAKE_PREFIX_PATH="$(brew --prefix qt5)" \ + $CMAKE_OPTS \ + -DUSE_WERROR=OFF + - name: Build + run: cmake --build build + - name: Build tests + run: cmake --build build --target tests + - name: Run tests + run: build/tests/tests + - name: Package + run: | + cmake --build build --target install + cmake --build build --target dmg + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: macos + path: build/lmms-*.dmg + - name: Print ccache statistics + run: | + echo "[ccache config]" + ccache -p + echo "[ccache stats]" + ccache -s + mingw: + strategy: + fail-fast: false + matrix: + arch: ['32', '64'] + name: mingw${{ matrix.arch }} + runs-on: ubuntu-latest + container: lmmsci/linux.mingw${{ matrix.arch }}:18.04 + env: + CMAKE_OPTS: >- + -DUSE_WERROR=ON + -DCMAKE_BUILD_TYPE=RelWithDebInfo + -DUSE_COMPILE_CACHE=ON + CCACHE_MAXSIZE: 500M + MAKEFLAGS: -j2 + steps: + - name: Update and configure Git + run: | + add-apt-repository ppa:git-core/ppa + apt-get update + apt-get --yes install git + git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - name: Cache ccache data + uses: actions/cache@v3 + with: + key: "ccache-${{ github.job }}-${{ matrix.arch }}-${{ github.ref }}\ + -${{ github.run_id }}" + restore-keys: | + ccache-${{ github.job }}-${{ matrix.arch }}-${{ github.ref }}- + ccache-${{ github.job }}-${{ matrix.arch }}- + path: ~/.ccache + - name: Configure + run: | + mkdir build && cd build + ../cmake/build_win${{ matrix.arch }}.sh + - name: Build + run: cmake --build build + - name: Build tests + run: cmake --build build --target tests + - name: Package + run: cmake --build build --target package + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: mingw${{ matrix.arch }} + path: build/lmms-*.exe + - name: Print ccache statistics + run: | + echo "[ccache config]" + ccache -p + echo "[ccache stats]" + ccache -s + msvc: + strategy: + fail-fast: false + matrix: + arch: ['x86', 'x64'] + name: msvc-${{ matrix.arch }} + runs-on: windows-2019 + env: + qt-version: '5.15.2' + steps: + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - name: Cache vcpkg dependencies + uses: actions/cache@v3 + with: + key: vcpkg-${{ matrix.arch }}-${{ github.ref }}-${{ github.run_id }} + restore-keys: | + vcpkg-${{ matrix.arch }}-${{ github.ref }}- + vcpkg-${{ matrix.arch }}- + path: C:\vcpkg\installed + - name: Install 64-bit Qt + if: matrix.arch == 'x64' + uses: jurplel/install-qt-action@64bdb64f2c14311d23733a8463e5fcbc65e8775e + with: + version: ${{ env.qt-version }} + arch: win64_msvc2019_64 + archives: qtbase qtsvg qttools + cache: true + - name: Install 32-bit Qt + uses: jurplel/install-qt-action@64bdb64f2c14311d23733a8463e5fcbc65e8775e + with: + version: ${{ env.qt-version }} + arch: win32_msvc2019 + archives: qtbase qtsvg qttools + cache: true + set-env: ${{ matrix.arch == 'x86' }} + - name: Install dependencies + run: | + vcpkg install ` + --triplet=${{ matrix.arch }}-windows ` + --host-triplet=${{ matrix.arch }}-windows ` + --recurse ` + fftw3 fluidsynth[sndfile] libsamplerate libsndfile libstk lilv lv2 ` + portaudio sdl2 + - name: Set up build environment + uses: ilammy/msvc-dev-cmd@d8610e2b41c6d0f0c3b4c46dad8df0fd826c68e1 + with: + arch: ${{ matrix.arch }} + - name: Configure + run: | + mkdir build + cmake -S . ` + -B build ` + -G Ninja ` + --toolchain C:/vcpkg/scripts/buildsystems/vcpkg.cmake ` + -DCMAKE_BUILD_TYPE=RelWithDebInfo + - name: Build + run: cmake --build build + - name: Build tests + run: cmake --build build --target tests + - name: Package + run: cmake --build build --target package + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: msvc-${{ matrix.arch }} + path: build\lmms-*.exe diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 000000000..1d893989e --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,33 @@ +--- +name: checks +'on': [push, pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true +jobs: + scripted-checks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install python-tinycss2 + run: sudo apt-get install -y python3-tinycss2 + - name: Update submodules + run: git submodule update --init --recursive + - name: Verify scripted tests + run: tests/scripted/verify + - name: Run check-strings + run: tests/scripted/check-strings + - name: Run check-namespace + run: tests/scripted/check-namespace + shellcheck: + runs-on: ubuntu-latest + container: koalaman/shellcheck-alpine:v0.4.6 + steps: + - name: Check out + uses: actions/checkout@v3 + - name: Run shellcheck + run: | + shellcheck \ + $(find "./cmake/" -type f -name '*.sh' -o -name "*.sh.in") \ + doc/bash-completion/lmms \ + buildtools/update_locales diff --git a/.gitignore b/.gitignore index 771eba607..ee289379f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,8 +4,8 @@ .DS_Store *~ /CMakeLists.txt.user -/plugins/zynaddsubfx/zynaddsubfx/ExternalPrograms/Controller/Makefile -/plugins/zynaddsubfx/zynaddsubfx/ExternalPrograms/Spliter/Makefile -/plugins/zynaddsubfx/zynaddsubfx/doc/Makefile -/plugins/zynaddsubfx/zynaddsubfx/doc/gen/Makefile +/plugins/ZynAddSubFx/zynaddsubfx/ExternalPrograms/Controller/Makefile +/plugins/ZynAddSubFx/zynaddsubfx/ExternalPrograms/Spliter/Makefile +/plugins/ZynAddSubFx/zynaddsubfx/doc/Makefile +/plugins/ZynAddSubFx/zynaddsubfx/doc/gen/Makefile /data/locale/*.qm diff --git a/.gitmodules b/.gitmodules index 28d6c5d46..2ccfcbcdf 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,9 +3,9 @@ url = https://github.com/Lukas-W/qt5-x11embed.git [submodule "src/3rdparty/rpmalloc/rpmalloc"] path = src/3rdparty/rpmalloc/rpmalloc - url = https://github.com/rampantpixels/rpmalloc.git -[submodule "plugins/zynaddsubfx/zynaddsubfx"] - path = plugins/zynaddsubfx/zynaddsubfx + url = https://github.com/mjansson/rpmalloc.git +[submodule "plugins/ZynAddSubFx/zynaddsubfx"] + path = plugins/ZynAddSubFx/zynaddsubfx url = https://github.com/lmms/zynaddsubfx.git [submodule "plugins/FreeBoy/game-music-emu"] path = plugins/FreeBoy/game-music-emu @@ -34,3 +34,18 @@ [submodule "doc/wiki"] path = doc/wiki url = https://github.com/lmms/lmms.wiki.git +[submodule "src/3rdparty/ringbuffer"] + path = src/3rdparty/ringbuffer + url = https://github.com/JohannesLorenz/ringbuffer.git +[submodule "plugins/CarlaBase/carla"] + path = plugins/CarlaBase/carla + url = https://github.com/falktx/carla +[submodule "plugins/Sid/resid"] + path = plugins/Sid/resid + url = https://github.com/simonowen/resid +[submodule "src/3rdparty/jack2"] + path = src/3rdparty/jack2 + url = https://github.com/jackaudio/jack2 +[submodule "plugins/LadspaEffect/cmt/cmt"] + path = plugins/LadspaEffect/cmt/cmt + url = https://github.com/lmms/cmt diff --git a/.mailmap b/.mailmap index 71b6697c8..536bc692c 100644 --- a/.mailmap +++ b/.mailmap @@ -1,4 +1,4 @@ -Alexandre Almeida +Alexandre Almeida Tobias Junghans Dave French Paul Giblock @@ -29,3 +29,5 @@ grejppi Johannes Lorenz Johannes Lorenz <1042576+JohannesLorenz@users.noreply.github.com> Noah Brecht +Olivier Humbert +Hussam al-Homsi Hussam Eddin Alhomsi diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b3cb8aa7c..000000000 --- a/.travis.yml +++ /dev/null @@ -1,49 +0,0 @@ -language: cpp -compiler: gcc -dist: trusty -sudo: required -cache: - directories: - - $HOME/apt_mingw_cache - - $HOME/.ccache - - $HOME/pbuilder-bases -matrix: - include: - - env: TYPE=style - - os: linux - - env: TARGET_OS=win32 - - env: TARGET_OS=win64 - - env: TARGET_OS=debian-sid TARGET_DEPLOY=True - git: - depth: false - - env: TARGET_OS=debian-sid TARGET_ARCH=i386 - git: - depth: false - - compiler: clang - env: TARGET_OS=debian-sid - git: - depth: false - - os: osx - osx_image: xcode8.3 -before_install: - # appdmg doesn't work with old Node.js - - if [ "$TRAVIS_OS_NAME" = osx ]; then nvm install 10; fi -install: ${TRAVIS_BUILD_DIR}/.travis/install.sh -script: ${TRAVIS_BUILD_DIR}/.travis/script.sh -after_script: ${TRAVIS_BUILD_DIR}/.travis/after_script.sh -before_deploy: - - if [ "$TARGET_OS" != debian-sid ]; then make package; fi -deploy: - provider: releases - api_key: - secure: d4a+x4Gugpss7JK2DcHjyBZDmEFFh4iVfKDfITSD50T6Mc6At4LMgojvEu+6qT6IyOY2vm3UVT6fhyeuWDTRDwW9tfFlaHVA0h8aTRD+eAXOA7pQ8rEMwQO3+WCKuKTfEqUkpL4wxhww8dpkv54tqeIs0S4TBqz9tk8UhzU7XbE= - file_glob: true - file: - - lmms-${TRAVIS_TAG:1}-$TARGET_OS.exe - - /var/cache/pbuilder/result/lmms_*.tar.xz - skip_cleanup: true - on: - tags: true - all_branches: true - condition: '"$TARGET_DEPLOY" = True' - repo: LMMS/lmms diff --git a/.travis/after_script.sh b/.travis/after_script.sh deleted file mode 100755 index 6d098b636..000000000 --- a/.travis/after_script.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -set -e - -if [ "$TYPE" != 'style' ]; then - ccache -s -fi diff --git a/.travis/ccache.sha256 b/.travis/ccache.sha256 deleted file mode 100644 index e63145466..000000000 --- a/.travis/ccache.sha256 +++ /dev/null @@ -1 +0,0 @@ -0de866bc0ee26de392e037104b174474989a830e2249280a136144baa44557aa ccache_3.2.4-1_amd64.deb diff --git a/.travis/debian_pkgs.sha256 b/.travis/debian_pkgs.sha256 deleted file mode 100644 index ed4e11737..000000000 --- a/.travis/debian_pkgs.sha256 +++ /dev/null @@ -1,3 +0,0 @@ -314ef4af137903dfb13e8c3ef1e6ea56cfdb23808d52ec4f5f50e288c73610c5 pbuilder_0.229.1_all.deb -fa82aa8ed3055c6f6330104deedf080b26778295e589426d4c4dd0f2c2a5defa debootstrap_1.0.95_all.deb -2ef4c09f7841b72f93412803ddd142f72658536dbfabe00e449eb548f432f3f8 debian-archive-keyring_2017.7ubuntu1_all.deb diff --git a/.travis/install.sh b/.travis/install.sh deleted file mode 100755 index a807d032c..000000000 --- a/.travis/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -set -e - -if [ "$TYPE" = 'style' ]; then - sudo apt-get -yqq update - sudo apt-get install shellcheck -else - "$TRAVIS_BUILD_DIR/.travis/$TRAVIS_OS_NAME.$TARGET_OS.before_install.sh" - "$TRAVIS_BUILD_DIR/.travis/$TRAVIS_OS_NAME.$TARGET_OS.install.sh" -fi diff --git a/.travis/linux..before_install.sh b/.travis/linux..before_install.sh deleted file mode 100755 index c2e578b54..000000000 --- a/.travis/linux..before_install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -set -e - -sudo add-apt-repository ppa:beineri/opt-qt592-trusty -y -sudo add-apt-repository ppa:andrewrk/libgroove -y -sudo sed -e "s/trusty/precise/" -i \ - /etc/apt/sources.list.d/andrewrk-libgroove-trusty.list - -sudo dpkg --add-architecture i386 -sudo apt-get update -qq || true diff --git a/.travis/linux..install.sh b/.travis/linux..install.sh deleted file mode 100755 index 2f1262d07..000000000 --- a/.travis/linux..install.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env bash - -set -e - -PACKAGES="cmake libsndfile-dev fftw3-dev libvorbis-dev libogg-dev libmp3lame-dev - libasound2-dev libjack-jackd2-dev libsdl-dev libsamplerate0-dev libstk0-dev stk - libfluidsynth-dev portaudio19-dev g++-multilib libfltk1.3-dev - libgig-dev libsoundio-dev qt59base qt59translations qt59tools" - -# swh build dependencies -SWH_PACKAGES="perl libxml2-utils libxml-perl liblist-moreutils-perl" - -# VST dependencies -VST_PACKAGES="wine-dev qt59x11extras qtbase5-private-dev libxcb-util0-dev libxcb-keysyms1-dev" - -# Help with unmet dependencies -PACKAGES="$PACKAGES $SWH_PACKAGES $VST_PACKAGES libjack-jackd2-0" - -# shellcheck disable=SC2086 -sudo apt-get install -y $PACKAGES - -# kxstudio repo offers Carla; avoid package conflicts (wine, etc) by running last -sudo add-apt-repository -y ppa:kxstudio-debian/libs -sudo add-apt-repository -y ppa:kxstudio-debian/apps -sudo apt-get update -sudo apt-get install -y carla diff --git a/.travis/linux..script.sh b/.travis/linux..script.sh deleted file mode 100755 index e75b827ac..000000000 --- a/.travis/linux..script.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash -unset QTDIR QT_PLUGIN_PATH LD_LIBRARY_PATH -# shellcheck disable=SC1091 -source /opt/qt59/bin/qt59-env.sh - -set -e - -mkdir build -cd build - -# shellcheck disable=SC2086 -cmake -DUSE_WERROR=ON -DCMAKE_INSTALL_PREFIX=../target $CMAKE_FLAGS .. -make -j4 -make tests -./tests/tests diff --git a/.travis/linux.debian-sid.before_install.sh b/.travis/linux.debian-sid.before_install.sh deleted file mode 100755 index 89ee51523..000000000 --- a/.travis/linux.debian-sid.before_install.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -sudo apt-get update -qq diff --git a/.travis/linux.debian-sid.install.sh b/.travis/linux.debian-sid.install.sh deleted file mode 100755 index ef8368822..000000000 --- a/.travis/linux.debian-sid.install.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -set -e - -sudo apt-get install -y \ - dpkg \ - pbuilder - -# work around a pbuilder bug which breaks ccache -# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=666525 -# and also missing signing keys in Trusty's debian-archive-keyring -cd /tmp -wget http://archive.ubuntu.com/ubuntu/pool/main/p/pbuilder/pbuilder_0.229.1_all.deb -wget http://archive.ubuntu.com/ubuntu/pool/main/d/debootstrap/debootstrap_1.0.95_all.deb -wget http://archive.ubuntu.com/ubuntu/pool/universe/d/debian-archive-keyring/debian-archive-keyring_2017.7ubuntu1_all.deb -sha256sum -c "$TRAVIS_BUILD_DIR/.travis/debian_pkgs.sha256" -sudo dpkg -i pbuilder_0.229.1_all.deb debootstrap_1.0.95_all.deb debian-archive-keyring_2017.7ubuntu1_all.deb -cd "$OLDPWD" diff --git a/.travis/linux.debian-sid.script.sh b/.travis/linux.debian-sid.script.sh deleted file mode 100755 index 9b8db416c..000000000 --- a/.travis/linux.debian-sid.script.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/bash -set -e - -: "${TARGET_ARCH:=amd64}" - -BASETGZ="$HOME/pbuilder-bases/debian-sid-$TARGET_ARCH.tgz" -MIRROR=http://cdn-fastly.deb.debian.org/debian -KEYRING=/usr/share/keyrings/debian-archive-keyring.gpg - -if [ -z "$TRAVIS_TAG" ] -then - sudo \ - sh -c "echo CCACHEDIR=$HOME/.ccache >> /etc/pbuilderrc" -fi - -if [ "$CC" = clang ] -then - sudo sh -c "echo EXTRAPACKAGES=clang >> /etc/pbuilderrc" -fi - -if [ ! -e "$BASETGZ.stamp" ] -then - mkdir -p "$HOME/pbuilder-bases" - sudo pbuilder --create --basetgz "$BASETGZ" --mirror $MIRROR \ - --distribution sid --architecture $TARGET_ARCH \ - --debootstrapopts --variant=buildd \ - --debootstrapopts --keyring=$KEYRING \ - --debootstrapopts --include=perl - touch "$BASETGZ.stamp" -else - sudo pbuilder --update --basetgz "$BASETGZ" -fi - -sync_version() { - local VERSION - local MMR - local STAGE - local EXTRA - - VERSION=$(git describe --tags --match v[0-9].[0-9].[0-9]*) - VERSION=${VERSION#v} - MMR=${VERSION%%-*} - case $VERSION in - *-*-*-*) - VERSION=${VERSION%-*} - STAGE=${VERSION#*-} - STAGE=${STAGE%-*} - EXTRA=${VERSION##*-} - VERSION=$MMR~$STAGE.$EXTRA - ;; - *-*-*) - VERSION=${VERSION%-*} - EXTRA=${VERSION##*-} - VERSION=$MMR.$EXTRA - ;; - *-*) - STAGE=${VERSION#*-} - VERSION=$MMR~$STAGE - ;; - esac - - sed "1 s/@VERSION@/$VERSION/" -i debian/changelog - echo "Set Debian version to $VERSION" -} - -sync_version - -DIR="$PWD" -cd .. -dpkg-source -b "$DIR" -env -i CC="$CC" CXX="$CXX" sudo pbuilder --build --debbuildopts "--jobs=auto" \ - --basetgz "$BASETGZ" ./*.dsc diff --git a/.travis/linux.win.download.sh b/.travis/linux.win.download.sh deleted file mode 100755 index 2f914f94e..000000000 --- a/.travis/linux.win.download.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash - -set -e - -CACHE_DIR=$HOME/apt_mingw_cache/$1 -mkdir -p "$CACHE_DIR" - -pushd "$CACHE_DIR" - -# shellcheck disable=SC2086 -apt-get --print-uris --yes install $MINGW_PACKAGES | grep ^\' | cut -d\' -f2 > downloads.list -wget -N --input-file downloads.list - -sudo cp ./*.deb /var/cache/apt/archives/ - -popd diff --git a/.travis/linux.win32.before_install.sh b/.travis/linux.win32.before_install.sh deleted file mode 100755 index e0cfcbafb..000000000 --- a/.travis/linux.win32.before_install.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -set -e - -sudo add-apt-repository ppa:tobydox/mingw-x-trusty -y -sudo apt-get update -qq diff --git a/.travis/linux.win32.install.sh b/.travis/linux.win32.install.sh deleted file mode 100755 index 6e73e7abe..000000000 --- a/.travis/linux.win32.install.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash - -set -e - -MINGW_PACKAGES="mingw32-x-sdl mingw32-x-libvorbis mingw32-x-fluidsynth mingw32-x-stk - mingw32-x-glib2 mingw32-x-portaudio mingw32-x-libsndfile mingw32-x-fftw - mingw32-x-flac mingw32-x-fltk mingw32-x-libsamplerate - mingw32-x-pkgconfig mingw32-x-binutils mingw32-x-gcc mingw32-x-runtime - mingw32-x-libgig mingw32-x-libsoundio mingw32-x-lame mingw32-x-qt5base" - -# swh build dependencies -SWH_PACKAGES="perl libxml2-utils libxml-perl liblist-moreutils-perl" - -export MINGW_PACKAGES - -"$TRAVIS_BUILD_DIR/.travis/linux.win.download.sh" win32 - -PACKAGES="nsis cloog-isl libmpc3 qt4-linguist-tools mingw32 $MINGW_PACKAGES $SWH_PACKAGES" - -# shellcheck disable=SC2086 -sudo apt-get install -y $PACKAGES - -# ccache 3.2 is needed because mingw32-x-gcc is version 4.9, which causes cmake -# to use @file command line passing, which in turn ccache 3.1.9 doesn't support -pushd /tmp -wget http://archive.ubuntu.com/ubuntu/pool/main/c/ccache/ccache_3.2.4-1_amd64.deb -sha256sum -c "$TRAVIS_BUILD_DIR/.travis/ccache.sha256" -sudo dpkg -i ccache_3.2.4-1_amd64.deb -popd diff --git a/.travis/linux.win32.script.sh b/.travis/linux.win32.script.sh deleted file mode 100755 index 6e930fd9b..000000000 --- a/.travis/linux.win32.script.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash -set -e - -mkdir build -cd build - -export CMAKE_OPTS="$CMAKE_FLAGS -DUSE_WERROR=ON" -../cmake/build_win32.sh - -make -j4 -make tests diff --git a/.travis/linux.win64.before_install.sh b/.travis/linux.win64.before_install.sh deleted file mode 100755 index 083039391..000000000 --- a/.travis/linux.win64.before_install.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -set -e - -"$TRAVIS_BUILD_DIR/.travis/linux.win32.before_install.sh" diff --git a/.travis/linux.win64.install.sh b/.travis/linux.win64.install.sh deleted file mode 100755 index 99ef7187f..000000000 --- a/.travis/linux.win64.install.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -set -e - -# First, install 32-bit deps -"$TRAVIS_BUILD_DIR/.travis/linux.win32.install.sh" - -MINGW_PACKAGES="mingw64-x-sdl mingw64-x-libvorbis mingw64-x-fluidsynth mingw64-x-stk - mingw64-x-glib2 mingw64-x-portaudio mingw64-x-libsndfile - mingw64-x-fftw mingw64-x-flac mingw64-x-fltk mingw64-x-libsamplerate - mingw64-x-pkgconfig mingw64-x-binutils mingw64-x-gcc mingw64-x-runtime - mingw64-x-libgig mingw64-x-libsoundio mingw64-x-lame mingw64-x-qt5base" - -export MINGW_PACKAGES - -"$TRAVIS_BUILD_DIR/.travis/linux.win.download.sh" win64 - -# shellcheck disable=SC2086 -sudo apt-get install -y $MINGW_PACKAGES diff --git a/.travis/linux.win64.script.sh b/.travis/linux.win64.script.sh deleted file mode 100755 index d81fa9b58..000000000 --- a/.travis/linux.win64.script.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash -set -e - -mkdir build -cd build - -export CMAKE_OPTS="$CMAKE_FLAGS -DUSE_WERROR=ON" -../cmake/build_win64.sh - -make -j4 -make tests diff --git a/.travis/osx..before_install.sh b/.travis/osx..before_install.sh deleted file mode 100755 index b59920a5e..000000000 --- a/.travis/osx..before_install.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -set -e - -brew update diff --git a/.travis/osx..install.sh b/.travis/osx..install.sh deleted file mode 100755 index e3dd670bf..000000000 --- a/.travis/osx..install.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash - -set -e - -PACKAGES="cmake pkg-config libogg libvorbis lame libsndfile libsamplerate jack sdl libgig libsoundio stk fluid-synth portaudio node fltk qt5 carla" - -if "${TRAVIS}"; then - PACKAGES="$PACKAGES ccache" -fi - -# removing already installed packages from the list -for p in $(brew list); do - PACKAGES=${PACKAGES//$p/} -done; - -# shellcheck disable=SC2086 -brew install $PACKAGES - -# fftw tries to install gcc which conflicts with travis -brew install fftw --ignore-dependencies - -npm install -g appdmg diff --git a/.travis/osx..script.sh b/.travis/osx..script.sh deleted file mode 100755 index 373e273f4..000000000 --- a/.travis/osx..script.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env bash -set -e - -mkdir build -cd build - -# Workaround; No FindQt5.cmake module exists -CMAKE_PREFIX_PATH="$(brew --prefix qt5)" -export CMAKE_PREFIX_PATH - -# shellcheck disable=SC2086 -cmake -DUSE_WERROR=OFF -DCMAKE_INSTALL_PREFIX=../target $CMAKE_FLAGS .. - -make -j4 -make tests -./tests/tests diff --git a/.travis/script.sh b/.travis/script.sh deleted file mode 100755 index 70391a762..000000000 --- a/.travis/script.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env bash - -set -e - -if [ "$TYPE" = 'style' ]; then - - # SC2185 is disabled because of: https://github.com/koalaman/shellcheck/issues/942 - # once it's fixed, it should be enabled again - # shellcheck disable=SC2185 - # shellcheck disable=SC2046 - shellcheck $(find -O3 . -maxdepth 3 -type f -name '*.sh' -o -name "*.sh.in") - shellcheck doc/bash-completion/lmms - -else - - export CMAKE_FLAGS="-DCMAKE_BUILD_TYPE=RelWithDebInfo" - - if [ -z "$TRAVIS_TAG" ]; then - export CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_CCACHE=ON" - fi - - "$TRAVIS_BUILD_DIR/.travis/$TRAVIS_OS_NAME.$TARGET_OS.script.sh" - - # Package and upload non-tagged builds - if [ ! -z "$TRAVIS_TAG" ]; then - # Skip, handled by travis deploy instead - exit 0 - elif [[ $TARGET_OS == win* ]]; then - cd build - make -j4 package - PACKAGE="$(ls lmms-*win*.exe)" - elif [[ $TRAVIS_OS_NAME == osx ]]; then - cd build - make -j4 install > /dev/null - make dmg - PACKAGE="$(ls lmms-*.dmg)" - elif [[ $TARGET_OS != debian-sid ]]; then - cd build - make -j4 install > /dev/null - make appimage - PACKAGE="$(ls lmms-*.AppImage)" - fi - - echo "Uploading $PACKAGE to transfer.sh..." - curl --upload-file "$PACKAGE" "https://transfer.sh/$PACKAGE" || true -fi diff --git a/CMakeLists.txt b/CMakeLists.txt index bd9d376e2..ad419e2cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,10 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.3) +CMAKE_MINIMUM_REQUIRED(VERSION 3.8) PROJECT(lmms) SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ${CMAKE_MODULE_PATH}) +SET(LMMS_BINARY_DIR ${CMAKE_BINARY_DIR}) +SET(LMMS_SOURCE_DIR ${CMAKE_SOURCE_DIR}) IF(COMMAND CMAKE_POLICY) CMAKE_POLICY(SET CMP0005 NEW) @@ -13,8 +15,22 @@ IF(COMMAND CMAKE_POLICY) CMAKE_POLICY(SET CMP0050 OLD) ENDIF() CMAKE_POLICY(SET CMP0020 NEW) + CMAKE_POLICY(SET CMP0057 NEW) ENDIF(COMMAND CMAKE_POLICY) + +# Import of windows.h breaks min()/max() +ADD_DEFINITIONS(-DNOMINMAX) + +# CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES is not set correctly for MinGW until +# CMake 3.14.1, so avoid specifying system include directories on affected +# versions. Normal include directories are safe, since GCC ignores them if they +# are already in the built-in search path. +if(MINGW AND CMAKE_VERSION VERSION_LESS "3.14.1") + set(CMAKE_NO_SYSTEM_FROM_IMPORTED TRUE) +endif() + +INCLUDE(PluginList) INCLUDE(CheckSubmodules) INCLUDE(AddFileDependencies) INCLUDE(CheckIncludeFiles) @@ -23,7 +39,7 @@ INCLUDE(GenerateExportHeader) STRING(TOUPPER "${CMAKE_PROJECT_NAME}" PROJECT_NAME_UCASE) -SET(PROJECT_YEAR 2019) +SET(PROJECT_YEAR 2020) SET(PROJECT_AUTHOR "LMMS Developers") SET(PROJECT_URL "https://lmms.io") @@ -31,16 +47,16 @@ SET(PROJECT_EMAIL "lmms-devel@lists.sourceforge.net") SET(PROJECT_DESCRIPTION "${PROJECT_NAME_UCASE} - Free music production software") SET(PROJECT_COPYRIGHT "2008-${PROJECT_YEAR} ${PROJECT_AUTHOR}") SET(VERSION_MAJOR "1") -SET(VERSION_MINOR "2") +SET(VERSION_MINOR "3") SET(VERSION_RELEASE "0") -SET(VERSION_STAGE "") -SET(VERSION_BUILD "0") +SET(VERSION_STAGE "alpha") +SET(VERSION_BUILD "") SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}") IF(VERSION_STAGE) SET(VERSION "${VERSION}-${VERSION_STAGE}") ENDIF() IF(VERSION_BUILD) - SET(VERSION "${VERSION}.${VERSION_BUILD}") + SET(VERSION "${VERSION}-${VERSION_BUILD}") ENDIF() # Override version information for non-base builds @@ -54,6 +70,8 @@ OPTION(WANT_CARLA "Include Carla plugin" ON) OPTION(WANT_CMT "Include Computer Music Toolkit LADSPA plugins" ON) OPTION(WANT_JACK "Include JACK (Jack Audio Connection Kit) support" ON) OPTION(WANT_WEAKJACK "Loosely link JACK libraries" ON) +OPTION(WANT_LV2 "Include Lv2 plugins" ON) +OPTION(WANT_SUIL "Include SUIL for LV2 plugin UIs" ON) OPTION(WANT_MP3LAME "Include MP3/Lame support" ON) OPTION(WANT_OGGVORBIS "Include OGG/Vorbis support" ON) OPTION(WANT_PULSEAUDIO "Include PulseAudio support" ON) @@ -71,11 +89,12 @@ OPTION(WANT_VST_32 "Include 32-bit VST support" ON) OPTION(WANT_VST_64 "Include 64-bit VST support" ON) OPTION(WANT_WINMM "Include WinMM MIDI support" OFF) OPTION(WANT_DEBUG_FPE "Debug floating point exceptions" OFF) +OPTION(BUNDLE_QT_TRANSLATIONS "Install Qt translation files for LMMS" OFF) IF(LMMS_BUILD_APPLE) # Fix linking on 10.14+. See issue #4762 on github - LINK_DIRECTORIES(/usr/local/lib) + LINK_DIRECTORIES("${APPLE_PREFIX}/lib") SET(WANT_SOUNDIO OFF) SET(WANT_ALSA OFF) SET(WANT_PULSEAUDIO OFF) @@ -90,16 +109,16 @@ ENDIF(LMMS_BUILD_APPLE) IF(LMMS_BUILD_WIN32) SET(WANT_ALSA OFF) - SET(WANT_JACK OFF) SET(WANT_PULSEAUDIO OFF) SET(WANT_SNDIO OFF) SET(WANT_SOUNDIO OFF) SET(WANT_WINMM ON) + SET(BUNDLE_QT_TRANSLATIONS ON) SET(LMMS_HAVE_WINMM TRUE) SET(STATUS_ALSA "") - SET(STATUS_JACK "") SET(STATUS_PULSEAUDIO "") SET(STATUS_SOUNDIO "") + SET(STATUS_SNDIO "") SET(STATUS_WINMM "OK") SET(STATUS_APPLEMIDI "") ELSE(LMMS_BUILD_WIN32) @@ -118,14 +137,11 @@ ENDIF() SET(CMAKE_CXX_STANDARD_REQUIRED ON) -CHECK_INCLUDE_FILES(stdint.h LMMS_HAVE_STDINT_H) -CHECK_INCLUDE_FILES(stdlib.h LMMS_HAVE_STDLIB_H) CHECK_INCLUDE_FILES(pthread.h LMMS_HAVE_PTHREAD_H) CHECK_INCLUDE_FILES(semaphore.h LMMS_HAVE_SEMAPHORE_H) CHECK_INCLUDE_FILES(unistd.h LMMS_HAVE_UNISTD_H) CHECK_INCLUDE_FILES(sys/types.h LMMS_HAVE_SYS_TYPES_H) CHECK_INCLUDE_FILES(sys/ipc.h LMMS_HAVE_SYS_IPC_H) -CHECK_INCLUDE_FILES(sys/shm.h LMMS_HAVE_SYS_SHM_H) CHECK_INCLUDE_FILES(sys/time.h LMMS_HAVE_SYS_TIME_H) CHECK_INCLUDE_FILES(sys/times.h LMMS_HAVE_SYS_TIMES_H) CHECK_INCLUDE_FILES(sched.h LMMS_HAVE_SCHED_H) @@ -138,9 +154,12 @@ CHECK_INCLUDE_FILES(string.h LMMS_HAVE_STRING_H) CHECK_INCLUDE_FILES(process.h LMMS_HAVE_PROCESS_H) CHECK_INCLUDE_FILES(locale.h LMMS_HAVE_LOCALE_H) +include(CheckLibraryExists) +check_library_exists(rt shm_open "" LMMS_HAVE_LIBRT) + LIST(APPEND CMAKE_PREFIX_PATH "${CMAKE_INSTALL_PREFIX}") -FIND_PACKAGE(Qt5 COMPONENTS Core Gui Widgets Xml REQUIRED) +FIND_PACKAGE(Qt5 5.6.0 COMPONENTS Core Gui Widgets Xml REQUIRED) FIND_PACKAGE(Qt5 COMPONENTS LinguistTools QUIET) INCLUDE_DIRECTORIES( @@ -165,6 +184,17 @@ ENDIF() # Resolve Qt5::qmake to full path for use in packaging scripts GET_TARGET_PROPERTY(QT_QMAKE_EXECUTABLE "${Qt5Core_QMAKE_EXECUTABLE}" IMPORTED_LOCATION) +# Find the location of Qt translation files +execute_process(COMMAND ${QT_QMAKE_EXECUTABLE} -query QT_INSTALL_TRANSLATIONS + OUTPUT_VARIABLE QT_TRANSLATIONS_DIR + OUTPUT_STRIP_TRAILING_WHITESPACE + ERROR_QUIET +) +IF(EXISTS "${QT_TRANSLATIONS_DIR}") + MESSAGE("-- Found Qt translations in ${QT_TRANSLATIONS_DIR}") + ADD_DEFINITIONS("-DQT_TRANSLATIONS_DIR=\"${QT_TRANSLATIONS_DIR}\"") +ENDIF() + FIND_PACKAGE(Qt5Test) SET(QT_QTTEST_LIBRARY Qt5::Test) @@ -173,10 +203,53 @@ FIND_PACKAGE(SndFile REQUIRED) IF(NOT SNDFILE_FOUND) MESSAGE(FATAL_ERROR "LMMS requires libsndfile1 and libsndfile1-dev >= 1.0.18 - please install, remove CMakeCache.txt and try again!") ENDIF() -# check if we can use SF_SET_COMPRESSION_LEVEL -IF(NOT SNDFILE_VERSION VERSION_LESS 1.0.26) - SET(LMMS_HAVE_SF_COMPLEVEL TRUE) -ENDIF() +# check if we can use SFC_SET_COMPRESSION_LEVEL +INCLUDE(CheckCXXSourceCompiles) +CHECK_CXX_SOURCE_COMPILES( + "#include + int main() {SFC_SET_COMPRESSION_LEVEL;}" + LMMS_HAVE_SF_COMPLEVEL +) + +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_SUIL) + IF(PKG_CONFIG_FOUND) + PKG_CHECK_MODULES(SUIL suil-0) + IF(SUIL_FOUND) + SET(LMMS_HAVE_SUIL TRUE) + SET(STATUS_SUIL "OK") + ELSE() + SET(STATUS_SUIL "not found, install it or set PKG_CONFIG_PATH appropriately") + ENDIF() + ELSE() + SET(STATUS_SUIL "not found, requires pkg-config") + ENDIF() +ELSE(WANT_SUIL) + SET(STATUS_SUIL "not built as requested") +ENDIF(WANT_SUIL) IF(WANT_CALF) SET(LMMS_HAVE_CALF TRUE) @@ -225,23 +298,23 @@ IF(WANT_CARLA) SET(LMMS_HAVE_CARLA TRUE) SET(STATUS_CARLA "OK") ELSE(CARLA_FOUND) - SET(STATUS_CARLA "not found, please install the latest carla") + SET(LMMS_HAVE_WEAKCARLA TRUE) + SET(STATUS_CARLA "OK (weak linking enabled)") ENDIF(CARLA_FOUND) ENDIF(WANT_CARLA) # check for SDL2 IF(WANT_SDL) - SET(SDL2_BUILDING_LIBRARY TRUE) FIND_PACKAGE(SDL2) IF(SDL2_FOUND) SET(LMMS_HAVE_SDL TRUE) SET(LMMS_HAVE_SDL2 TRUE) SET(STATUS_SDL "OK, using SDL2") + SET(SDL2_LIBRARY "SDL2::SDL2") SET(SDL_INCLUDE_DIR "") SET(SDL_LIBRARY "") ELSE() - SET(SDL2_INCLUDE_DIR "") SET(SDL2_LIBRARY "") ENDIF() ENDIF() @@ -284,13 +357,13 @@ ENDIF(WANT_STK) # check for PortAudio IF(WANT_PORTAUDIO) FIND_PACKAGE(Portaudio) - IF(PORTAUDIO_FOUND) + IF(Portaudio_FOUND) SET(LMMS_HAVE_PORTAUDIO TRUE) SET(STATUS_PORTAUDIO "OK") - ELSE(PORTAUDIO_FOUND) + ELSE() SET(STATUS_PORTAUDIO "not found, please install portaudio19-dev (or similar, version >= 1.9) " "if you require PortAudio support") - ENDIF(PORTAUDIO_FOUND) + ENDIF() ENDIF(WANT_PORTAUDIO) # check for libsoundio @@ -380,23 +453,33 @@ ENDIF(NOT LMMS_HAVE_ALSA) # check for JACK IF(WANT_JACK) - PKG_CHECK_MODULES(JACK jack>=0.77) - IF(JACK_FOUND) - IF(WANT_WEAKJACK) - SET(LMMS_HAVE_WEAKJACK TRUE) - SET(WEAKJACK_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/src/3rdparty/weakjack/weakjack) - SET(STATUS_JACK "OK (weak linking enabled)") - # use dlsym instead - SET(JACK_LIBRARIES ${CMAKE_DL_LIBS}) - ELSE() - SET(STATUS_JACK "OK") - ENDIF() + IF(WANT_WEAKJACK) + SET(LMMS_HAVE_WEAKJACK TRUE) + SET(WEAKJACK_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/src/3rdparty/weakjack/weakjack) + SET(JACK_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/src/3rdparty/jack2/common) + SET(STATUS_JACK "OK (weak linking enabled)") + # use dlsym instead + SET(JACK_LIBRARIES ${CMAKE_DL_LIBS}) SET(LMMS_HAVE_JACK TRUE) - ELSE(JACK_FOUND) + SET(LMMS_HAVE_JACK_PRENAME TRUE) + SET(JACK_FOUND TRUE) + ELSE() + PKG_CHECK_MODULES(JACK jack>=0.77) + IF(JACK_FOUND) + SET(LMMS_HAVE_JACK TRUE) + SET(STATUS_JACK "OK") + SET(CMAKE_REQUIRED_LIBRARIES_BACKUP "${CMAKE_REQUIRED_LIBRARIES}") + SET(CMAKE_REQUIRED_LIBRARIES "${JACK_LIBRARIES}") + CHECK_LIBRARY_EXISTS(jack jack_port_rename "" LMMS_HAVE_JACK_PRENAME) + SET(CMAKE_REQUIRED_LIBRARIES "${CMAKE_REQUIRED_LIBRARIES_BACKUP}") + UNSET(CMAKE_REQUIRED_LIBRARIES_BACKUP) + ENDIF() + ENDIF() + + IF(NOT JACK_FOUND) SET(JACK_INCLUDE_DIRS "") - SET(STATUS_JACK "not found, please install libjack0.100.0-dev (or similar) " - "if you require JACK support") - ENDIF(JACK_FOUND) + SET(STATUS_JACK "not found") + ENDIF() ENDIF(WANT_JACK) # check for FFTW3F-library @@ -412,14 +495,14 @@ ENDIF() # check for Fluidsynth IF(WANT_SF2) - PKG_CHECK_MODULES(FLUIDSYNTH fluidsynth>=1.0.7) - IF(FLUIDSYNTH_FOUND) + find_package(FluidSynth 1.0.7) + if(FluidSynth_FOUND) SET(LMMS_HAVE_FLUIDSYNTH TRUE) SET(STATUS_FLUIDSYNTH "OK") - ELSE(FLUIDSYNTH_FOUND) + else() SET(STATUS_FLUIDSYNTH "not found, libfluidsynth-dev (or similar)" "is highly recommended") - ENDIF(FLUIDSYNTH_FOUND) + endif() ENDIF(WANT_SF2) # check for libgig @@ -434,9 +517,9 @@ If(WANT_GIG) ENDIF(WANT_GIG) # check for pthreads -IF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE OR LMMS_BUILD_OPENBSD) +IF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE OR LMMS_BUILD_OPENBSD OR LMMS_BUILD_FREEBSD OR LMMS_BUILD_HAIKU) FIND_PACKAGE(Threads) -ENDIF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE OR LMMS_BUILD_OPENBSD) +ENDIF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE OR LMMS_BUILD_OPENBSD OR LMMS_BUILD_FREEBSD OR LMMS_BUILD_HAIKU) # check for sndio (roaraudio won't work yet) IF(WANT_SNDIO) @@ -495,7 +578,7 @@ IF(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") # Due to a regression in gcc-4.8.X, we need to disable array-bounds check IF (CMAKE_COMPILER_IS_GNUCXX AND ((CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL "4.8.0") OR (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "4.8.0") OR LMMS_BUILD_WIN32)) - SET(WERROR_FLAGS "${WERROR_FLAGS} -Wno-array-bounds") + SET(WERROR_FLAGS "${WERROR_FLAGS} -Wno-array-bounds -Wno-attributes") ENDIF() ELSEIF(MSVC) # Remove any existing /W flags @@ -520,6 +603,16 @@ SET(CMAKE_CXX_FLAGS "${WERROR_FLAGS} ${CMAKE_CXX_FLAGS}") SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -DLMMS_DEBUG") SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -DLMMS_DEBUG") +if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.16") + set(NOOP_COMMAND "${CMAKE_COMMAND}" "-E" "true") +else() + set(NOOP_COMMAND "${CMAKE_COMMAND}" "-E" "echo") +endif() +if(STRIP) + set(STRIP_COMMAND "$,${NOOP_COMMAND},${STRIP}>") +else() + set(STRIP_COMMAND "${NOOP_COMMAND}") +endif() # people simply updating git will still have this and mess up build with it FILE(REMOVE include/lmmsconfig.h) @@ -565,18 +658,23 @@ ADD_SUBDIRECTORY(tests) ADD_SUBDIRECTORY(data) ADD_SUBDIRECTORY(doc) -# post-install tasks -ADD_SUBDIRECTORY(cmake/postinstall) +# install tasks +ADD_SUBDIRECTORY(cmake/install) -ADD_CUSTOM_COMMAND(OUTPUT "${CMAKE_BINARY_DIR}/lmms.1.gz" - COMMAND gzip -c ${CMAKE_SOURCE_DIR}/doc/lmms.1 > ${CMAKE_BINARY_DIR}/lmms.1.gz - DEPENDS "${CMAKE_SOURCE_DIR}/doc/lmms.1" - COMMENT "Generating lmms.1.gz" - VERBATIM) +FIND_PACKAGE(UnixCommands) +IF(GZIP) + ADD_CUSTOM_COMMAND(OUTPUT "${CMAKE_BINARY_DIR}/lmms.1.gz" + COMMAND ${GZIP} -c ${CMAKE_SOURCE_DIR}/doc/lmms.1 > ${CMAKE_BINARY_DIR}/lmms.1.gz + DEPENDS "${CMAKE_SOURCE_DIR}/doc/lmms.1" + COMMENT "Generating lmms.1.gz" + VERBATIM) -ADD_CUSTOM_TARGET(manpage ALL - DEPENDS "${CMAKE_BINARY_DIR}/lmms.1.gz") + ADD_CUSTOM_TARGET(manpage ALL + DEPENDS "${CMAKE_BINARY_DIR}/lmms.1.gz") +ELSEIF(UNIX) + MESSAGE(FATAL_ERROR "Can't find gzip required for generating lmms.1.gz") +ENDIF() # install headers @@ -588,18 +686,6 @@ IF(LMMS_BUILD_LINUX) DESTINATION "${CMAKE_INSTALL_PREFIX}/include/lmms/") ENDIF(LMMS_BUILD_LINUX) -# package ZynAddSubFX into win32 build -IF(LMMS_BUILD_WIN32) - IF(EXISTS "${CMAKE_SOURCE_DIR}/extras") - ADD_SUBDIRECTORY("${CMAKE_SOURCE_DIR}/extras/data/presets") - FILE(GLOB ZASF_BINARIES - "${CMAKE_SOURCE_DIR}/extras/plugins/zynaddsubfx/zynaddsubfx.dll" - "${CMAKE_SOURCE_DIR}/extras/plugins/zynaddsubfx/remote_zynaddsubfx.exe") - LIST(SORT ZASF_BINARIES) - INSTALL(FILES "${ZASF_BINARIES}" DESTINATION "${PLUGIN_DIR}") - ENDIF(EXISTS "${CMAKE_SOURCE_DIR}/extras") -ENDIF(LMMS_BUILD_WIN32) - # # add distclean-target # @@ -676,6 +762,8 @@ MESSAGE( MESSAGE( "Optional plugins\n" "----------------\n" +"* Lv2 plugins : ${STATUS_LV2}\n" +"* SUIL for plugin UIs : ${STATUS_SUIL}\n" "* ZynAddSubFX instrument : ${STATUS_ZYN}\n" "* Carla Patchbay & Rack : ${STATUS_CARLA}\n" "* SoundFont2 player : ${STATUS_FLUIDSYNTH}\n" @@ -706,4 +794,9 @@ MESSAGE( "\n\n") SET(CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION "${BIN_DIR}") +if(MSVC) + # We can't set this on the install time according to the configuration + SET(CMAKE_INSTALL_DEBUG_LIBRARIES TRUE) + SET(CMAKE_INSTALL_UCRT_LIBRARIES TRUE) +endif() INCLUDE(InstallRequiredSystemLibraries) diff --git a/README.md b/README.md index 1061ecff6..7090a6a15 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ -# ![LMMS Logo](http://lmms.sourceforge.net/Lmms_logo.png) LMMS +# ![LMMS Logo](https://raw.githubusercontent.com/LMMS/artwork/master/Icon%20%26%20Mimetypes/lmms-64x64.svg) LMMS -[![Build status](https://img.shields.io/travis/LMMS/lmms.svg?maxAge=3600)](https://travis-ci.org/LMMS/lmms) +[![Build status](https://circleci.com/gh/LMMS/lmms.svg?style=shield)](https://circleci.com/gh/LMMS/lmms) [![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/) +**New PRs may be affected by ongoing reorganization ([#5592](https://github.com/LMMS/lmms/issues/5592)). Please be prepared to rebase your PR as necessary.** + What is LMMS? -------------- @@ -26,9 +28,9 @@ Features --------- * Song-Editor for composing songs -* A Beat+Bassline-Editor for creating beats and basslines +* Pattern-Editor for creating beats and patterns * An easy-to-use Piano-Roll for editing patterns and melodies -* An FX mixer with unlimited FX channels and arbitrary number of effects +* A Mixer with unlimited mixer channels and arbitrary number of effects * Many powerful instrument and effect-plugins out of the box * Full user-defined track-based automation and computer-controlled automation sources * Compatible with many standards such as SoundFont2, VST(i), LADSPA, GUS Patches, and full MIDI support @@ -53,7 +55,6 @@ Information about what you can do and how can be found in the 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 post to the LMMS developers mailinglist (lmms-devel@lists.sourceforge.net) -and wait for replies! Maybe there are different ideas, improvements, hints or +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 b27dec91e..833fad581 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -9,7 +9,7 @@ IF(VERSION_STAGE) SET(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}-${VERSION_STAGE}") ENDIF() IF(VERSION_BUILD) - SET(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}.${VERSION_BUILD}") + SET(CPACK_PACKAGE_VERSION_PATCH "${CPACK_PACKAGE_VERSION_PATCH}-${VERSION_BUILD}") ENDIF() SET(CPACK_PACKAGE_INSTALL_DIRECTORY "${PROJECT_NAME_UCASE}") SET(CPACK_SOURCE_GENERATOR "TBZ2") diff --git a/cmake/apple/CMakeLists.txt b/cmake/apple/CMakeLists.txt index 835d886b9..0b66689e7 100644 --- a/cmake/apple/CMakeLists.txt +++ b/cmake/apple/CMakeLists.txt @@ -9,6 +9,11 @@ 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) diff --git a/cmake/apple/install_apple.sh.in b/cmake/apple/install_apple.sh.in index 63dc8145e..e1921b1a5 100644 --- a/cmake/apple/install_apple.sh.in +++ b/cmake/apple/install_apple.sh.in @@ -60,7 +60,7 @@ install_name_tool -change @rpath/libZynAddSubFxCore.dylib \ "$APP/Contents/$zynlib" # Replace @rpath with @loader_path for Carla -# See also plugins/carlabase/CMakeLists.txt +# See also plugins/CarlaBase/CMakeLists.txt # This MUST be done BEFORE calling macdeployqt install_name_tool -change @rpath/libcarlabase.dylib \ @loader_path/libcarlabase.dylib \ diff --git a/cmake/apple/package_apple.json.in b/cmake/apple/package_apple.json.in index 1d1147cbf..f6660b345 100644 --- a/cmake/apple/package_apple.json.in +++ b/cmake/apple/package_apple.json.in @@ -1,5 +1,5 @@ { - "title": "@MACOSX_BUNDLE_BUNDLE_NAME@ @MACOSX_BUNDLE_LONG_VERSION_STRING@", + "title": "@MACOSX_BUNDLE_DMG_TITLE@", "background": "@CMAKE_SOURCE_DIR@/cmake/apple/dmg_branding.png", "icon-size": 128, "contents": [ diff --git a/cmake/install/CMakeLists.txt b/cmake/install/CMakeLists.txt new file mode 100644 index 000000000..cd4100c9b --- /dev/null +++ b/cmake/install/CMakeLists.txt @@ -0,0 +1,42 @@ +SET(PLUGIN_FILES "") +IF(LMMS_BUILD_WIN32) + INSTALL(FILES $ DESTINATION platforms) +ENDIF() + +IF(LMMS_BUILD_WIN32 OR LMMS_INSTALL_DEPENDENCIES) + include(InstallTargetDependencies) + + # Collect directories to search for DLLs + GET_FILENAME_COMPONENT(QTBIN_DIR "${QT_QMAKE_EXECUTABLE}" PATH) + set(LIB_DIRS "${QTBIN_DIR}") + + GET_PROPERTY(PLUGINS_BUILT GLOBAL PROPERTY PLUGINS_BUILT) + + IF(LMMS_BUILD_WIN32) + SET(LMMS_DEP_DESTINATION ${BIN_DIR}) + SET(PLUGIN_DEP_DESTINATION ${BIN_DIR}) + ELSE() + SET(LMMS_DEP_DESTINATION ${LIB_DIR}) + SET(PLUGIN_DEP_DESTINATION ${LIB_DIR}) + ENDIF() + + INSTALL_TARGET_DEPENDENCIES( + NAME "main_binary" + TARGETS lmms + DESTINATION "${LMMS_DEP_DESTINATION}" + LIB_DIRS ${LIB_DIRS} + ) + + INSTALL_TARGET_DEPENDENCIES( + NAME "plugins" + TARGETS ${PLUGINS_BUILT} + DESTINATION ${PLUGIN_DEP_DESTINATION} + LIB_DIRS ${LIB_DIRS} "${PLUGIN_DIR}" "${PLUGIN_DIR}/optional" + SEARCH_PATHS "${PLUGIN_DIR}" "${PLUGIN_DIR}/optional" + ) +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)") +ENDIF() diff --git a/cmake/install/excludelist-win b/cmake/install/excludelist-win new file mode 100644 index 000000000..17793a113 --- /dev/null +++ b/cmake/install/excludelist-win @@ -0,0 +1,23 @@ +# List of DLLs considered to be system libraries. +# This is needed when cross-compiling for Windows. +ADVAPI32.dll +COMCTL32.dll +comdlg32.dll +dwmapi.dll +GDI32.dll +IMM32.dll +KERNEL32.dll +MPR.DLL +msvcrt.dll +ole32.dll +OLEAUT32.dll +OPENGL32.DLL +SHELL32.dll +USER32.dll +UxTheme.dll +VERSION.dll +WINMM.DLL +WS2_32.dll +RPCRT4.dll +dsound.dll +SETUPAPI.dll diff --git a/cmake/linux/launch_lmms.sh b/cmake/linux/launch_lmms.sh new file mode 100644 index 000000000..ba26fb9c7 --- /dev/null +++ b/cmake/linux/launch_lmms.sh @@ -0,0 +1,24 @@ +#!/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/lmms.desktop b/cmake/linux/lmms.desktop index 72a82da17..d6a05d15f 100644 --- a/cmake/linux/lmms.desktop +++ b/cmake/linux/lmms.desktop @@ -3,11 +3,11 @@ Name=LMMS GenericName=Music production suite GenericName[ca]=Programari de producció musical GenericName[de]=Software zur Musik-Produktion -GenericName[fr]=Ensemble pour la production musicale +GenericName[fr]=Suite de production musicale GenericName[pl]=Narzędzia do produkcji muzyki Comment=Music sequencer and synthesizer Comment[ca]=Producció fàcil de música per a tothom! -Comment[fr]=Production facile de musique pour tout le monde ! +Comment[fr]=Séquenceur et synthétiseur de musique Comment[pl]=Prosta produkcja muzyki dla każdego! Icon=lmms Exec=lmms %f diff --git a/cmake/linux/package_linux.sh.in b/cmake/linux/package_linux.sh.in index 0dec715f4..89e500060 100644 --- a/cmake/linux/package_linux.sh.in +++ b/cmake/linux/package_linux.sh.in @@ -6,9 +6,6 @@ # Notes: Will attempt to fetch linuxdeployqt automatically (x86_64 only) # See Also: https://github.com/probonopd/linuxdeployqt/blob/master/BUILDING.md -set -e - -LINUXDEPLOYQT="@CMAKE_BINARY_DIR@/linuxdeployqt" VERBOSITY=2 # 3=debug LOGFILE="@CMAKE_BINARY_DIR@/appimage.log" APPDIR="@CMAKE_BINARY_DIR@/@PROJECT_NAME_UCASE@.AppDir/" @@ -40,8 +37,21 @@ 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=$(arch) +ARCH=$(uname -m) export ARCH # Check for problematic install locations @@ -50,35 +60,39 @@ if [ "$INSTALL" == "/usr/local" ] || [ "$INSTALL" == "/usr" ] ; then error "Incompatible CMAKE_INSTALL_PREFIX for creating AppImage: @CMAKE_INSTALL_PREFIX@" fi -echo -e "\nWriting verbose output to \"${LOGFILE}\"" - # Ensure linuxdeployqt uses the same qmake version as cmake -PATH="$(pwd -P)/squashfs-root/usr/bin:$(dirname "@QT_QMAKE_EXECUTABLE@")":$PATH +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 -APPIMAGETOOL="squashfs-root/usr/bin/appimagetool" -echo -e "\nDownloading linuxdeployqt to ${LINUXDEPLOYQT}..." -if env -i which linuxdeployqt > /dev/null 2>&1; then - skipped "System already provides this utility" -else - filename="linuxdeployqt-continuous-$(uname -p).AppImage" +if [[ -z $LINUXDEPLOYQT || -z $APPIMAGETOOL ]]; then + filename="linuxdeployqt-continuous-$ARCH.AppImage" url="https://github.com/probonopd/linuxdeployqt/releases/download/continuous/$filename" - down_file="$(pwd)/$filename" - if [ ! -f "$LINUXDEPLOYQT" ]; then - ln -s "$down_file" "$LINUXDEPLOYQT" - fi - echo " [.......] Downloading ($(uname -p)): ${url}" - wget -N -q "$url" || (rm "$filename" && false) - chmod +x "$LINUXDEPLOYQT" - success "Downloaded $LINUXDEPLOYQT" + 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/ - "$LINUXDEPLOYQT" --appimage-extract > /dev/null 2>&1 - LINUXDEPLOYQT="squashfs-root/usr/bin/linuxdeployqt" - success "Extracted $APPIMAGETOOL" + 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 @@ -99,33 +113,8 @@ 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" -# shellcheck disable=SC1083 -cat >"${APPDIR}usr/bin/lmms" < /dev/null 2>&1; then - CARLAPATH="\$(which carla)" - CARLAPREFIX="\${CARLAPATH%/bin*}" - echo "Carla appears to be installed on this system at \$CARLAPREFIX/lib[64]/carla so we'll use it." - 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." -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." - 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." -else - echo "Jack does not appear to be installed. That's OK, we'll use a dummy version instead." - export LD_LIBRARY_PATH=\$DIR/usr/lib/lmms/optional:\$LD_LIBRARY_PATH -fi -QT_X11_NO_NATIVE_MENUBAR=1 \$DIR/usr/bin/lmms.real "\$@" -EOL + +cp "@CMAKE_CURRENT_SOURCE_DIR@/launch_lmms.sh" "${APPDIR}usr/bin/lmms" chmod +x "${APPDIR}usr/bin/lmms" @@ -133,15 +122,7 @@ chmod +x "${APPDIR}usr/bin/lmms" unset LD_LIBRARY_PATH # Ensure linuxdeployqt can find shared objects -export LD_LIBRARY_PATH="${APPDIR}usr/lib/lmms/":$LD_LIBRARY_PATH - -# Handle wine linking -if [ -d "@WINE_32_LIBRARY_DIR@" ]; then - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:@WINE_32_LIBRARY_DIRS@ -fi -if [ -d "@WINE_64_LIBRARY_DIR@" ]; then - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:@WINE_64_LIBRARY_DIRS@ -fi +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" @@ -153,8 +134,18 @@ VSTBIN32="${APPDIR}usr/bin/RemoteVstPlugin32.exe.so" VSTBIN64="${APPDIR}usr/bin/RemoteVstPlugin64.exe.so" mv "$ZYNLIB" "$ZYNBIN" -mv "$VSTLIB32" "$VSTBIN32" -mv "$VSTLIB64" "$VSTBIN64" +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" @@ -172,25 +163,27 @@ executables="${executables} -executable=${APPDIR}usr/lib/lmms/ladspa/imbeq_1197. 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..." -echo -e ">>>>> linuxdeployqt" > "$LOGFILE" -# FIXME: -unsupported-allow-new-glibc may result in an AppImage which is unusable on old systems. # shellcheck disable=SC2086 -"$LINUXDEPLOYQT" "$DESKTOPFILE" $executables -unsupported-allow-new-glibc -bundle-non-qt-libs -verbose=$VERBOSITY $STRIP >> "$LOGFILE" 2>&1 +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" -ln -sr "$VSTBIN64" "$VSTLIB64" +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 @@ -210,8 +203,7 @@ ln -sr "${APPDIR}/usr/bin/lmms" "${APPDIR}/AppRun" # Create AppImage echo -e "\nFinishing the AppImage..." -echo -e "\n\n>>>>> appimagetool" >> "$LOGFILE" -"$APPIMAGETOOL" "${APPDIR}" "@APPIMAGE_FILE@" >> "$LOGFILE" 2>&1 +run_and_log "$APPIMAGETOOL" "${APPDIR}" "@APPIMAGE_FILE@" success "Created @APPIMAGE_FILE@" echo -e "\nFinished" diff --git a/cmake/modules/BuildPlugin.cmake b/cmake/modules/BuildPlugin.cmake index efa3e5b46..f8b3d3153 100644 --- a/cmake/modules/BuildPlugin.cmake +++ b/cmake/modules/BuildPlugin.cmake @@ -62,7 +62,10 @@ MACRO(BUILD_PLUGIN PLUGIN_NAME) TARGET_LINK_LIBRARIES(${PLUGIN_NAME} lmms) ENDIF(LMMS_BUILD_WIN32) - INSTALL(TARGETS ${PLUGIN_NAME} DESTINATION "${PLUGIN_DIR}") + INSTALL(TARGETS ${PLUGIN_NAME} + LIBRARY DESTINATION "${PLUGIN_DIR}" + RUNTIME DESTINATION "${PLUGIN_DIR}" + ) IF(LMMS_BUILD_APPLE) IF ("${PLUGIN_LINK}" STREQUAL "SHARED") @@ -72,9 +75,15 @@ MACRO(BUILD_PLUGIN PLUGIN_NAME) ENDIF() ADD_DEPENDENCIES(${PLUGIN_NAME} lmms) ENDIF(LMMS_BUILD_APPLE) - IF(LMMS_BUILD_WIN32 AND STRIP) + IF(LMMS_BUILD_WIN32) + add_custom_command( + TARGET "${PLUGIN_NAME}" + POST_BUILD + COMMAND "${STRIP_COMMAND}" "$" + VERBATIM + COMMAND_EXPAND_LISTS + ) SET_TARGET_PROPERTIES(${PLUGIN_NAME} PROPERTIES PREFIX "") - ADD_CUSTOM_COMMAND(TARGET ${PLUGIN_NAME} POST_BUILD COMMAND ${STRIP} "$") ENDIF() SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES "${RCC_OUT} ${plugin_MOC_out}") @@ -89,5 +98,8 @@ MACRO(BUILD_PLUGIN PLUGIN_NAME) TARGET_INCLUDE_DIRECTORIES(${PLUGIN_NAME} PUBLIC $ ) + + SET_PROPERTY(GLOBAL APPEND PROPERTY PLUGINS_BUILT ${PLUGIN_NAME}) + GET_PROPERTY(PLUGINS_BUILT GLOBAL PROPERTY PLUGINS_BUILT) ENDMACRO(BUILD_PLUGIN) diff --git a/cmake/modules/CheckSubmodules.cmake b/cmake/modules/CheckSubmodules.cmake index 65e5be08b..f36189c38 100644 --- a/cmake/modules/CheckSubmodules.cmake +++ b/cmake/modules/CheckSubmodules.cmake @@ -7,12 +7,12 @@ # INCLUDE(CheckSubmodules) # # Options: -# SET(SKIP_SUBMODULES "foo;bar") +# SET(PLUGIN_LIST "ZynAddSubFx;...") # skips submodules for plugins not explicitely listed # # Or via command line: -# cmake -DSKIP_SUBMODULES=foo;bar +# cmake -PLUGIN_LIST=foo;bar # -# Copyright (c) 2017, Tres Finocchiaro, +# Copyright (c) 2019, Tres Finocchiaro, # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. @@ -20,13 +20,15 @@ # Files which confirm a successful clone SET(VALID_CRUMBS "CMakeLists.txt;Makefile;Makefile.in;Makefile.am;configure.ac;configure.py;autogen.sh;.gitignore;LICENSE;Home.md") +OPTION(NO_SHALLOW_CLONE "Disable shallow cloning of submodules" OFF) + # Try and use the specified shallow clone on submodules, if supported SET(DEPTH_VALUE 100) # Number of times git commands will retry before failing SET(MAX_ATTEMPTS 2) -MESSAGE("\nValidating submodules...") +MESSAGE("\nChecking submodules...") IF(NOT EXISTS "${CMAKE_SOURCE_DIR}/.gitmodules") MESSAGE("Skipping the check because .gitmodules not detected." "Please make sure you have all submodules in the source tree!" @@ -41,74 +43,106 @@ SET(LANG_BACKUP "$ENV{LANG}") SET(ENV{LC_ALL} "C") SET(ENV{LANG} "en_US") -# Assume alpha-numeric paths -STRING(REGEX MATCHALL "path = [-0-9A-Za-z/]+" SUBMODULE_LIST ${SUBMODULE_DATA}) -STRING(REGEX MATCHALL "url = [.:%-0-9A-Za-z/]+" SUBMODULE_URL_LIST ${SUBMODULE_DATA}) +# Submodule list pairs, unparsed (WARNING: Assumes alpha-numeric paths) +STRING(REGEX MATCHALL "path = [-0-9A-Za-z/]+" SUBMODULE_LIST_RAW ${SUBMODULE_DATA}) +STRING(REGEX MATCHALL "url = [.:%-0-9A-Za-z/]+" SUBMODULE_URL_RAW ${SUBMODULE_DATA}) -FOREACH(_part ${SUBMODULE_LIST}) - STRING(REPLACE "path = " "" SUBMODULE_PATH ${_part}) +# Submodule list pairs, parsed +SET(SUBMODULE_LIST "") +SET(SUBMODULE_URL "") - LIST(FIND SUBMODULE_LIST ${_part} SUBMODULE_INDEX) - LIST(GET SUBMODULE_URL_LIST ${SUBMODULE_INDEX} _url) - STRING(REPLACE "url = " "" SUBMODULE_URL ${_url}) +FOREACH(_path ${SUBMODULE_LIST_RAW}) + # Parse SUBMODULE_PATH + STRING(REPLACE "path = " "" SUBMODULE_PATH "${_path}") + + # Grab index for matching SUBMODULE_URL + LIST(FIND SUBMODULE_LIST_RAW "${_path}" SUBMODULE_INDEX) + LIST(GET SUBMODULE_URL_RAW ${SUBMODULE_INDEX} _url) + + # Parse SUBMODULE_URL + STRING(REPLACE "url = " "" SUBMODULE_URL "${_url}") - # Remove submodules from validation as specified in -DSKIP_SUBMODULES=foo;bar SET(SKIP false) + + # Loop over skipped plugins, add to SKIP_SUBMODULES (e.g. -DPLUGIN_LIST=foo;bar) + IF(${SUBMODULE_PATH} MATCHES "^plugins/") + SET(REMOVE_PLUGIN true) + FOREACH(_plugin ${PLUGIN_LIST}) + IF(_plugin STREQUAL "") + CONTINUE() + ENDIF() + IF(${SUBMODULE_PATH} MATCHES "${_plugin}") + SET(REMOVE_PLUGIN false) + ENDIF() + ENDFOREACH() + + IF(REMOVE_PLUGIN) + LIST(APPEND SKIP_SUBMODULES "${SUBMODULE_PATH}") + ENDIF() + ENDIF() + + # Finally, loop and mark "SKIP" on match IF(SKIP_SUBMODULES) FOREACH(_skip ${SKIP_SUBMODULES}) - IF(${SUBMODULE_PATH} MATCHES ${_skip}) - MESSAGE("-- Skipping ${SUBMODULE_PATH} matches \"${_skip}\"") + IF("${SUBMODULE_PATH}" MATCHES "${_skip}") + MESSAGE("-- Skipping ${SUBMODULE_PATH} matches \"${_skip}\" (absent in PLUGIN_LIST)") SET(SKIP true) + BREAK() ENDIF() ENDFOREACH() ENDIF() - IF(NOT SKIP) - LIST(INSERT SUBMODULE_LIST ${SUBMODULE_INDEX} ${SUBMODULE_PATH}) - LIST(INSERT SUBMODULE_URL_LIST ${SUBMODULE_INDEX} ${SUBMODULE_URL}) - ENDIF() - LIST(REMOVE_ITEM SUBMODULE_LIST ${_part}) - LIST(REMOVE_ITEM SUBMODULE_URL_LIST ${_url}) -ENDFOREACH() + IF(NOT SKIP) + LIST(APPEND SUBMODULE_LIST "${SUBMODULE_PATH}") + LIST(APPEND SUBMODULE_URL "${SUBMODULE_URL}") + ENDIF() +ENDFOREACH() # Once called, status is stored in GIT_RESULT respectively. # Note: Git likes to write to stderr. Don't assume stderr is error; Check GIT_RESULT instead. -MACRO(GIT_SUBMODULE SUBMODULE_PATH FORCE_DEINIT FORCE_REMOTE) +MACRO(GIT_SUBMODULE SUBMODULE_PATH FORCE_DEINIT FORCE_REMOTE NO_DEPTH) FIND_PACKAGE(Git REQUIRED) # Handle missing commits SET(FORCE_REMOTE_FLAG "${FORCE_REMOTE}") + SET(NO_DEPTH_FLAG "${NO_DEPTH}") IF(FORCE_REMOTE_FLAG) MESSAGE("-- Adding remote submodulefix to ${SUBMODULE_PATH}") EXECUTE_PROCESS( - COMMAND ${GIT_EXECUTABLE} remote rm submodulefix - COMMAND ${GIT_EXECUTABLE} remote add submodulefix ${FORCE_REMOTE} - COMMAND ${GIT_EXECUTABLE} fetch submodulefix - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/${SUBMODULE_PATH} + COMMAND "${GIT_EXECUTABLE}" remote rm submodulefix + COMMAND "${GIT_EXECUTABLE}" remote add submodulefix ${FORCE_REMOTE} + COMMAND "${GIT_EXECUTABLE}" fetch submodulefix + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/${SUBMODULE_PATH}" OUTPUT_QUIET ERROR_QUIET ) # Recurse - GIT_SUBMODULE(${SUBMODULE_PATH} false false) + GIT_SUBMODULE(${SUBMODULE_PATH} false false ${NO_DEPTH_FLAG}) ELSEIF(${FORCE_DEINIT}) MESSAGE("-- Resetting ${SUBMODULE_PATH}") EXECUTE_PROCESS( - COMMAND ${GIT_EXECUTABLE} submodule deinit -f ${CMAKE_SOURCE_DIR}/${SUBMODULE_PATH} - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + COMMAND "${GIT_EXECUTABLE}" submodule deinit -f "${CMAKE_SOURCE_DIR}/${SUBMODULE_PATH}" + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" OUTPUT_QUIET ) - # Recurse - GIT_SUBMODULE(${SUBMODULE_PATH} false false) + MESSAGE("-- Deleting ${CMAKE_SOURCE_DIR}/.git/${SUBMODULE_PATH}") + FILE(REMOVE_RECURSE "${CMAKE_SOURCE_DIR}/.git/modules/${SUBMODULE_PATH}") + # Recurse without depth + GIT_SUBMODULE(${SUBMODULE_PATH} false false true) ELSE() # Try to use the depth switch - SET(DEPTH_CMD "") + IF(NO_SHALLOW_CLONE OR GIT_VERSION_STRING VERSION_LESS "1.8.4" OR NO_DEPTH_FLAG) + # Shallow submodules were introduced in 1.8.4 MESSAGE("-- Fetching ${SUBMODULE_PATH}") - IF(DEPTH_VALUE) - SET(DEPTH_CMD "--depth" ) + SET(DEPTH_CMD "") + SET(DEPTH_VAL "") + ELSE() MESSAGE("-- Fetching ${SUBMODULE_PATH} @ --depth ${DEPTH_VALUE}") + SET(DEPTH_CMD "--depth") + SET(DEPTH_VAL "${DEPTH_VALUE}") ENDIF() EXECUTE_PROCESS( - COMMAND ${GIT_EXECUTABLE} submodule update --init --recursive ${DEPTH_CMD} ${DEPTH_VALUE} ${CMAKE_SOURCE_DIR}/${SUBMODULE_PATH} - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + COMMAND "${GIT_EXECUTABLE}" submodule update --init --recursive ${DEPTH_CMD} ${DEPTH_VAL} "${CMAKE_SOURCE_DIR}/${SUBMODULE_PATH}" + WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" RESULT_VARIABLE GIT_RESULT OUTPUT_VARIABLE GIT_STDOUT ERROR_VARIABLE GIT_STDERR @@ -124,7 +158,7 @@ SET(RETRY_PHRASES "Failed to recurse;cannot create directory;already exists;${MI # Attempt to do lazy clone FOREACH(_submodule ${SUBMODULE_LIST}) - STRING(REPLACE "/" ";" PATH_PARTS ${_submodule}) + STRING(REPLACE "/" ";" PATH_PARTS "${_submodule}") LIST(REVERSE PATH_PARTS) LIST(GET PATH_PARTS 0 SUBMODULE_NAME) @@ -138,14 +172,12 @@ FOREACH(_submodule ${SUBMODULE_LIST}) ENDIF() ENDFOREACH() IF(NOT CRUMB_FOUND) - GIT_SUBMODULE(${_submodule} false false) + GIT_SUBMODULE("${_submodule}" false false false) SET(COUNTED 0) - SET(COUNTING "") # Handle edge-cases where submodule didn't clone properly or re-uses a non-empty directory WHILE(NOT GIT_RESULT EQUAL 0 AND COUNTED LESS MAX_ATTEMPTS) - LIST(APPEND COUNTING "x") - LIST(LENGTH COUNTING COUNTED) + MATH(EXPR COUNTED "${COUNTED}+1") SET(MISSING_COMMIT false) FOREACH(_phrase ${MISSING_COMMIT_PHRASES}) IF("${GIT_MESSAGE}" MATCHES "${_phrase}") @@ -154,25 +186,16 @@ FOREACH(_submodule ${SUBMODULE_LIST}) ENDIF() ENDFOREACH() FOREACH(_phrase ${RETRY_PHRASES}) - IF(${MISSING_COMMIT}) + IF(${MISSING_COMMIT} AND COUNTED LESS 2) LIST(FIND SUBMODULE_LIST ${_submodule} SUBMODULE_INDEX) LIST(GET SUBMODULE_URL_LIST ${SUBMODULE_INDEX} SUBMODULE_URL) MESSAGE("-- Retrying ${_submodule} using 'remote add submodulefix' (attempt ${COUNTED} of ${MAX_ATTEMPTS})...") - GIT_SUBMODULE(${_submodule} false "${SUBMODULE_URL}") + GIT_SUBMODULE("${_submodule}" false "${SUBMODULE_URL}" false) BREAK() ELSEIF("${GIT_MESSAGE}" MATCHES "${_phrase}") MESSAGE("-- Retrying ${_submodule} using 'deinit' (attempt ${COUNTED} of ${MAX_ATTEMPTS})...") - - # Shallow submodules were introduced in 1.8.4 - # Shallow commits can fail to clone from non-default branches, only try once - IF(GIT_VERSION_STRING VERSION_GREATER "1.8.3" AND COUNTED LESS 2) - # Try a shallow submodule clone - ELSE() - UNSET(DEPTH_VALUE) - ENDIF() - - GIT_SUBMODULE(${_submodule} true false) + GIT_SUBMODULE("${_submodule}" true false false) BREAK() ENDIF() ENDFOREACH() diff --git a/cmake/modules/CreateTempFile.cmake b/cmake/modules/CreateTempFile.cmake new file mode 100644 index 000000000..27cc5faa7 --- /dev/null +++ b/cmake/modules/CreateTempFile.cmake @@ -0,0 +1,21 @@ +function(CreateTempFilePath) + set(options CONFIG_SUFFIX) + set(oneValueArgs OUTPUT_VAR TAG) + set(multiValueArgs CONTENT) + cmake_parse_arguments(TEMP "${options}" "${oneValueArgs}" + "${multiValueArgs}" ${ARGN} ) + + # Use hash to create a unique identifier + # for this file. + string(SHA1 hashed_content "${TEMP_CONTENT}") + + set(file_name "${CMAKE_BINARY_DIR}/${TEMP_TAG}_${hashed_content}") + set(${TEMP_OUTPUT_VAR} "${file_name}" PARENT_SCOPE) + if(TEMP_CONFIG_SUFFIX) + set(file_name "${file_name}_$") + endif() + + file(GENERATE OUTPUT "${file_name}" + CONTENT "${TEMP_CONTENT}") + +endfunction() diff --git a/cmake/modules/DefineInstallVar.cmake b/cmake/modules/DefineInstallVar.cmake new file mode 100644 index 000000000..b13cb1d52 --- /dev/null +++ b/cmake/modules/DefineInstallVar.cmake @@ -0,0 +1,31 @@ +# This functions forwards a variable to +# the install stage. +# Parameters: +# CONTENT: Variable content. +# NAME: Variable name. +# Options: +# GENERATOR_EXPRESSION: Support generator expression for CONTENT. +function(DEFINE_INSTALL_VAR) + set(options GENERATOR_EXPRESSION) + set(oneValueArgs NAME ) + set(multiValueArgs CONTENT) + cmake_parse_arguments(VAR "${options}" "${oneValueArgs}" + "${multiValueArgs}" ${ARGN} ) + + # install(CODE) does not support generator expression in ver<3.14 + if(VAR_GENERATOR_EXPRESSION AND ${CMAKE_VERSION} VERSION_LESS "3.14.0") + include(CreateTempFile) + if(CMAKE_CONFIGURATION_TYPES) # in case of multi-config generators like MSVC generators + CreateTempFilePath(OUTPUT_VAR file_path TAG "${VAR_NAME}" CONTENT "${VAR_CONTENT}" CONFIG_SUFFIX) + install(CODE "file(READ \"${file_path}_\${CMAKE_INSTALL_CONFIG_NAME}\" \"${VAR_NAME}\")") + else() + CreateTempFilePath(OUTPUT_VAR file_path TAG "${VAR_NAME}" CONTENT "${VAR_CONTENT}") + install(CODE "file(READ \"${file_path}\" \"${VAR_NAME}\")") + endif() + else() + if(VAR_GENERATOR_EXPRESSION) + cmake_policy(SET CMP0087 NEW) + endif() + install(CODE "set(\"${VAR_NAME}\" \"${VAR_CONTENT}\")") + endif() +endfunction() diff --git a/cmake/modules/DetectMachine.cmake b/cmake/modules/DetectMachine.cmake index f3458165b..388efeb82 100644 --- a/cmake/modules/DetectMachine.cmake +++ b/cmake/modules/DetectMachine.cmake @@ -4,6 +4,8 @@ ELSEIF(APPLE) SET(LMMS_BUILD_APPLE 1) ELSEIF(${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") SET(LMMS_BUILD_OPENBSD 1) +ELSEIF(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") + SET(LMMS_BUILD_FREEBSD 1) ELSEIF(HAIKU) SET(LMMS_BUILD_HAIKU 1) ELSE() @@ -18,34 +20,130 @@ ENDIF() MESSAGE("PROCESSOR: ${CMAKE_SYSTEM_PROCESSOR}") SET(LMMS_HOST_X86 FALSE) SET(LMMS_HOST_X86_64 FALSE) +SET(LMMS_HOST_ARM32 FALSE) +SET(LMMS_HOST_ARM64 FALSE) +SET(LMMS_HOST_RISCV32 FALSE) +SET(LMMS_HOST_RISCV64 FALSE) IF(NOT DEFINED WIN64 AND CMAKE_SIZEOF_VOID_P EQUAL 8) - SET(WIN64 ON) + # TODO: This seems a bit presumptous + SET(WIN64 ON) ENDIF() IF(WIN32) - IF(WIN64) - SET(IS_X86_64 TRUE) - SET(LMMS_BUILD_WIN64 TRUE) - ELSE(WIN64) - SET(IS_X86 TRUE) - ENDIF(WIN64) -ELSE(WIN32) + if(MSVC) + SET(MSVC_VER ${CMAKE_CXX_COMPILER_VERSION}) + + # Detect target architecture + IF(CMAKE_GENERATOR_PLATFORM) + STRING(TOLOWER "${CMAKE_GENERATOR_PLATFORM}" MSVC_TARGET_PLATFORM) + ELSE() + STRING(TOLOWER "${CMAKE_VS_PLATFORM_NAME_DEFAULT}" MSVC_TARGET_PLATFORM) + ENDIF() + + IF(MSVC_TARGET_PLATFORM MATCHES "x64") + SET(IS_X86_64 TRUE) + SET(LMMS_BUILD_WIN64 TRUE) + ELSEIF(MSVC_TARGET_PLATFORM MATCHES "win32") + SET(IS_X86 TRUE) + ELSEIF(MSVC_TARGET_PLATFORM MATCHES "arm64") + SET(IS_ARM64 TRUE) + ELSEIF(MSVC_TARGET_PLATFORM MATCHES "arm") + SET(IS_ARM32 TRUE) + ELSEIF(CMAKE_CXX_COMPILER MATCHES "amd64/cl.exe$" OR CMAKE_CXX_COMPILER MATCHES "x64/cl.exe$") + SET(IS_X86_64 TRUE) + SET(LMMS_BUILD_WIN64 TRUE) + ELSEIF(CMAKE_CXX_COMPILER MATCHES "bin/cl.exe$" OR CMAKE_CXX_COMPILER MATCHES "x86/cl.exe$") + SET(IS_X86 TRUE) + ELSEIF(CMAKE_CXX_COMPILER MATCHES "arm64/cl.exe$") + SET(IS_ARM64 TRUE) + ELSEIF(CMAKE_CXX_COMPILER MATCHES "arm/cl.exe$") + SET(IS_ARM32 TRUE) + ELSE() + MESSAGE(WARNING "Unknown target architecture: ${MSVC_TARGET_PLATFORM}") + ENDIF() + + IF(MSVC_VER VERSION_GREATER 19.30 OR MSVC_VER VERSION_EQUAL 19.30) + SET(LMMS_MSVC_GENERATOR "Visual Studio 17 2022") + SET(LMMS_MSVC_YEAR 2022) + ELSEIF(MSVC_VER VERSION_GREATER 19.20 OR MSVC_VER VERSION_EQUAL 19.20) + SET(LMMS_MSVC_GENERATOR "Visual Studio 16 2019") + SET(LMMS_MSVC_YEAR 2019) # Qt only provides binaries for MSVC 2017, but 2019 is binary compatible + ELSEIF(MSVC_VER VERSION_GREATER 19.10 OR MSVC_VER VERSION_EQUAL 19.10) + SET(LMMS_MSVC_GENERATOR "Visual Studio 15 2017") + SET(LMMS_MSVC_YEAR 2017) + ELSEIF(MSVC_VER VERSION_GREATER 19.0 OR MSVC_VER VERSION_EQUAL 19.0) + SET(LMMS_MSVC_GENERATOR "Visual Studio 14 2015") + SET(LMMS_MSVC_YEAR 2015) + ELSE() + MESSAGE(SEND_WARNING "Can't detect MSVC version: ${MSVC_VER}") + ENDIF() + + 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) + endif() +ELSE() + # Detect target architecture based on compiler target triple e.g. "x86_64-pc-linux" EXEC_PROGRAM( ${CMAKE_C_COMPILER} ARGS "-dumpmachine ${CMAKE_C_FLAGS}" OUTPUT_VARIABLE Machine ) MESSAGE("Machine: ${Machine}") STRING(REGEX MATCH "i.86" IS_X86 "${Machine}") STRING(REGEX MATCH "86_64|amd64" IS_X86_64 "${Machine}") -ENDIF(WIN32) + IF(Machine MATCHES "arm|aarch64") + IF(Machine MATCHES "arm64|aarch64") + SET(IS_ARM64 TRUE) + ELSE() + SET(IS_ARM32 TRUE) + ENDIF() + ELSEIF(Machine MATCHES "rv|riscv") + IF(Machine MATCHES "rv64|riscv64") + SET(IS_RISCV64 TRUE) + ELSE() + SET(IS_RISCV32 TRUE) + ENDIF() + ELSEIF(Machine MATCHES "ppc|powerpc") + IF(Machine MATCHES "ppc64|powerpc64") + SET(IS_PPC64 TRUE) + ELSE() + SET(IS_PPC32 TRUE) + ENDIF() + ENDIF() +ENDIF() IF(IS_X86) - MESSAGE("-- Target host is 32 bit") + MESSAGE("-- Target host is 32 bit, Intel") SET(LMMS_HOST_X86 TRUE) ELSEIF(IS_X86_64) - MESSAGE("-- Target host is 64 bit") + MESSAGE("-- Target host is 64 bit, Intel") SET(LMMS_HOST_X86_64 TRUE) -ELSE(IS_X86) +ELSEIF(IS_ARM32) + MESSAGE("-- Target host is 32 bit, ARM") + SET(LMMS_HOST_ARM32 TRUE) +ELSEIF(IS_ARM64) + MESSAGE("-- Target host is 64 bit, ARM") + SET(LMMS_HOST_ARM64 TRUE) +ELSEIF(IS_RISCV32) + MESSAGE("-- Target host is 32 bit, RISC-V") + SET(LMMS_HOST_RISCV32 TRUE) +ELSEIF(IS_RISCV64) + MESSAGE("-- Target host is 64 bit, RISC-V") + SET(LMMS_HOST_RISCV64 TRUE) +ELSEIF(IS_PPC32) + MESSAGE("-- Target host is 32 bit, PPC") + SET(LMMS_HOST_PPC32 TRUE) +ELSEIF(IS_PPC64) + MESSAGE("-- Target host is 64 bit, PPC") + SET(LMMS_HOST_PPC64 TRUE) +ELSE() MESSAGE("Can't identify target host. Assuming 32 bit platform.") -ENDIF(IS_X86) +ENDIF() IF(CMAKE_INSTALL_LIBDIR) SET(LIB_DIR "${CMAKE_INSTALL_LIBDIR}") diff --git a/cmake/modules/FindFluidSynth.cmake b/cmake/modules/FindFluidSynth.cmake new file mode 100644 index 000000000..fcc00cd7d --- /dev/null +++ b/cmake/modules/FindFluidSynth.cmake @@ -0,0 +1,73 @@ +# Copyright (c) 2022 Dominic Clark +# +# Redistribution and use is allowed according to the terms of the New BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +# Return if we already have FluidSynth +if(TARGET fluidsynth) + set(FluidSynth_FOUND 1) + return() +endif() + +# Attempt to find FluidSynth using PkgConfig +find_package(PkgConfig QUIET) +if(PKG_CONFIG_FOUND) + pkg_check_modules(FLUIDSYNTH_PKG fluidsynth) +endif() + +# Find the library and headers using the results from PkgConfig as a guide +find_path(FluidSynth_INCLUDE_DIR + NAMES "fluidsynth.h" + HINTS ${FLUIDSYNTH_PKG_INCLUDE_DIRS} +) + +find_library(FluidSynth_LIBRARY + NAMES "fluidsynth" + HINTS ${FLUIDSYNTH_PKG_LIBRARY_DIRS} +) + +if(FluidSynth_INCLUDE_DIR AND FluidSynth_LIBRARY) + add_library(fluidsynth UNKNOWN IMPORTED) + set_target_properties(fluidsynth PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${FluidSynth_INCLUDE_DIR}" + ) + + if(VCPKG_INSTALLED_DIR) + include(ImportedTargetHelpers) + _get_vcpkg_library_configs(FluidSynth_IMPLIB_RELEASE FluidSynth_IMPLIB_DEBUG "${FluidSynth_LIBRARY}") + else() + set(FluidSynth_IMPLIB_RELEASE "${FluidSynth_LIBRARY}") + endif() + + if(FluidSynth_IMPLIB_DEBUG) + set_target_properties(fluidsynth PROPERTIES + IMPORTED_LOCATION_RELEASE "${FluidSynth_IMPLIB_RELEASE}" + IMPORTED_LOCATION_DEBUG "${FluidSynth_IMPLIB_DEBUG}" + ) + else() + set_target_properties(fluidsynth PROPERTIES + IMPORTED_LOCATION "${FluidSynth_IMPLIB_RELEASE}" + ) + endif() + + if(EXISTS "${FluidSynth_INCLUDE_DIR}/fluidsynth/version.h") + file(STRINGS + "${FluidSynth_INCLUDE_DIR}/fluidsynth/version.h" + _version_string + REGEX "^#[\t ]*define[\t ]+FLUIDSYNTH_VERSION[\t ]+\".*\"" + ) + string(REGEX REPLACE + "^.*FLUIDSYNTH_VERSION[\t ]+\"([^\"]*)\".*$" + "\\1" + FluidSynth_VERSION_STRING + "${_version_string}" + ) + unset(_version_string) + endif() +endif() + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(FluidSynth + REQUIRED_VARS FluidSynth_LIBRARY FluidSynth_INCLUDE_DIR + VERSION_VAR FluidSynth_VERSION_STRING +) diff --git a/cmake/modules/FindLame.cmake b/cmake/modules/FindLame.cmake index e5dc93bd5..c3fb09c5b 100644 --- a/cmake/modules/FindLame.cmake +++ b/cmake/modules/FindLame.cmake @@ -1,16 +1,37 @@ # - Try to find LAME # Once done this will define # -# LAME_FOUND - system has liblame -# LAME_INCLUDE_DIRS - the liblame include directory -# LAME_LIBRARIES - The liblame libraries +# Lame_FOUND - system has liblame +# Lame_INCLUDE_DIRS - the liblame include directory +# Lame_LIBRARIES - The liblame libraries +# mp3lame::mp3lame - an imported target providing lame -find_path(LAME_INCLUDE_DIRS lame/lame.h) -find_library(LAME_LIBRARIES mp3lame) +find_package(mp3lame CONFIG QUIET) + +if(TARGET mp3lame::mp3lame) + # Extract details for find_package_handle_standard_args + get_target_property(Lame_LIBRARIES mp3lame::mp3lame LOCATION) + get_target_property(Lame_INCLUDE_DIRS mp3lame::mp3lame INTERFACE_INCLUDE_DIRECTORIES) +else() + find_path(Lame_INCLUDE_DIRS lame/lame.h) + find_library(Lame_LIBRARIES mp3lame) + + list(APPEND Lame_DEFINITIONS HAVE_LIBMP3LAME=1) + + mark_as_advanced(Lame_INCLUDE_DIRS Lame_LIBRARIES Lame_DEFINITIONS) + + if(Lame_LIBRARIES AND Lame_INCLUDE_DIRS) + add_library(mp3lame::mp3lame UNKNOWN IMPORTED) + + set_target_properties(mp3lame::mp3lame PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${Lame_INCLUDE_DIRS}" + INTERFACE_COMPILE_DEFINITIONS "${Lame_DEFINITIONS}" + IMPORTED_LOCATION "${Lame_LIBRARIES}" + ) + endif() +endif() include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(Lame DEFAULT_MSG LAME_INCLUDE_DIRS LAME_LIBRARIES) - -list(APPEND LAME_DEFINITIONS -DHAVE_LIBMP3LAME=1) - -mark_as_advanced(LAME_INCLUDE_DIRS LAME_LIBRARIES LAME_DEFINITIONS) +find_package_handle_standard_args(Lame + REQUIRED_VARS Lame_LIBRARIES Lame_INCLUDE_DIRS +) diff --git a/cmake/modules/FindPortaudio.cmake b/cmake/modules/FindPortaudio.cmake index bb6bdf48b..f9c7699f4 100644 --- a/cmake/modules/FindPortaudio.cmake +++ b/cmake/modules/FindPortaudio.cmake @@ -1,36 +1,44 @@ -# - Try to find Portaudio -# Once done this will define -# -# PORTAUDIO_FOUND - system has Portaudio -# PORTAUDIO_INCLUDE_DIRS - the Portaudio include directory -# PORTAUDIO_LIBRARIES - Link these to use Portaudio -# PORTAUDIO_DEFINITIONS - Compiler switches required for using Portaudio -# -# Copyright (c) 2006 Andreas Schneider +# Copyright (c) 2022 Dominic Clark # # Redistribution and use is allowed according to the terms of the New BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. -# +# Try config mode if possible +find_package(portaudio CONFIG QUIET) -if (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS) - # in cache already - set(PORTAUDIO_FOUND TRUE) -else (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS) - include(FindPkgConfig) - pkg_check_modules(PORTAUDIO portaudio-2.0) - if (PORTAUDIO_FOUND) - if (NOT Portaudio_FIND_QUIETLY) - message(STATUS "Found Portaudio: ${PORTAUDIO_LIBRARIES}") - endif (NOT Portaudio_FIND_QUIETLY) - else (PORTAUDIO_FOUND) - if (Portaudio_FIND_REQUIRED) - message(FATAL_ERROR "Could not find Portaudio") - endif (Portaudio_FIND_REQUIRED) - endif (PORTAUDIO_FOUND) +if(TARGET portaudio) + # Extract details for find_package_handle_standard_args + get_target_property(Portaudio_LIBRARY portaudio LOCATION) + get_target_property(Portaudio_INCLUDE_DIR portaudio INTERFACE_INCLUDE_DIRECTORIES) +else() + # Attempt to find PortAudio using PkgConfig, if we have it + find_package(PkgConfig QUIET) + if(PKG_CONFIG_FOUND) + pkg_check_modules(PORTAUDIO_PKG portaudio-2.0) + endif() - # show the PORTAUDIO_INCLUDE_DIRS and PORTAUDIO_LIBRARIES variables only in the advanced view - mark_as_advanced(PORTAUDIO_INCLUDE_DIRS PORTAUDIO_LIBRARIES) + # Find the library and headers using the results from PkgConfig as a guide + find_library(Portaudio_LIBRARY + NAMES "portaudio" + HINTS ${PORTAUDIO_PKG_LIBRARY_DIRS} + ) -endif (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS) + find_path(Portaudio_INCLUDE_DIR + NAMES "portaudio.h" + HINTS ${PORTAUDIO_PKG_INCLUDE_DIRS} + ) + # Create an imported target for PortAudio if we succeeded in finding it. + if(Portaudio_LIBRARY AND Portaudio_INCLUDE_DIR) + add_library(portaudio UNKNOWN IMPORTED) + set_target_properties(portaudio PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${Portaudio_INCLUDE_DIR}" + IMPORTED_LOCATION "${Portaudio_LIBRARY}" + ) + endif() +endif() + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Portaudio + REQUIRED_VARS Portaudio_LIBRARY Portaudio_INCLUDE_DIR +) diff --git a/cmake/modules/FindSDL2.cmake b/cmake/modules/FindSDL2.cmake index 89aea7a8a..3bad1002e 100644 --- a/cmake/modules/FindSDL2.cmake +++ b/cmake/modules/FindSDL2.cmake @@ -1,57 +1,20 @@ - # This module defines +# SDL2::SDL2, a target providing SDL2 itself # SDL2_LIBRARY, the name of the library to link against # SDL2_FOUND, if false, do not try to link to SDL2 # SDL2_INCLUDE_DIR, where to find SDL.h # -# This module responds to the the flag: -# SDL2_BUILDING_LIBRARY -# If this is defined, then no SDL2main will be linked in because -# only applications need main(). -# Otherwise, it is assumed you are building an application and this -# module will attempt to locate and set the the proper link flags -# as part of the returned SDL2_LIBRARY variable. -# -# Don't forget to include SDLmain.h and SDLmain.m your project for the -# OS X framework based version. (Other versions link to -lSDL2main which -# this module will try to find on your behalf.) Also for OS X, this -# module will automatically add the -framework Cocoa on your behalf. -# -# -# Additional Note: If you see an empty SDL2_LIBRARY_TEMP in your configuration -# and no SDL2_LIBRARY, it means CMake did not find your SDL2 library -# (SDL2.dll, libsdl2.so, SDL2.framework, etc). -# Set SDL2_LIBRARY_TEMP to point to your SDL2 library, and configure again. -# Similarly, if you see an empty SDL2MAIN_LIBRARY, you should set this value -# as appropriate. These values are used to generate the final SDL2_LIBRARY -# variable, but when these values are unset, SDL2_LIBRARY does not get created. -# -# -# $SDL2DIR is an environment variable that would -# correspond to the ./configure --prefix=$SDL2DIR -# used in building SDL2. -# l.e.galup 9-20-02 -# -# Modified by Eric Wing. -# Added code to assist with automated building by using environmental variables -# and providing a more controlled/consistent search behavior. -# Added new modifications to recognize OS X frameworks and -# additional Unix paths (FreeBSD, etc). -# Also corrected the header search path to follow "proper" SDL guidelines. -# Added a search for SDL2main which is needed by some platforms. -# Added a search for threads which is needed by some platforms. -# Added needed compile switches for MinGW. -# # On OSX, this will prefer the Framework version (if found) over others. # People will have to manually change the cache values of # SDL2_LIBRARY to override this selection or set the CMake environment # CMAKE_INCLUDE_PATH to modify the search paths. # -# Note that the header path has changed from SDL2/SDL.h to just SDL.h -# This needed to change because "proper" SDL convention -# is #include "SDL.h", not . This is done for portability -# reasons because not all systems place things in SDL2/ (see FreeBSD). - +# $SDL2DIR is an environment variable that would +# correspond to the ./configure --prefix=$SDL2DIR +# used in building SDL2. +# +# Modified by Eric Wing, l.e.galup, and Dominic Clark +# #============================================================================= # Copyright 2003-2009 Kitware, Inc. # @@ -65,109 +28,91 @@ # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) -# message("") +# Try config mode first - anything SDL2 itself provides is likely to be more +# reliable than our guesses. +find_package(SDL2 CONFIG QUIET) -SET(SDL2_SEARCH_PATHS - ~/Library/Frameworks - /Library/Frameworks - /usr/local - /usr - /sw # Fink - /opt/local # DarwinPorts - /opt/csw # Blastwave - /opt - ${SDL2_PATH} -) +if(TARGET SDL2::SDL2) + # Extract details for find_package_handle_standard_args + get_target_property(SDL2_LIBRARY SDL2::SDL2 LOCATION) + get_target_property(SDL2_INCLUDE_DIR SDL2::SDL2 INTERFACE_INCLUDE_DIRECTORIES) +else() + set(SDL2_SEARCH_PATHS + ~/Library/Frameworks + /Library/Frameworks + /usr/local + /usr + /sw # Fink + /opt/local # DarwinPorts + /opt/csw # Blastwave + /opt + ${SDL2_PATH} + ) -FIND_PATH(SDL2_INCLUDE_DIR SDL.h - HINTS - $ENV{SDL2DIR} - PATH_SUFFIXES include/SDL2 include - PATHS ${SDL2_SEARCH_PATHS} -) + find_path(SDL2_INCLUDE_DIR + NAMES SDL.h + HINTS $ENV{SDL2DIR} ${SDL2_INCLUDE_DIRS} + PATH_SUFFIXES SDL2 include/SDL2 include + PATHS ${SDL2_SEARCH_PATHS} + ) -if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(PATH_SUFFIXES lib64 lib/x64 lib) -else() - set(PATH_SUFFIXES lib/x86 lib) -endif() + if(CMAKE_SIZEOF_VOID_P EQUAL 8) + set(PATH_SUFFIXES lib64 lib/x64 lib) + else() + set(PATH_SUFFIXES lib/x86 lib) + endif() -FIND_LIBRARY(SDL2_LIBRARY_TEMP - NAMES SDL2 - HINTS - $ENV{SDL2DIR} - PATH_SUFFIXES ${PATH_SUFFIXES} - PATHS ${SDL2_SEARCH_PATHS} -) + find_library(SDL2_LIBRARY + NAMES SDL2 + HINTS $ENV{SDL2DIR} ${SDL2_LIBDIR} + PATH_SUFFIXES ${PATH_SUFFIXES} + PATHS ${SDL2_SEARCH_PATHS} + ) -IF(NOT SDL2_BUILDING_LIBRARY) - IF(NOT ${SDL2_INCLUDE_DIR} MATCHES ".framework") - # Non-OS X framework versions expect you to also dynamically link to - # SDL2main. This is mainly for Windows and OS X. Other (Unix) platforms - # seem to provide SDL2main for compatibility even though they don't - # necessarily need it. - FIND_LIBRARY(SDL2MAIN_LIBRARY - NAMES SDL2main - HINTS - $ENV{SDL2DIR} - PATH_SUFFIXES ${PATH_SUFFIXES} - PATHS ${SDL2_SEARCH_PATHS} + # SDL2 may require threads on your system. + # The Apple build may not need an explicit flag because one of the + # frameworks may already provide it. + # But for non-OSX systems, I will use the CMake Threads package. + if(NOT APPLE) + find_package(Threads) + endif() + + if(SDL2_LIBRARY AND SDL2_INCLUDE_DIR) + add_library(SDL2::SDL2 UNKNOWN IMPORTED) + set_target_properties(SDL2::SDL2 PROPERTIES + IMPORTED_LOCATION "${SDL2_LIBRARY}" + INTERFACE_INCLUDE_DIRECTORIES "${SDL2_INCLUDE_DIR}" ) - ENDIF(NOT ${SDL2_INCLUDE_DIR} MATCHES ".framework") -ENDIF(NOT SDL2_BUILDING_LIBRARY) -# SDL2 may require threads on your system. -# The Apple build may not need an explicit flag because one of the -# frameworks may already provide it. -# But for non-OSX systems, I will use the CMake Threads package. -IF(NOT APPLE) - FIND_PACKAGE(Threads) -ENDIF(NOT APPLE) + # For OS X, SDL2 uses Cocoa as a backend so it must link to Cocoa. + if(APPLE) + set_property(TARGET SDL2::SDL2 APPEND PROPERTY + INTERFACE_LINK_OPTIONS "-framework Cocoa" + ) + endif() -# MinGW needs an additional link flag, -mwindows -# It's total link flags should look like -lmingw32 -lSDL2main -lSDL2 -mwindows -IF(MINGW) - SET(MINGW32_LIBRARY mingw32 "-mwindows" CACHE STRING "mwindows for MinGW") -ENDIF(MINGW) + # For threads, as mentioned Apple doesn't need this. + # In fact, there seems to be a problem if I used the Threads package + # and try using this line, so I'm just skipping it entirely for OS X. + if(NOT APPLE AND Threads_FOUND) + set_property(TARGET SDL2::SDL2 APPEND PROPERTY + INTERFACE_LINK_LIBRARIES "Threads::Threads" + ) + endif() -IF(SDL2_LIBRARY_TEMP) - # For SDL2main - IF(NOT SDL2_BUILDING_LIBRARY) - IF(SDL2MAIN_LIBRARY) - SET(SDL2_LIBRARY_TEMP ${SDL2MAIN_LIBRARY} ${SDL2_LIBRARY_TEMP}) - ENDIF(SDL2MAIN_LIBRARY) - ENDIF(NOT SDL2_BUILDING_LIBRARY) + if(EXISTS "${SDL2_INCLUDE_DIR}/SDL_version.h") + file(READ "${SDL2_INCLUDE_DIR}/SDL_version.h" _sdl_version_h) + string(REGEX REPLACE ".*#[\t ]*define[\t ]+SDL_MAJOR_VERSION[\t ]+([0-9]+).*" "\\1" SDL2_VERSION_MAJOR "${_sdl_version_h}") + string(REGEX REPLACE ".*#[\t ]*define[\t ]+SDL_MINOR_VERSION[\t ]+([0-9]+).*" "\\1" SDL2_VERSION_MINOR "${_sdl_version_h}") + string(REGEX REPLACE ".*#[\t ]*define[\t ]+SDL_PATCHLEVEL[\t ]+([0-9]+).*" "\\1" SDL2_VERSION_PATCH "${_sdl_version_h}") + set(SDL2_VERSION "${SDL2_VERSION_MAJOR}.${SDL2_VERSION_MINOR}.${SDL2_VERSION_PATCH}") + unset(_sdl_version_h) + endif() + endif() +endif() - # For OS X, SDL2 uses Cocoa as a backend so it must link to Cocoa. - # CMake doesn't display the -framework Cocoa string in the UI even - # though it actually is there if I modify a pre-used variable. - # I think it has something to do with the CACHE STRING. - # So I use a temporary variable until the end so I can set the - # "real" variable in one-shot. - IF(APPLE) - SET(SDL2_LIBRARY_TEMP ${SDL2_LIBRARY_TEMP} "-framework Cocoa") - ENDIF(APPLE) - - # For threads, as mentioned Apple doesn't need this. - # In fact, there seems to be a problem if I used the Threads package - # and try using this line, so I'm just skipping it entirely for OS X. - IF(NOT APPLE) - SET(SDL2_LIBRARY_TEMP ${SDL2_LIBRARY_TEMP} ${CMAKE_THREAD_LIBS_INIT}) - ENDIF(NOT APPLE) - - # For MinGW library - IF(MINGW) - SET(SDL2_LIBRARY_TEMP ${MINGW32_LIBRARY} ${SDL2_LIBRARY_TEMP}) - ENDIF(MINGW) - - # Set the final string here so the GUI reflects the final state. - SET(SDL2_LIBRARY ${SDL2_LIBRARY_TEMP} CACHE STRING "Where the SDL2 Library can be found") - # Set the temp variable to INTERNAL so it is not seen in the CMake GUI - SET(SDL2_LIBRARY_TEMP "${SDL2_LIBRARY_TEMP}" CACHE INTERNAL "") -ENDIF(SDL2_LIBRARY_TEMP) - -# message("") - -INCLUDE(FindPackageHandleStandardArgs) - -FIND_PACKAGE_HANDLE_STANDARD_ARGS(SDL2 REQUIRED_VARS SDL2_LIBRARY SDL2_INCLUDE_DIR) +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(SDL2 + REQUIRED_VARS SDL2_LIBRARY SDL2_INCLUDE_DIR + VERSION_VAR SDL2_VERSION +) diff --git a/cmake/modules/FindSTK.cmake b/cmake/modules/FindSTK.cmake index 6c2f16de4..80ed0da42 100644 --- a/cmake/modules/FindSTK.cmake +++ b/cmake/modules/FindSTK.cmake @@ -1,20 +1,32 @@ -FIND_PATH(STK_INCLUDE_DIR Stk.h /usr/include/stk /usr/local/include/stk ${CMAKE_INSTALL_PREFIX}/include/stk ${CMAKE_FIND_ROOT_PATH}/include/stk) +# Try config mode first +find_package(unofficial-libstk CONFIG QUIET) -FIND_LIBRARY(STK_LIBRARY NAMES stk PATH /usr/lib /usr/local/lib ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_FIND_ROOT_PATH}/lib) +if(TARGET unofficial::libstk::libstk) + # Extract details for find_package_handle_standard_args + get_target_property(STK_LIBRARY unofficial::libstk::libstk LOCATION) + get_target_property(STK_INCLUDE_DIR unofficial::libstk::libstk INTERFACE_INCLUDE_DIRECTORIES) +else() + find_path(STK_INCLUDE_DIR + NAMES stk/Stk.h + PATH /usr/include /usr/local/include "${CMAKE_INSTALL_PREFIX}/include" "${CMAKE_FIND_ROOT_PATH}/include" + ) -IF (STK_INCLUDE_DIR AND STK_LIBRARY) - SET(STK_FOUND TRUE) -ENDIF (STK_INCLUDE_DIR AND STK_LIBRARY) + find_library(STK_LIBRARY + NAMES stk + PATH /usr/lib /usr/local/lib "${CMAKE_INSTALL_PREFIX}/lib" "${CMAKE_FIND_ROOT_PATH}/lib" + ) + if(STK_INCLUDE_DIR AND STK_LIBRARY) + # Yes, this target name is hideous, but it matches that provided by vcpkg + add_library(unofficial::libstk::libstk UNKNOWN IMPORTED) + set_target_properties(unofficial::libstk::libstk PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${STK_INCLUDE_DIR}" + IMPORTED_LOCATION "${STK_LIBRARY}" + ) + endif() +endif() -IF (STK_FOUND) - IF (NOT STK_FIND_QUIETLY) - MESSAGE(STATUS "Found STK: ${STK_LIBRARY}") - SET(HAVE_STK TRUE) - ENDIF (NOT STK_FIND_QUIETLY) -ELSE (STK_FOUND) - IF (STK_FIND_REQUIRED) - MESSAGE(FATAL_ERROR "Could not find STK") - ENDIF (STK_FIND_REQUIRED) -ENDIF (STK_FOUND) - +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(STK + REQUIRED_VARS STK_LIBRARY STK_INCLUDE_DIR +) diff --git a/cmake/modules/FindWine.cmake b/cmake/modules/FindWine.cmake index 50bf54edb..024dac1ea 100644 --- a/cmake/modules/FindWine.cmake +++ b/cmake/modules/FindWine.cmake @@ -3,7 +3,6 @@ # # WINE_FOUND - System has wine # WINE_INCLUDE_DIRS - The wine include directories -# WINE_LIBRARIES - The libraries needed to use wine # WINE_DEFINITIONS - Compiler switches required for using wine # @@ -11,11 +10,19 @@ MACRO(_findwine_find_flags output expression result) STRING(REPLACE " " ";" WINEBUILD_FLAGS "${output}") FOREACH(FLAG ${WINEBUILD_FLAGS}) IF("${FLAG}" MATCHES "${expression}") - SET(${result} "${FLAG}") + LIST(APPEND ${result} "${FLAG}") ENDIF() ENDFOREACH() ENDMACRO() +MACRO(_regex_replace_foreach EXPRESSION REPLACEMENT RESULT INPUT) + SET(${RESULT} "") + FOREACH(ITEM ${INPUT}) + STRING(REGEX REPLACE "${EXPRESSION}" "${REPLACEMENT}" ITEM "${ITEM}") + LIST(APPEND ${RESULT} "${ITEM}") + ENDFOREACH() +ENDMACRO() + LIST(APPEND CMAKE_PREFIX_PATH /opt/wine-stable /opt/wine-devel /opt/wine-staging /usr/lib/wine/) FIND_PROGRAM(WINE_CXX @@ -31,10 +38,10 @@ IF(WINE_CXX) _findwine_find_flags("${WINEBUILD_OUTPUT_32}" "^-isystem" WINEGCC_INCLUDE_DIR) _findwine_find_flags("${WINEBUILD_OUTPUT_32}" "libwinecrt0\\.a.*" WINECRT_32) _findwine_find_flags("${WINEBUILD_OUTPUT_64}" "libwinecrt0\\.a.*" WINECRT_64) - STRING(REGEX REPLACE "^-isystem" "" WINE_INCLUDE_HINT "${WINEGCC_INCLUDE_DIR}") - STRING(REGEX REPLACE "/wine/windows$" "" WINE_INCLUDE_HINT "${WINE_INCLUDE_HINT}") - STRING(REGEX REPLACE "libwinecrt0\\.a.*" "" WINE_32_LIBRARY_DIR "${WINECRT_32}") - STRING(REGEX REPLACE "libwinecrt0\\.a.*" "" WINE_64_LIBRARY_DIR "${WINECRT_64}") + _regex_replace_foreach("^-isystem" "" WINE_INCLUDE_HINT "${WINEGCC_INCLUDE_DIR}") + _regex_replace_foreach("/wine/windows$" "" WINE_INCLUDE_HINT "${WINE_INCLUDE_HINT}") + STRING(REGEX REPLACE "wine/libwinecrt0\\.a.*" "" WINE_32_LIBRARY_DIR "${WINECRT_32}") + STRING(REGEX REPLACE "wine/libwinecrt0\\.a.*" "" WINE_64_LIBRARY_DIR "${WINECRT_64}") IF(BUGGED_WINEGCC) MESSAGE(WARNING "Your winegcc is unusable due to https://bugs.winehq.org/show_bug.cgi?id=46293,\n @@ -52,16 +59,16 @@ IF(WINE_CXX) # WineHQ (/opt/wine-stable, /opt/wine-devel, /opt/wine-staging) STRING(REGEX REPLACE "/lib64/wine/$" "/lib/wine/" WINE_32_LIBRARY_DIR "${WINE_32_LIBRARY_DIR}") STRING(REGEX REPLACE "/lib/wine/$" "/lib64/wine/" WINE_64_LIBRARY_DIR "${WINE_64_LIBRARY_DIR}") - ELSEIF(WINE_32_LIBRARY_DIR MATCHES "/lib32/.*/wine/") + ELSEIF(WINE_32_LIBRARY_DIR MATCHES "/lib32/") # Systems with old multilib layout STRING(REPLACE "/lib32/" "/lib/" WINE_64_LIBRARY_DIR "${WINE_32_LIBRARY_DIR}") - ELSEIF(WINE_32_LIBRARY_DIR MATCHES "/lib64/.*/wine/") + ELSEIF(WINE_32_LIBRARY_DIR MATCHES "/lib64/") # We need to test if the corresponding 64bit library directory is lib or lib32 STRING(REPLACE "/lib64/" "/lib32/" WINE_32_LIBRARY_DIR "${WINE_64_LIBRARY_DIR}") IF(NOT EXISTS "${WINE_32_LIBRARY_DIR}") STRING(REPLACE "/lib64/" "/lib/" WINE_32_LIBRARY_DIR "${WINE_64_LIBRARY_DIR}") ENDIF() - ELSEIF(WINE_32_LIBRARY_DIR MATCHES "/lib/.*/wine/") + ELSEIF(WINE_32_LIBRARY_DIR MATCHES "/lib/") # Test if this directory is for 32bit or 64bit STRING(REPLACE "/lib/" "/lib32/" WINE_32_LIBRARY_DIR "${WINE_64_LIBRARY_DIR}") IF(NOT EXISTS "${WINE_32_LIBRARY_DIR}") @@ -76,23 +83,17 @@ IF(WINE_CXX) ENDIF() FIND_PATH(WINE_INCLUDE_DIR wine/exception.h - HINTS "${WINE_INCLUDE_HINT}" + HINTS ${WINE_INCLUDE_HINT} ) SET(_ARCHITECTURE ${CMAKE_LIBRARY_ARCHITECTURE}) -FIND_LIBRARY(WINE_LIBRARY NAMES wine - PATH_SUFFIXES wine i386-linux-gnu/wine - HINTS "${WINE_32_LIBRARY_DIR}" "${WINE_64_LIBRARY_DIR}" -) - SET(CMAKE_LIBRARY_ARCHITECTURE ${_ARCHITECTURE}) SET(WINE_INCLUDE_DIRS ${WINE_INCLUDE_DIR} ) -SET(WINE_LIBRARIES ${WINE_LIBRARY}) include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(Wine DEFAULT_MSG WINE_CXX WINE_LIBRARIES WINE_INCLUDE_DIRS) +find_package_handle_standard_args(Wine DEFAULT_MSG WINE_CXX WINE_INCLUDE_DIRS) mark_as_advanced(WINE_INCLUDE_DIR WINE_LIBRARY WINE_CXX WINE_BUILD) @@ -101,8 +102,8 @@ IF(WINE_32_LIBRARY_DIR) SET(WINE_32_FLAGS "-L${WINE_32_LIBRARY_DIR} -L${WINE_32_LIBRARY_DIR}../") SET(WINE_32_LIBRARY_DIRS "${WINE_32_LIBRARY_DIR}:${WINE_32_LIBRARY_DIR}/..") ELSE() - SET(WINE_32_FLAGS "-L${WINE_32_LIBRARY_DIR}") - SET(WINE_32_LIBRARY_DIRS "${WINE_32_LIBRARY_DIR}") + SET(WINE_32_FLAGS "-L${WINE_32_LIBRARY_DIR} -L${WINE_32_LIBRARY_DIR}wine/") + SET(WINE_32_LIBRARY_DIRS "${WINE_32_LIBRARY_DIR}:${WINE_32_LIBRARY_DIR}wine/") ENDIF() ENDIF() @@ -111,8 +112,8 @@ IF(WINE_64_LIBRARY_DIR) SET(WINE_64_FLAGS "-L${WINE_64_LIBRARY_DIR} -L${WINE_64_LIBRARY_DIR}../") SET(WINE_64_LIBRARY_DIRS "${WINE_64_LIBRARY_DIR}:${WINE_64_LIBRARY_DIR}/..") ELSE() - SET(WINE_64_FLAGS "-L${WINE_64_LIBRARY_DIR}") - SET(WINE_64_LIBRARY_DIRS "${WINE_64_LIBRARY_DIR}") + SET(WINE_64_FLAGS "-L${WINE_64_LIBRARY_DIR} -L${WINE_64_LIBRARY_DIR}wine/") + SET(WINE_64_LIBRARY_DIRS "${WINE_64_LIBRARY_DIR}:${WINE_64_LIBRARY_DIR}wine/") ENDIF() ENDIF() diff --git a/cmake/modules/GenQrc.cmake b/cmake/modules/GenQrc.cmake index 981a54d67..9614e5ef4 100644 --- a/cmake/modules/GenQrc.cmake +++ b/cmake/modules/GenQrc.cmake @@ -1,48 +1,80 @@ # GenQrc.cmake - Copyright (c) 2015 Lukas W -# Generates a simple qrc file containing the given resource files ${ARGN}: -# GEN_QRC(resources.qrc artwork.png icon.png PREFIX /icons) -# Files may also be added using a pattern with the GLOB keyword, e.g.: -# GEN_QRC(resources.qrc GLOB *.png) -FUNCTION(GEN_QRC OUT_FILE) - CMAKE_PARSE_ARGUMENTS(RC "" "PREFIX;GLOB" "" ${ARGN}) - - IF(DEFINED RC_GLOB) - FILE(GLOB GLOB_FILES ${RC_GLOB}) - ENDIF() - - # Set the standard prefix to "/" if none is given - IF(NOT DEFINED RC_PREFIX) - SET(RC_PREFIX "/") - ENDIF() - - # We need to convert our list to a string in order to pass it to the script - # on the command line. - STRING(REPLACE ";" "\;" FILES "${RC_UNPARSED_ARGUMENTS};${GLOB_FILES}") - - SET(GENQRC_SCRIPT "${CMAKE_SOURCE_DIR}/cmake/scripts/GenQrc.cmake") - ADD_CUSTOM_COMMAND( - OUTPUT ${OUT_FILE} - COMMAND ${CMAKE_COMMAND} -D OUT_FILE=${OUT_FILE} -D RC_PREFIX=${RC_PREFIX} -D FILES:list=${FILES} -D DIR=${CMAKE_CURRENT_SOURCE_DIR} -P "${GENQRC_SCRIPT}" - DEPENDS ${GENQRC_SCRIPT} - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - VERBATIM - ) -ENDFUNCTION() - -# Generates a qrc file named ${QRC_OUT} from ${ARGN}, rccs it and returns Qt's -# output file. +# Generates a simple qrc file named ${QRC_NAME} containing the given resource +# files ${ARGN}, rccs it, and returns Qt's output file. # Must only be run once per CMakeLists.txt. # Usage example: -# ADD_GEN_QRC(RCC_OUTPUT resources.qrc icon.png manual.pdf) -# ADD_EXECUTABLE(myexe main.cpp ${RCC_OUTPUT}) -MACRO(ADD_GEN_QRC RCCOUT QRC_OUT) - IF(NOT IS_ABSOLUTE ${QRC_OUT}) - SET(QRC_FILE "${CMAKE_CURRENT_BINARY_DIR}/${QRC_OUT}") - ELSE() - SET(QRC_FILE ${QRC_OUT}) - ENDIF() +# add_gen_qrc(RCC_OUTPUT resources.qrc artwork.png icon.png PREFIX /icons) +# add_executable(myexe main.cpp ${RCC_OUTPUT}) +# Files may also be added using a pattern with the GLOB keyword, e.g.: +# add_gen_qrc(RCC_OUTPUT resources.qrc GLOB *.png) +function(add_gen_qrc RCC_OUT QRC_NAME) + cmake_parse_arguments(RC "" "PREFIX;GLOB" "" ${ARGN}) - GEN_QRC(${QRC_FILE} "${ARGN}") - QT5_ADD_RESOURCES(${RCCOUT} ${QRC_FILE}) -ENDMACRO() + # Get the absolute paths for the generated files + if(IS_ABSOLUTE "${QRC_NAME}") + set(QRC_FILE "${QRC_NAME}") + else() + set(QRC_FILE "${CMAKE_CURRENT_BINARY_DIR}/${QRC_NAME}") + endif() + get_filename_component(RESOURCE_NAME "${QRC_FILE}" NAME_WE) + get_filename_component(OUTPUT_DIR "${QRC_FILE}" DIRECTORY) + set(CPP_FILE "${OUTPUT_DIR}/qrc_${RESOURCE_NAME}.cpp") + + # Set the standard prefix to "/" if none is given + if(NOT DEFINED RC_PREFIX) + set(RC_PREFIX "/") + endif() + + # Determine input files + set(FILES ${RC_UNPARSED_ARGUMENTS}) + if(DEFINED RC_GLOB) + file(GLOB GLOB_FILES "${RC_GLOB}") + list(APPEND FILES ${GLOB_FILES}) + endif() + + # Add the command to generate the QRC file + set(GENQRC_SCRIPT "${CMAKE_SOURCE_DIR}/cmake/scripts/GenQrc.cmake") + add_custom_command( + OUTPUT "${QRC_FILE}" + COMMAND "${CMAKE_COMMAND}" + -D "OUT_FILE=${QRC_FILE}" + -D "RC_PREFIX=${RC_PREFIX}" + -D "FILES:list=${FILES}" + -D "DIR=${CMAKE_CURRENT_SOURCE_DIR}" + -P "${GENQRC_SCRIPT}" + DEPENDS "${GENQRC_SCRIPT}" + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + VERBATIM + ) + + # Add the command to compile the QRC file + # Note: we can't use `qt5_add_resources` or `AUTORCC` here; we have to add + # the command ourselves instead. This is in order to handle dependencies + # correctly: the QRC file is generated at build time, so the dependencies + # of the compiled file can't be automatically determined at configure time. + # Additionally, `qt5_add_resources` adds unnecessary dependencies for + # generated QRC files, which can cause dependency cycles with some + # generators. See issue #6177. + add_custom_command( + OUTPUT "${CPP_FILE}" + COMMAND Qt5::rcc + --name "${RESOURCE_NAME}" + --output "${CPP_FILE}" + "${QRC_FILE}" + DEPENDS "${QRC_FILE}" ${FILES} + VERBATIM + ) + + # Flag the generated files to be ignored by automatic tool processing + set_source_files_properties("${QRC_FILE}" PROPERTIES + SKIP_AUTORCC ON # We added the rcc command for this manually + ) + set_source_files_properties("${CPP_FILE}" PROPERTIES + SKIP_AUTOMOC ON # The rcc output file has no need for moc or uic + SKIP_AUTOUIC ON + ) + + # Return the rcc output file + set("${RCC_OUT}" "${CPP_FILE}" PARENT_SCOPE) +endfunction() diff --git a/cmake/modules/ImportedTargetHelpers.cmake b/cmake/modules/ImportedTargetHelpers.cmake new file mode 100644 index 000000000..87b3aeedc --- /dev/null +++ b/cmake/modules/ImportedTargetHelpers.cmake @@ -0,0 +1,57 @@ +# Given a library in vcpkg, find appropriate debug and release versions. If only +# one version exists, it is used as the release version, and the debug version +# is not set. +function(_get_vcpkg_library_configs _release_out _debug_out _library) + # We want to do all operations within the vcpkg directory + file(RELATIVE_PATH _lib_relative "${VCPKG_INSTALLED_DIR}" "${_library}") + + # Return early if we're not using vcpkg + if(IS_ABSOLUTE _lib_relative OR _lib_relative MATCHES "^\\.\\./") + set("${_release_out}" "${_library}" PARENT_SCOPE) + return() + endif() + + string(REPLACE "/" ";" _path_bits "${_lib_relative}") + + # Determine whether we were given the debug or release version + list(FIND _path_bits "debug" _debug_index) + if(_debug_index EQUAL -1) + # We have the release version, so use it + set(_release_lib "${_library}") + + # Try to find a debug version too + list(FIND _path_bits "lib" _lib_index) + if(_lib_index GREATER_EQUAL 0) + list(INSERT _path_bits "${_lib_index}" "debug") + list(INSERT _path_bits 0 "${VCPKG_INSTALLED_DIR}") + string(REPLACE ";" "/" _debug_lib "${_path_bits}") + + if(NOT EXISTS "${_debug_lib}") + # Debug version does not exist - only use given version + unset(_debug_lib) + endif() + endif() + else() + # We have the debug version, so try to find a release version too + list(REMOVE_AT _path_bits "${_debug_index}") + list(INSERT _path_bits 0 "${VCPKG_INSTALLED_DIR}") + string(REPLACE ";" "/" _release_lib "${_path_bits}") + + if(NOT EXISTS "${_release_lib}") + # Release version does not exist - only use given version + set(_release_lib "${_library}") + else() + # Release version exists, so use given version as debug + set(_debug_lib "${_library}") + endif() + endif() + + # Set output variables appropriately + if(_debug_lib) + set("${_release_out}" "${_release_lib}" PARENT_SCOPE) + set("${_debug_out}" "${_debug_lib}" PARENT_SCOPE) + else() + set("${_release_out}" "${_release_lib}" PARENT_SCOPE) + unset("${_debug_out}" PARENT_SCOPE) + endif() +endfunction() diff --git a/cmake/modules/InstallDependencies.cmake b/cmake/modules/InstallDependencies.cmake new file mode 100644 index 000000000..791041bb2 --- /dev/null +++ b/cmake/modules/InstallDependencies.cmake @@ -0,0 +1,184 @@ +include(GetPrerequisites) +include(CMakeParseArguments) + +CMAKE_POLICY(SET CMP0011 NEW) +CMAKE_POLICY(SET CMP0057 NEW) + +function(make_absolute var) + get_filename_component(abs "${${var}}" ABSOLUTE BASE_DIR "${CMAKE_INSTALL_PREFIX}") + set(${var} ${abs} PARENT_SCOPE) +endfunction() + +# Reads lines of a file into a list, skipping '#' comment lines +function(READ_LIST_FILE FILE VAR) + file(STRINGS "${FILE}" list) + + set(result "") + foreach(item ${list}) + string(STRIP "${item}" item) + if(item STREQUAL "" OR item MATCHES "^\#") + continue() + endif() + list(APPEND result "${item}") + endforeach() + + set(${VAR} ${result} PARENT_SCOPE) +endfunction() + +function(make_all_absolute list_var) + set(result "") + foreach(file ${${list_var}}) + make_absolute(file) + list(APPEND result ${file}) + endforeach() + set(${list_var} ${result} PARENT_SCOPE) +endfunction() + +if(CMAKE_BINARY_DIR) + set(tmp_lib_dir "${CMAKE_BINARY_DIR}/bundled-libraries") +elseif(CMAKE_HOST_UNIX) + set(tmp_lib_dir "/tmp/bundled-libraries") +elseif(DEFINED ENV{TEMP}) + set(tmp_lib_dir "$ENV{TMP}/bundled-libraries") +else() + message(FATAL_ERROR "Can't find a temp dir for libraries") +endif() + +# Like file(INSTALL), but resolves symlinks +function(install_file_resolved file destination) + + get_filename_component(file_name "${file}" NAME) + if(IS_SYMLINK "${file}") + get_filename_component(real_path "${file}" REALPATH) + get_filename_component(real_name "${real_path}" NAME) + file(COPY "${real_path}" DESTINATION "${tmp_lib_dir}") + file(RENAME "${tmp_lib_dir}/${real_name}" "${tmp_lib_dir}/${file_name}") + set(file_path "${tmp_lib_dir}/${file_name}") + else() + set(file_path "${file}") + endif() + + file(INSTALL "${file_path}" DESTINATION "${destination}") +endfunction() + +function(install_resolved) + cmake_parse_arguments("" "" "DESTINATION" "FILES" ${ARGN}) + foreach(file ${_FILES}) + install_file_resolved("${file}" "${_DESTINATION}") + endforeach() +endfunction() + +if(CMAKE_CROSSCOMPILING) + # If we're cross-compiling, GetPrerequisites may not be able to find system libraries such as kernel32.dll because + # they're supplied by the toolchain. To suppress thousands of lines of warnings being printed to the console, we + # override gp_resolved_file_type to return "system" for any library in ${IGNORE_LIBS} without trying to resolve the + # file first. + # GetPrerequisites supports using an override function called gp_resolved_file_type_override, but it's not suited + # for our purpose because it's only called by gp_resolved_file_type *after* trying to resolve the file. + function(gp_resolved_file_type original_file file exepath dirs type_var) + set(file_find "${file}") + if(_IGNORE_CASE) + # On case-insensitive systems, convert to upper characters to respect it + string(TOUPPER "${file_find}" file_find) + endif() + SET(IGNORE_LIBS ${_IGNORE_LIBS} CACHE INTERNAL "Ignored library names" FORCE) + if(IGNORE_LIBS AND ${file_find} IN_LIST IGNORE_LIBS) + set(${type_var} system PARENT_SCOPE) + else() + #_gp_resolved_file_type(${ARGV}) + _gp_resolved_file_type("${original_file}" "${file}" "${exepath}" "${dirs}" "${type_var}" ${ARGN}) + endif() + endfunction() +endif() + +function(INSTALL_DEPENDENCIES) + cmake_parse_arguments("" "INCLUDE_SYSTEM;IGNORE_CASE" "GP_TOOL;DESTINATION;IGNORE_LIBS_FILE" "FILES;LIB_DIRS;SEARCH_PATHS;IGNORE_LIBS" ${ARGN}) + + # Make paths absolute + make_absolute(_DESTINATION) + make_all_absolute(_FILES) + make_all_absolute(_LIB_DIRS) + make_all_absolute(_SEARCH_PATHS) + + if(_INCLUDE_SYSTEM) + set(EXCLUDE_SYSTEM 0) + else() + set(EXCLUDE_SYSTEM 1) + endif() + + if(_IGNORE_LIBS_FILE) + READ_LIST_FILE("${_IGNORE_LIBS_FILE}" _IGNORE_LIBS) + if(_IGNORE_CASE) + # On case-insensitive systems, convert to upper characters to respect it + string(TOUPPER "${_IGNORE_LIBS}" _IGNORE_LIBS) + endif() + SET(IGNORE_LIBS ${_IGNORE_LIBS} CACHE INTERNAL "Ignored library names" FORCE) + endif() + + if(_GP_TOOL) + set(gp_tool "${_GP_TOOL}") + endif() + + set(prereqs "") + foreach(file ${_FILES}) + get_filename_component(file_name "${file}" NAME) + message("-- Finding prerequisites of ${file_name}") + find_prerequisites("${file}" _prereqs + ${EXCLUDE_SYSTEM} # exclude system files + 1 # recurse + "" + "${_LIB_DIRS}" + "${_SEARCH_PATHS}" + "${_IGNORE_LIBS}" + ) + + list(APPEND prereqs ${_prereqs}) + endforeach() + + list(REMOVE_DUPLICATES prereqs) + + foreach(prereq ${prereqs}) + get_filename_component(prereq_name "${prereq}" NAME) + + foreach(rpath ${_SEARCH_PATHS}) + if(EXISTS "${rpath}/${prereq_name}") + list(REMOVE_ITEM prereqs "${prereq}") + break() + endif() + endforeach() + endforeach() + + #file(INSTALL ${prereqs} DESTINATION ${_DESTINATION}) + install_resolved(FILES ${prereqs} DESTINATION "${_DESTINATION}") +endfunction() + +# Like get_prerequisites, but returns full paths +function(FIND_PREREQUISITES target RESULT_VAR exclude_system recurse + exepath dirs rpaths) + set(RESULTS) + + get_prerequisites("${target}" _prereqs ${exclude_system} ${recurse} + "" "${dirs}" "${rpaths}") + + foreach(prereq ${_prereqs}) + get_filename_component(prereq_name "${prereq}" NAME) + if(_IGNORE_CASE) + # Windows is case insensitive. + # Use upper characters to respect it. + string(TOUPPER "${prereq_name}" prereq_name) + endif() + if("${prereq_name}" IN_LIST IGNORE_LIBS) + continue() + endif() + + gp_resolve_item("${LIB_DLL}" "${prereq}" "" "${dirs}" RESOLVED_PREREQ "${rpaths}") + + if(RESOLVED_PREREQ AND IS_ABSOLUTE ${RESOLVED_PREREQ} AND EXISTS ${RESOLVED_PREREQ}) + list(APPEND RESULTS ${RESOLVED_PREREQ}) + else() + message(FATAL_ERROR "Can't resolve dependency ${prereq}.") + endif() + endforeach() + + set(${RESULT_VAR} ${RESULTS} PARENT_SCOPE) +endfunction() diff --git a/cmake/modules/InstallTargetDependencies.cmake b/cmake/modules/InstallTargetDependencies.cmake new file mode 100644 index 000000000..8e48c9ef7 --- /dev/null +++ b/cmake/modules/InstallTargetDependencies.cmake @@ -0,0 +1,90 @@ +include(DefineInstallVar) + +SET(DEFAULT_SEARCH_DIRECTORIES "${BIN_DIR}" "${LIB_DIR}" "${CMAKE_FIND_ROOT_PATH}" "${CMAKE_PREFIX_PATH}") +SET(DEFAULT_SEARCH_SUFFIXES "bin" "lib" "../bin") + +# Like INSTALL_DEPENDENCIES but can be called from regular cmake code +# (instead of install(CODE)), takes targets instead of files, +# takes care of configuring search paths, and other platform-specific tweaks. +# Arguments: +# TARGETS: list of cmake targets to install. +# NAME: unique string for this install. +# DESTINATION: directory path to install the binaries to. +# LIB_DIRS: list of paths for looking up dependencies. +# LIB_DIRS_SUFFIXES: list of possible suffixes for LIB_DIRS entries. +# SEARCH_PATHS: list of library search paths on runtime +# NO_DEFAULT_PATHS: supply this value to avoid adding DEFAULT_SEARCH_DIRECTORIES +# to LIB_DIRS and DEFAULT_SEARCH_SUFFIXES to LIB_DIRS_SUFFIXES. +FUNCTION(INSTALL_TARGET_DEPENDENCIES) + set(options NO_DEFAULT_PATHS) + set(oneValueArgs NAME) + set(multiValueArgs TARGETS DESTINATION LIB_DIRS_SUFFIXES LIB_DIRS SEARCH_PATHS) + cmake_parse_arguments(DEPS "${options}" "${oneValueArgs}" + "${multiValueArgs}" ${ARGN} ) + + if(NOT DEPS_LIB_DIRS) + set(DEPS_LIB_DIRS "") + endif() + + # Set default values. + if(NOT DEPS_NO_DEFAULT_PATHS) + list(APPEND DEPS_LIB_DIRS ${DEFAULT_SEARCH_DIRECTORIES}) + set(DEPS_LIB_DIRS_SUFFIXES "${DEPS_LIB_DIRS_SUFFIXES}" ${DEFAULT_SEARCH_SUFFIXES}) + endif() + + FOREACH(TARGET ${DEPS_TARGETS}) + IF(NOT TARGET ${TARGET}) + message(FATAL_ERROR "Not a target: ${TARGET}") + ENDIF() + + # Collect target output files. + LIST(APPEND DEPLOY_TARGETS "$") + + # Collect target link directories + get_target_property(target_libs ${TARGET} LINK_LIBRARIES) + + foreach(lib ${target_libs}) + if(TARGET ${lib} OR NOT IS_ABSOLUTE ${lib}) + continue() + endif() + + get_filename_component(lib_dir ${lib} PATH) + list(APPEND DEPS_LIB_DIRS ${lib_dir}) + endforeach() + ENDFOREACH() + + LIST(APPEND DEPS_LIB_DIRS ${CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES}) + + FOREACH(LIB_PATH ${DEPS_LIB_DIRS}) + FOREACH(suffix ${DEPS_LIB_DIRS_SUFFIXES}) + list(APPEND DEPS_LIB_DIRS "${LIB_PATH}/${suffix}") + ENDFOREACH() + ENDFOREACH() + + DEFINE_INSTALL_VAR(NAME "DEPLOY_FILES" CONTENT "${DEPLOY_TARGETS}" GENERATOR_EXPRESSION) + + LIST(REMOVE_DUPLICATES DEPS_LIB_DIRS) + + IF(LMMS_BUILD_LINUX) + FILE(DOWNLOAD "https://raw.githubusercontent.com/AppImage/AppImages/master/excludelist" + "${CMAKE_BINARY_DIR}/excludelist") + SET(additional_args INCLUDE_SYSTEM IGNORE_LIBS_FILE ${CMAKE_BINARY_DIR}/excludelist) + ELSEIF(LMMS_BUILD_WIN32) + SET(additional_args IGNORE_CASE IGNORE_LIBS_FILE "${LMMS_SOURCE_DIR}/cmake/install/excludelist-win") + IF(CMAKE_CROSSCOMPILING) + SET(additional_args "${additional_args}" GP_TOOL objdump) + ENDIF() + ENDIF() + + INSTALL(CODE " + INCLUDE(\"${LMMS_SOURCE_DIR}/cmake/modules/InstallDependencies.cmake\") + + INSTALL_DEPENDENCIES( + FILES \"\${DEPLOY_FILES}\" + DESTINATION \"${DEPS_DESTINATION}\" + LIB_DIRS \"${DEPS_LIB_DIRS}\" + SEARCH_PATHS \"${DEPS_SEARCH_PATHS}\" + ${additional_args} + ) + ") +ENDFUNCTION() diff --git a/cmake/modules/PluginList.cmake b/cmake/modules/PluginList.cmake new file mode 100644 index 000000000..151c5bd66 --- /dev/null +++ b/cmake/modules/PluginList.cmake @@ -0,0 +1,108 @@ +# Provides a fast mechanism for filtering the plugins used at build-time +SET(PLUGIN_LIST "" CACHE STRING "List of plug-ins to build") +STRING(REPLACE " " ";" PLUGIN_LIST "${PLUGIN_LIST}") +OPTION(LMMS_MINIMAL "Build a minimal list of plug-ins" OFF) +OPTION(LIST_PLUGINS "Lists the available plugins for building" OFF) + +SET(MINIMAL_LIST + AudioFileProcessor + Kicker + TripleOscillator +) + +IF(LMMS_MINIMAL) + IF("${PLUGIN_LIST}" STREQUAL "") + STRING(REPLACE ";" " " MINIMAL_LIST_STRING "${MINIMAL_LIST}") + MESSAGE( +"-- Using minimal plug-ins: ${MINIMAL_LIST_STRING}\n" +" Note: You can specify specific plug-ins using -DPLUGIN_LIST=\"foo bar\"" + ) + ENDIF() + SET(PLUGIN_LIST ${MINIMAL_LIST} ${PLUGIN_LIST}) +ENDIF() + +SET(LMMS_PLUGIN_LIST + ${MINIMAL_LIST} + Amplifier + BassBooster + BitInvader + Bitcrush + CarlaBase + CarlaPatchbay + CarlaRack + Compressor + CrossoverEQ + Delay + DualFilter + DynamicsProcessor + Eq + Flanger + HydrogenImport + LadspaBrowser + LadspaEffect + Lv2Effect + Lv2Instrument + Lb302 + MidiImport + MidiExport + MultitapEcho + Monstro + Nes + OpulenZ + Organic + FreeBoy + Patman + PeakControllerEffect + GigPlayer + ReverbSC + Sf2Player + Sfxr + Sid + SpectrumAnalyzer + StereoEnhancer + StereoMatrix + Stk + VstBase + Vestige + VstEffect + Watsyn + WaveShaper + Vectorscope + Vibed + Xpressive + ZynAddSubFx +) + +IF("${PLUGIN_LIST}" STREQUAL "") + SET(PLUGIN_LIST ${LMMS_PLUGIN_LIST}) +ENDIF() + +MACRO(LIST_ALL_PLUGINS) + MESSAGE("\n\nAll possible -DPLUGIN_LIST values") + MESSAGE("\n KEYWORD:") + MESSAGE(" -DLMMS_MINIMAL=True") + FOREACH(item IN LISTS MINIMAL_LIST) + MESSAGE(" ${item}") + ENDFOREACH() + MESSAGE("\n NAME:") + FOREACH(item IN LISTS LMMS_PLUGIN_LIST) + MESSAGE(" ${item}") + ENDFOREACH() + MESSAGE("\nNote: This value also impacts the fetching of git submodules.\n") + MESSAGE(FATAL_ERROR "Information was requested, aborting build!") +ENDMACRO() + +IF(LIST_PLUGINS) + UNSET(LIST_PLUGINS CACHE) + LIST_ALL_PLUGINS() +ENDIF() + +IF(MSVC) + SET(MSVC_INCOMPATIBLE_PLUGINS + LadspaEffect + ZynAddSubFx + ) + message(WARNING "Compiling with MSVC. The following plugins are not available: ${MSVC_INCOMPATIBLE_PLUGINS}") + LIST(REMOVE_ITEM PLUGIN_LIST ${MSVC_INCOMPATIBLE_PLUGINS}) +ENDIF() + diff --git a/cmake/modules/VersionInfo.cmake b/cmake/modules/VersionInfo.cmake index cf6932cbb..9571514a6 100644 --- a/cmake/modules/VersionInfo.cmake +++ b/cmake/modules/VersionInfo.cmake @@ -1,29 +1,56 @@ FIND_PACKAGE(Git) IF(GIT_FOUND AND NOT FORCE_VERSION) - # Look for git tag information (e.g. Tagged: "v1.0.0", Non-tagged: "v1.0.0-123-a1b2c3d") + SET(MAJOR_VERSION 0) + SET(MINOR_VERSION 0) + SET(PATCH_VERSION 0) + # Look for git tag information (e.g. Tagged: "v1.0.0", Untagged: "v1.0.0-123-a1b2c3d") + # Untagged format: [latest tag]-[number of commits]-[latest commit hash] EXECUTE_PROCESS( COMMAND "${GIT_EXECUTABLE}" describe --tags --match v[0-9].[0-9].[0-9]* OUTPUT_VARIABLE GIT_TAG WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" TIMEOUT 10 OUTPUT_STRIP_TRAILING_WHITESPACE) + # Read: TAG_LIST = GIT_TAG.split("-") STRING(REPLACE "-" ";" TAG_LIST "${GIT_TAG}") + # Read: TAG_LIST_LENGTH = TAG_LIST.length() LIST(LENGTH TAG_LIST TAG_LIST_LENGTH) + # Untagged versions contain at least 2 dashes, giving 3 strings on split. + # Hence, for untagged versions TAG_LIST_LENGTH = [dashes in latest tag] + 3. + # Corollary: if TAG_LIST_LENGTH <= 2, the version must be tagged. IF(TAG_LIST_LENGTH GREATER 0) + # Set FORCE_VERSION to TAG_LIST[0], strip any 'v's to get MAJ.MIN.PAT LIST(GET TAG_LIST 0 FORCE_VERSION) STRING(REPLACE "v" "" FORCE_VERSION "${FORCE_VERSION}") + # Split FORCE_VERSION on '.' and populate MAJOR/MINOR/PATCH_VERSION + STRING(REPLACE "." ";" MAJ_MIN_PAT "${FORCE_VERSION}") + LIST(GET MAJ_MIN_PAT 0 MAJOR_VERSION) + LIST(GET MAJ_MIN_PAT 1 MINOR_VERSION) + LIST(GET MAJ_MIN_PAT 2 PATCH_VERSION) ENDIF() + # 1 dash total: Dash in latest tag, no additional commits => pre-release IF(TAG_LIST_LENGTH EQUAL 2) LIST(GET TAG_LIST 1 VERSION_STAGE) SET(FORCE_VERSION "${FORCE_VERSION}-${VERSION_STAGE}") + # 2 dashes: Assume untagged with no dashes in latest tag name => stable + commits ELSEIF(TAG_LIST_LENGTH EQUAL 3) + # Get the number of commits and latest commit hash LIST(GET TAG_LIST 1 EXTRA_COMMITS) - SET(FORCE_VERSION "${FORCE_VERSION}.${EXTRA_COMMITS}") + LIST(GET TAG_LIST 2 COMMIT_HASH) + # Bump the patch version + MATH(EXPR PATCH_VERSION "${PATCH_VERSION}+1") + # Set the version to MAJOR.MINOR.PATCH-EXTRA_COMMITS+COMMIT_HASH + SET(FORCE_VERSION "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}") + SET(FORCE_VERSION "${FORCE_VERSION}-${EXTRA_COMMITS}+${COMMIT_HASH}") + # 3 dashes: Assume untagged with 1 dash in latest tag name => pre-release + commits ELSEIF(TAG_LIST_LENGTH EQUAL 4) + # Get pre-release stage, number of commits, and latest commit hash LIST(GET TAG_LIST 1 VERSION_STAGE) LIST(GET TAG_LIST 2 EXTRA_COMMITS) - SET(FORCE_VERSION - "${FORCE_VERSION}-${VERSION_STAGE}.${EXTRA_COMMITS}") + LIST(GET TAG_LIST 3 COMMIT_HASH) + # Set the version to MAJOR.MINOR.PATCH-VERSION_STAGE.EXTRA_COMMITS+COMMIT_HASH + SET(FORCE_VERSION "${FORCE_VERSION}-${VERSION_STAGE}") + SET(FORCE_VERSION "${FORCE_VERSION}.${EXTRA_COMMITS}+${COMMIT_HASH}") ENDIF() ENDIF() @@ -74,4 +101,3 @@ MESSAGE("\n" "* Override version: -DFORCE_VERSION=x.x.x-x\n" "* Ignore Git information: -DFORCE_VERSION=internal\n" ) - diff --git a/cmake/modules/winegcc_wrapper.in b/cmake/modules/winegcc_wrapper.in index d32aec664..7afd1995b 100755 --- a/cmake/modules/winegcc_wrapper.in +++ b/cmake/modules/winegcc_wrapper.in @@ -49,8 +49,9 @@ extra_args="-I@WINE_INCLUDE_DIR@ -I@WINE_INCLUDE_DIR@/wine/windows" extra_args="$extra_args @WINE_CXX_FLAGS@" # Apply -m32 library fix if necessary +# Additionally, apply "-z notext" to fix an inconsistency in ld.lld vs ld.bfd and ld.gold if [ "$win32" = true ] && [ "$no_link" != true ]; then - extra_args="$extra_args @WINE_32_FLAGS@" + extra_args="$extra_args @WINE_32_FLAGS@ -z notext" fi # Apply -m64 library fix if necessary @@ -58,6 +59,9 @@ if [ "$win64" = true ] && [ "$no_link" != true ]; then extra_args="$extra_args @WINE_64_FLAGS@" fi +# Work around https://bugs.winehq.org/show_bug.cgi?id=47710 +extra_args="$extra_args -D__WIDL_objidl_generated_name_0000000C=" + # Run winegcc export WINEBUILD=@WINE_BUILD@ @WINE_CXX@ $extra_args $args diff --git a/cmake/msys/extract_debs.sh b/cmake/msys/extract_debs.sh index cb2a868d3..939912bb2 100644 --- a/cmake/msys/extract_debs.sh +++ b/cmake/msys/extract_debs.sh @@ -1,4 +1,6 @@ #!/bin/bash +set -e + ppa_dir=./ppa/ pushd $ppa_dir diff --git a/cmake/msys/msys_helper.sh b/cmake/msys/msys_helper.sh index 294edd476..a6a7e6aae 100644 --- a/cmake/msys/msys_helper.sh +++ b/cmake/msys/msys_helper.sh @@ -68,7 +68,7 @@ stkver="4.5.1" mingw_root="/$(echo "$MSYSTEM"|tr '[:upper:]' '[:lower:]')" info "Downloading and building fltk $fltkver" -if ! which fluid; then +if ! command -v fluid; then wget http://fltk.org/pub/fltk/$fltkver/fltk-$fltkver-source.tar.gz -O "$HOME/fltk-source.tar.gz" tar zxf "$HOME/fltk-source.tar.gz" -C "$HOME/" pushd "$HOME/fltk-$fltkver" diff --git a/cmake/nsis/CMakeLists.txt b/cmake/nsis/CMakeLists.txt index ac628d549..9dca3495d 100644 --- a/cmake/nsis/CMakeLists.txt +++ b/cmake/nsis/CMakeLists.txt @@ -1,3 +1,8 @@ +SET(WIN_PLATFORM mingw) +if(LMMS_MSVC_YEAR) + SET(WIN_PLATFORM "msvc${LMMS_MSVC_YEAR}") +endif() + SET(CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/cmake/nsis/nsis_branding.bmp") IF(MSVC) STRING(REPLACE "/" "\\\\" CPACK_PACKAGE_ICON ${CPACK_PACKAGE_ICON}) @@ -15,7 +20,7 @@ SET(CPACK_NSIS_DEFINES " !include FileAssociation.nsh !include LogicLib.nsh !include WinVer.nsh") -SET(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-win32") +SET(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-${WIN_PLATFORM}-win32") SET(CPACK_NSIS_EXTRA_INSTALL_COMMANDS " \\\${registerExtension} \\\"$INSTDIR\\\\${CMAKE_PROJECT_NAME}.exe\\\" \\\".mmp\\\" \\\"${PROJECT_NAME_UCASE} Project\\\" \\\${registerExtension} \\\"$INSTDIR\\\\${CMAKE_PROJECT_NAME}.exe\\\" \\\".mmpz\\\" \\\"${PROJECT_NAME_UCASE} Project (compressed)\\\" @@ -31,7 +36,7 @@ SET(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS " " PARENT_SCOPE) IF(WIN64) - SET(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-win64") + SET(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${VERSION}-${WIN_PLATFORM}-win64") SET(CPACK_INSTALL_FIX "$PROGRAMFILES64\\\\${CPACK_PACKAGE_INSTALL_DIRECTORY}\\\\") SET(CPACK_NSIS_DEFINES " ${CPACK_NSIS_DEFINES} @@ -66,7 +71,7 @@ SET(CPACK_NSIS_MUI_ICON "${CPACK_NSIS_MUI_ICON}" PARENT_SCOPE) # 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") +CONFIGURE_FILE("zynaddsubfx.rc.in" "${CMAKE_BINARY_DIR}/plugins/ZynAddSubFx/zynaddsubfx.rc") IF(LMMS_HAVE_STK) FILE(GLOB RAWWAVES "${MINGW_PREFIX}/share/stk/rawwaves/*.raw") diff --git a/cmake/postinstall/CMakeLists.txt b/cmake/postinstall/CMakeLists.txt deleted file mode 100644 index 434d1c54e..000000000 --- a/cmake/postinstall/CMakeLists.txt +++ /dev/null @@ -1,4 +0,0 @@ -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)") -ENDIF() \ No newline at end of file diff --git a/data/locale/CMakeLists.txt b/data/locale/CMakeLists.txt index 9cb25f426..4ce666dcf 100644 --- a/data/locale/CMakeLists.txt +++ b/data/locale/CMakeLists.txt @@ -47,9 +47,9 @@ FOREACH(_item ${qm_targets}) ADD_DEPENDENCIES(finalize-locales "${_item}") ENDFOREACH(_item ${qm_targets}) -IF(LMMS_BUILD_WIN32) - FILE(GLOB QT_QM_FILES "${QT_TRANSLATIONS_DIR}/qt*[^h].qm") +IF(BUNDLE_QT_TRANSLATIONS) + FILE(GLOB QT_QM_FILES "${QT_TRANSLATIONS_DIR}/qt*.qm") LIST(SORT QT_QM_FILES) -ENDIF(LMMS_BUILD_WIN32) +ENDIF() INSTALL(FILES ${QM_FILES} ${QT_QM_FILES} DESTINATION "${LMMS_DATA_DIR}/locale") diff --git a/data/locale/ar.ts b/data/locale/ar.ts index 8e2bc5284..1f159c42a 100644 --- a/data/locale/ar.ts +++ b/data/locale/ar.ts @@ -2,680 +2,712 @@ AboutDialog + About LMMS - حول إل إم إم إس + حول LMMS - Version %1 (%2/%3, Qt %4, %5) - إصدار %1 (%2/%3, Qt %4, %5) + + LMMS + LMMS + + Version %1 (%2/%3, Qt %4, %5). + إصدار %1 (%2/%3, Qt %4, %5). + + + About حول - LMMS - easy music production for everyone - إل إم إم إس - إنتاج موسيقى سهل للجميع + + LMMS - easy music production for everyone. + LMMS - إنتاج موسيقى سهل للجميع. + + Copyright © %1. + حقوق النشر © %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> + + + Authors المؤلفون - Translation - الترجمة - - - 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! - اللغة الحالية غير مترجمة (أو الإنجليزية) - -إذا كنت مهتما بترجمة إل إم إم إس للغة أخرى أو ترغب ترغب بتحسين ترجمة لغة موجودة مسبقا، أنت بك لكي تساعدنا! ببساطة تواصل مع المصين! - - - License - الرخصة - - - LMMS - إل إم إم إس - - + Involved المشاركون + Contributors ordered by number of commits: + المساهمون مرتبين وفقا لعدد المشاركات: + + + + Translation + الترجمة + + + + 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! - Copyright © %1 - حقوق النشر © %1 - - - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - + + License + الرخصة AmplifierControlDialog + VOL - صوت + حجم + Volume: - مستوى الصوت: + الحجم: + PAN - + توزيع + Panning: - + التوزيع: + LEFT يسار + Left gain: - + زيادة اليسار: + RIGHT يمين + Right gain: - + زيادة اليمين: AmplifierControls + Volume - + الحجم + Panning - + التوزيع + Left gain - + زيادة اليسار + Right gain - + زيادة اليمين AudioAlsaSetupWidget + DEVICE - جهاز + الجهاز + CHANNELS - قنوات + القنوات AudioFileProcessorView - Open other sample - افتح عينة أخرى - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - + + Open sample + افتح العينة + Reverse sample - - - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - - - - Amplify: - - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - - - - Startpoint: - - - - Endpoint: - - - - Continue sample playback across notes - - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - + اعكس العينة + Disable loop عدم تكرار - This button disables looping. The sample plays only once from start to end. - - - + Enable loop + تمكين التكرار +  + + + + Enable ping-pong loop - This button enables forwards-looping. The sample loops between the end point and the loop point. + + Continue sample playback across notes + استمر في تشغيل العينة عبر النغمات + + + + Amplify: + كبر: + + + + Start point: - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - - - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. + + End point: + Loopback point: - - With this knob you can set the point where the loop starts. - - 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 + + Client name - CHANNELS - قنوات + + Channels + - AudioOss::setupWidget + AudioOss - DEVICE + + Device جهاز - CHANNELS - قنوات + + Channels + AudioPortAudio::setupWidget - BACKEND + + Backend - DEVICE + + Device جهاز - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE + + Device جهاز - CHANNELS - قنوات + + Channels + AudioSdl::setupWidget - DEVICE + + Device جهاز - AudioSndio::setupWidget + AudioSndio - DEVICE + + Device جهاز - CHANNELS - قنوات + + Channels + AudioSoundIo::setupWidget - BACKEND + + Backend - DEVICE + + 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 - - - - Connected to %1 - - - - Connected to controller - - - - Edit connection... - - - - Remove connection - - - - Connect to controller... - + حرر الأتمتة الشاملة للأغنية. + Remove song-global automation - + أزل الأتمتة الشاملة للأغنية. + Remove all linked controls + + + Connected to %1 + مرتبط ب %1 + + + + Connected to controller + مرتبط بالمتحكم + + + + Edit connection... + حرر الارتباط... + + + + Remove connection + أزل الارتباط + + + + Connect to controller... + ارتبط بالمتحكم... + AutomationEditor - Please open an automation pattern with the context menu of a control! + + Edit Value - Values copied + + New outValue - All selected values were copied to the clipboard. + + New inValue + + + Please open an automation clip with the context menu of a control! + من فضلك افتح نمط أتمتة من قائمة أداة ضبط. + AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - - - - Stop playing of current pattern (Space) - - - - Click here if you want to stop playing of the current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Flip vertically - - - - Flip horizontally - - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Discrete progression - - - - Linear progression - - - - Cubic Hermite progression - - - - Tension value for spline - - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - Cut selected values (%1+X) - - - - Copy selected values (%1+C) - - - - Paste values from clipboard (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - - - - Tension: - - - - Automation Editor - no pattern - - - - Automation Editor - %1 + + 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 - Timeline controls + + Discrete progression + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + Zoom controls + + Horizontal zooming + + + + + Vertical zooming + + + + Quantization controls - Model is already connected to this pattern. + + Quantization + + + + + + Automation Editor - no clip + محرر الأتمتة - لا نمط + + + + + Automation Editor - %1 + محرر الأتمتة - 1% + + + + Model is already connected to this clip. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> - AutomationPatternView - - double-click to open this pattern in automation editor - - + AutomationClipView + Open in Automation editor - + افتح في محرر الأتمتة + Clear - + واضح + Reset name + Change name - %1 Connections - - - - Disconnect "%1" - - - + Set/clear record + Flip Vertically (Visible) + Flip Horizontally (Visible) - Model is already connected to this pattern. + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. AutomationTrack + Automation track - + مقطع أتمتة - BBEditor + PatternEditor + Beat+Bassline Editor + Play/pause current beat/bassline (Space) + Stop playback of current beat/bassline (Space) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - - - - Click here to stop playing of current beat/bassline. - - - - Add beat/bassline - - - - Add automation-track - - - - Remove steps - - - - Add steps - - - + Beat selector + Track and step actions - Clone Steps + + Add beat/bassline + + Clone beat/bassline clip + + + + Add sample-track + + + Add automation-track + أضف مقطع أتمتة + + + + Remove steps + أزل خطوات + + + + Add steps + أضف خطوات + + + + Clone Steps + استنسخ الخطوات + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor + Reset name + Change name - - Change color - - - - Reset color to default - - - BBTrack + PatternTrack + Beat/Bassline %1 + Clone of %1 - + مستنسخ %1 BassBoosterControlDialog + FREQ + Frequency: + GAIN + Gain: + RATIO + Ratio: @@ -683,14 +715,17 @@ If you're interested in translating LMMS in another language or want to imp BassBoosterControls + Frequency + Gain + Ratio @@ -698,111 +733,2344 @@ If you're interested in translating LMMS in another language or want to imp BitcrushControlDialog + IN + OUT + + GAIN - Input Gain: + + Input gain: - NOIS + + NOISE - Input Noise: + + Input noise: - Output Gain: + + Output gain: + CLIP - Output Clip: + + Output clip: - Rate + + Rate enabled - Rate Enabled + + Enable sample-rate crushing - Enable samplerate-crushing + + Depth enabled - Depth + + Enable bit-depth crushing - Depth Enabled - - - - Enable bitdepth-crushing + + FREQ + Sample rate: - STD + + STEREO + Stereo difference: - Levels + + QUANT + Levels: - CaptionMenu + BitcrushControls + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + حول + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + ملف + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help - Help (not available) + + toolBar + + + + + 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 + جديد + + + + Ctrl+N + + + + + &Open... + افتح... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + احفظ + + + + Ctrl+S + + + + + Save &As... + احفظ ك... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + توقف + + + + 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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. + + Settings + الأوضاع + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 @@ -810,58 +3078,73 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -869,18 +3152,22 @@ If you're interested in translating LMMS in another language or want to imp ControllerRackView + Controller Rack + Add - + أضف + Confirm Delete + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. @@ -888,116 +3175,158 @@ If you're interested in translating LMMS in another language or want to imp ControllerView + Controls - Controllers are able to automate the value of a knob, slider, and other controls. - - - + Rename controller + Enter the new name for this controller + + LFO + + + + &Remove this controller + Re&name this controller - - LFO - - 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 2 Gain: + + Band 1 gain: - Band 3 Gain: + + Band 2 gain - Band 4 Gain: + + Band 2 gain: - Band 1 Mute + + Band 3 gain - Mute Band 1 + + Band 3 gain: - Band 2 Mute + + Band 4 gain - Mute Band 2 + + Band 4 gain: - Band 3 Mute + + Band 1 mute - Mute Band 3 + + Mute band 1 - Band 4 Mute + + Band 2 mute - Mute Band 4 + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 DelayControls - Delay Samples + + Delay samples + Feedback - Lfo Frequency + + LFO frequency - Lfo Amount + + LFO amount + Output gain @@ -1005,228 +3334,528 @@ If you're interested in translating LMMS in another language or want to imp DelayControlsDialog - Lfo Amt - - - - Delay Time - - - - Feedback Amount - - - - Lfo - - - - Out Gain - - - - Gain - - - + 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 + + + + + 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 - Filter 1 enabled - - - - Filter 2 enabled - - - - Click to enable/disable Filter 1 - - - - Click to enable/disable Filter 2 - - - + + 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 1 frequency + + Cutoff frequency 1 + Q/Resonance 1 + Gain 1 + Mix + Filter 2 enabled + Filter 2 type - Cutoff 2 frequency + + Cutoff frequency 2 + Q/Resonance 2 + Gain 2 - LowPass + + + Low-pass - HiPass + + + Hi-pass - BandPass csg + + + Band-pass csg - BandPass czpg + + + Band-pass czpg + + Notch - Allpass + + + All-pass + + Moog - 2x LowPass + + + 2x Low-pass - RC LowPass 12dB + + + RC Low-pass 12 dB/oct - RC BandPass 12dB + + + RC Band-pass 12 dB/oct - RC HighPass 12dB + + + RC High-pass 12 dB/oct - RC LowPass 24dB + + + RC Low-pass 24 dB/oct - RC BandPass 24dB + + + RC Band-pass 24 dB/oct - RC HighPass 24dB + + + RC High-pass 24 dB/oct - Vocal Formant Filter + + + Vocal Formant + + 2x Moog - SV LowPass + + + SV Low-pass - SV BandPass + + + SV Band-pass - SV HighPass + + + SV High-pass + + SV Notch + + Fast Formant + + Tripole @@ -1234,41 +3863,55 @@ If you're interested in translating LMMS in another language or want to imp Editor + + Transport controls + + + + Play (Space) + Stop (Space) + Record + Record while playing - Transport controls + + Toggle Step Recording Effect + Effect enabled + Wet/Dry mix + Gate + Decay @@ -1276,6 +3919,7 @@ If you're interested in translating LMMS in another language or want to imp EffectChain + Effects enabled @@ -1283,33 +3927,41 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView + EFFECTS CHAIN - + سلسلة التأثيرات + Add effect - + أضف تأثيرا EffectSelectDialog + Add effect - + أضف تأثيرا + + Name + Type + Description + Author @@ -1317,78 +3969,57 @@ If you're interested in translating LMMS in another language or want to imp EffectView - Toggles the effect on or off. - - - + On/Off + W/D + Wet Level: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - - - + DECAY + Time: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - - - + GATE + Gate: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - - - + Controls - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - - - + Move &up - + حرك لأعلى + Move &down - + حرك لأسفل + &Remove this plugin @@ -1396,408 +4027,409 @@ Right clicking will bring up a context menu where you can change the order in wh EnvelopeAndLfoParameters - Predelay + + Env pre-delay - Attack + + Env attack - Hold + + Env hold - Decay + + Env decay - Sustain + + Env sustain - Release + + Env release - Modulation + + Env mod amount - LFO Predelay + + LFO pre-delay - LFO Attack + + LFO attack - LFO speed + + LFO frequency - LFO Modulation + + LFO mod amount - LFO Wave Shape + + LFO wave shape - Freq x 100 + + LFO frequency x 100 - Modulate Env-Amount + + Modulate env amount EnvelopeAndLfoView + + DEL - Predelay: - - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. + + + Pre-delay: + + ATT + + Attack: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - - - + HOLD + Hold: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - - - + DEC + Decay: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - - - + SUST + Sustain: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - - - + REL + Release: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - - - + + AMT + + Modulation amount: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - - - - LFO predelay: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - - - - LFO- attack: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - - - + SPD - LFO speed: - - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - - - - Click here for a sine-wave. - - - - Click here for a triangle-wave. - - - - Click here for a saw-wave for current. - - - - Click here for a square-wave. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. + + Frequency: + FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. + + Multiply LFO frequency by 100 - multiply LFO-frequency by 100 + + MODULATE ENV AMOUNT - MODULATE ENV-AMOUNT - - - - Click here to make the envelope-amount controlled by this LFO. - - - - control envelope-amount by this LFO + + Control envelope amount by this LFO + ms/LFO: + Hint - Drag a sample from somewhere and drop it in this window. - - - - Click here for random wave. + + Drag and drop a sample into this window. EqControls + Input gain + Output gain - Low shelf gain + + Low-shelf gain + Peak 1 gain + Peak 2 gain + Peak 3 gain + Peak 4 gain - High Shelf gain + + High-shelf gain + HP res - Low Shelf res + + Low-shelf res + Peak 1 BW + Peak 2 BW + Peak 3 BW + Peak 4 BW - High Shelf res + + High-shelf res + LP res + HP freq - Low Shelf freq + + Low-shelf freq + Peak 1 freq + Peak 2 freq + Peak 3 freq + Peak 4 freq - High shelf freq + + High-shelf freq + LP freq + HP active - Low shelf active + + Low-shelf active + Peak 1 active + Peak 2 active + Peak 3 active + Peak 4 active - High shelf active + + High-shelf active + LP active + LP 12 + LP 24 + LP 48 + HP 12 + HP 24 + HP 48 - low pass type + + Low-pass type - high pass type + + High-pass type + Analyse IN + Analyse OUT @@ -1805,85 +4437,108 @@ Right clicking will bring up a context menu where you can change the order in wh EqControlsDialog + HP - Low Shelf + + Low-shelf + Peak 1 + Peak 2 + Peak 3 + Peak 4 - High Shelf + + High-shelf + LP - In Gain + + Input gain + + + Gain - Out Gain + + Output gain + Bandwidth: + + Octave + + + + Resonance : + Frequency: - lp grp + + LP group - hp grp - - - - Octave + + HP group EqHandle + Reso: + BW: + + Freq: @@ -1891,174 +4546,271 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog + Export project + صدر المشروع + + + + Export as loop (remove extra bar) - Output - - - - File format: - - - - Samplerate: - - - - 44100 Hz - - - - 48000 Hz - - - - 88200 Hz - - - - 96000 Hz - - - - 192000 Hz - - - - Bitrate: - - - - 64 KBit/s - - - - 128 KBit/s - - - - 160 KBit/s - - - - 192 KBit/s - - - - 256 KBit/s - - - - 320 KBit/s - - - - Depth: - - - - 16 Bit Integer - - - - 32 Bit Float - - - - Please note that not all of the parameters above apply for all file formats. - - - - Quality settings - - - - Interpolation: - - - - Zero Order Hold - - - - Sinc Fastest - - - - Sinc Medium (recommended) - - - - Sinc Best (very slow!) - - - - Oversampling (use with care!): - - - - 1x (None) - - - - 2x - - - - 4x - - - - 8x - - - - Start - - - - Cancel - - - - Export as loop (remove end silence) - - - + Export between loop markers + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + + + + + Sampling rate: + + + + + 44100 Hz + + + + + 48000 Hz + + + + + 88200 Hz + + + + + 96000 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 - Export project to %1 - - - - Error - - - - Error while determining file-encoder device. Please try to choose a different output format. - - - - Rendering: %1% - - - + 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 + صدر المشروع إلى %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: @@ -2066,72 +4818,133 @@ Please make sure you have write permission to the file and the directory contain FileBrowser + + User content + + + + + Factory content + + + + Browser + + + Search + ابحث + + + + Refresh list + جدد القائمة + FileBrowserTreeWidget + Send to active instrument-track - Open in new instrument-track/B+B Editor + + 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... - --- Factory files --- - - - - Open in new instrument-track/Song Editor - - - + Error + خطأ + + + + %1 does not appear to be a valid %2 file - does not appear to be a valid - - - - file - + + --- Factory files --- + --- ملفات المصنع --- FlangerControls - Delay Samples + + Delay samples - Lfo Frequency + + LFO frequency + Seconds + + Stereo phase + + + + Regen + Noise + Invert @@ -2139,128 +4952,516 @@ Please make sure you have write permission to the file and the directory contain FlangerControlsDialog - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - + DELAY + + Delay time: + + + + RATE - Rate: + + Period: + AMNT + Amount: + + PHASE + + + + + Phase: + + + + FDBK + + Feedback amount: + + + + NOISE + + White noise amount: + + + + Invert - FxLine + 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 + + + + + MixerLine + + Channel send amount - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - + Move &left + Move &right + Rename &channel + R&emove channel + Remove &unused channels + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + + + + + New Mixer Channel + + + + + Mixer + + Master + الرئيسية + + + + + + Channel %1 - FX %1 - - - - - FxMixerView - - FX-Mixer - - - - FX Fader %1 - + + Volume + الحجم + Mute - Mute this FX channel - - - + Solo - - Solo FX channel - - - FxRoute + MixerView + + Mixer + المازج + + + + Fader %1 + + + + + Mute + + + + + Mute this Mixer channel + + + + + Solo + + + + + Solo Mixer channel + + + + + MixerRoute + + + Amount to send from channel %1 to channel %2 @@ -2268,14 +5469,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument + Bank + Patch + Gain @@ -2283,46 +5487,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - Open other GIG file - - - - Click here to open another GIG file - - - - Choose the patch - - - - Click here to change which patch of the GIG file to use - - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - - - - Gain - - - - Factor to multiply samples by - - - + + Open GIG file + + Choose patch + + + + + Gain: + + + + GIG Files (*.gig) @@ -2330,693 +5511,851 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 piano roll + Preparing automation editor - + إعداد محرر الأتمتة InstrumentFunctionArpeggio + Arpeggio + Arpeggio type + Arpeggio range - Arpeggio time + + Note repeats - Arpeggio gate - - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - - - - Free - - - - Sort - - - - Sync - - - - Down and up + + Cycle steps + Skip rate + Miss rate - Cycle steps + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + أعلى + + + + Down + أسفل + + + + Up and down + أعلى و أسفل + + + + Down and up + أسفل و أعلى + + + + Random + + + + + Free + + + + + Sort + + + + + Sync InstrumentFunctionArpeggioView + ARPEGGIO - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - + RANGE + Arpeggio range: + octave(s) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. + + REP - TIME + + Note repeats: - Arpeggio time: - - - - ms - - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - - - - GATE - - - - Arpeggio gate: - - - - % - - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - Chord: - - - - Direction: - - - - Mode: - - - - SKIP - - - - Skip rate: - - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - MISS - - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. + + time(s) + CYCLE + Cycle notes: + note(s) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + 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 - Phrygolydian + + Phrygian + Lydian + Mixolydian + Aeolian + Locrian - Chords - - - - Chord type - - - - Chord range - - - + Minor + Chromatic + Half-Whole Diminished + 5 + Phrygian dominant + Persian + + + Chords + + + + + Chord type + + + + + Chord range + + InstrumentFunctionNoteStackingView - RANGE - - - - Chord range: - - - - octave(s) - - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - - + STACKING + Chord: + + + RANGE + + + + + Chord range: + + + + + octave(s) + + InstrumentMidiIOView + ENABLE MIDI INPUT - CHANNEL - - - - VELOCITY - - - + ENABLE MIDI OUTPUT - PROGRAM + + + 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 - NOTE - - - + CUSTOM BASE VELOCITY - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + BASE VELOCITY @@ -3024,137 +6363,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView + MASTER PITCH - + الطبقة الرئيسية - Enables the use of Master Pitch + + Enables the use of master pitch InstrumentSoundShaping + VOLUME + Volume - + الحجم + CUTOFF + + Cutoff frequency + RESO + Resonance + Envelopes/LFOs + Filter type + Q/Resonance - LowPass + + Low-pass - HiPass + + Hi-pass - BandPass csg + + Band-pass csg - BandPass czpg + + Band-pass czpg + Notch - Allpass + + All-pass + Moog - 2x LowPass + + 2x Low-pass - RC LowPass 12dB + + RC Low-pass 12 dB/oct - RC BandPass 12dB + + RC Band-pass 12 dB/oct - RC HighPass 12dB + + RC High-pass 12 dB/oct - RC LowPass 24dB + + RC Low-pass 24 dB/oct - RC BandPass 24dB + + RC Band-pass 24 dB/oct - RC HighPass 24dB + + RC High-pass 24 dB/oct - Vocal Formant Filter + + Vocal Formant + 2x Moog - SV LowPass + + SV Low-pass - SV BandPass + + SV Band-pass - SV HighPass + + SV High-pass + SV Notch + Fast Formant + Tripole @@ -3162,50 +6535,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView + TARGET - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - + FILTER - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - - - - Hz - - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - - - - RESO - - - - Resonance: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - + FREQ - cutoff frequency: + + Cutoff frequency: + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. @@ -3213,211 +6578,337 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack + + unnamed_track - Volume - - - - Panning - - - - Pitch - - - - FX channel - - - - Default preset - - - - With this knob you can set the volume of the opened channel. - - - + Base note + + First note + + + + + Last note + + + + + Volume + الحجم + + + + Panning + التوزيع + + + + Pitch + + + + Pitch range - Master Pitch + + Mixer channel + + + Master pitch + الطبقة الرئيسية + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + المسبقة الأساسي + InstrumentTrackView + Volume - + الحجم + Volume: مستوى الصوت: + VOL صوت + Panning - + التوزيع + Panning: - + التوزيع: + PAN - + التوزيع + MIDI + Input + Output - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 InstrumentTrackWindow + GENERAL SETTINGS - Instrument volume - + + Volume + الحجم + Volume: مستوى الصوت: + VOL صوت + Panning - + التوزيع + Panning: - + التوزيع: + PAN - + التوزيع + Pitch + Pitch: + cents + PITCH - FX channel - - - - ENV/LFO - - - - FUNC - - - - FX - - - - MIDI - - - - Save preset - - - - XML preset file (*.xpf) - - - - PLUGIN - - - + Pitch range (semitones) + RANGE + + Mixer channel + + + + + CHANNEL + + + + Save current instrument track settings in a preset file - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - - - - MISC - - - - Use these controls to view and edit the next/previous track in the song editor. - - - + SAVE + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Miscellaneous + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: @@ -3425,6 +6916,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControl + Link channels @@ -3432,10 +6924,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlDialog + Link Channels + Channel @@ -3443,28 +6937,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView + Link channels + Value: - - Sorry, no help available. - - LadspaEffect + Unknown LADSPA plugin %1 requested. + + LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + LcdSpinBox + + Set value + + + + Please enter a new value between %1 and %2: @@ -3472,18 +6984,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri LeftRightNav + + + Previous + + + Next + Previous (%1) + Next (%1) @@ -3491,30 +7011,37 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoController + LFO Controller + Base value + Oscillator speed + Oscillator amount + Oscillator phase + Oscillator waveform + Frequency Multiplier @@ -3522,540 +7049,685 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoControllerDialog + LFO - LFO Controller - - - + BASE - Base amount: + + Base: - todo + + FREQ - SPD + + LFO frequency: - LFO-speed: - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. + + AMNT + Modulation amount: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - + PHS + Phase offset: - degrees + + degrees - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. + + Sine wave - Click here for a sine-wave. + + Triangle wave - Click here for a triangle-wave. + + Saw wave - Click here for a saw-wave. + + Square wave - Click here for a square-wave. + + Moog saw wave - Click here for an exponential wave. + + Exponential wave - Click here for white-noise. + + White noise - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Click here for a moog saw-wave. + + Mutliply modulation frequency by 1 - AMNT + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 - LmmsCore + Engine + Generating wavetables + Initializing data structures + Opening audio and midi devices + Launching mixer threads - + بدأ خيوط المازج MainWindow - Could not save config-file + + Configuration file - Could not save configuration file %1. You're probably not permitted to write to this file. -Please make sure you have write-access to the file and try again. + + 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! + + + + + 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 + حاسوبي + + + + &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... + &Quit - + توقف + &Edit + حرر + + + + Undo + + Redo + + + + Settings - + الأوضاع + + &View + عرض + + + &Tools - + أدوات + &Help + + Online Help + مساعدة على الشبكة العالمية + + + Help - What's this? - - - + About حول + Create new project - + أنشئ مشروعا جديدا + Create new project from template - + أنشئ مشروعا جديدا من قالب + Open existing project - + افتح مشروعا موجودا + Recently opened projects - + مشاريع مفتوحة حديثا + Save current project - + احفظ المشروع الحالي + Export current project + صدر المشروع الحالي + + + + Metronome + + Song Editor - - - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - + محرر الأغنية + + Beat+Bassline Editor - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - - - + + Piano Roll - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - - - + + Automation Editor - + محرر الأتمتة - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - + + + Mixer + المازج - FX Mixer - + + Show/hide controller rack + أظهر/أخف منصب المتحكمات - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - - - - Project Notes - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - - - - Controller Rack - + + Show/hide project notes + أظهر/أخف ملاحظات المشروع + Untitled + + Recover session. Please save your work! + + + + LMMS %1 - Project not saved + + 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. - LMMS (*.mmp *.mmpz) + + Controller Rack - Version %1 + + Project Notes - Configuration file - - - - Error while parsing configuration file at line %1:%2: %3 - - - - Volumes - - - - Undo - - - - Redo - - - - My Projects - - - - My Samples - - - - My Presets - - - - My Home - - - - My Computer - - - - &File - - - - &Recently Opened Projects - - - - Save as New &Version - - - - E&xport Tracks... - - - - Online Help - - - - What's This? - - - - Open Project - - - - Save Project - - - - 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. - - - - Ignore - - - - Launch LMMS as usual but with automatic backup disabled to prevent the present recover file from being overwritten. - - - - Discard - - - - Launch a default session and delete the restored files. This is not reversible. - - - - Preparing plugin browser - - - - Preparing file browsers - - - - Root directory - - - - Loading background artwork - - - - New from template - - - - Save as default template - - - - &View - - - - Toggle metronome - - - - Show/hide Song-Editor - - - - Show/hide Beat+Bassline Editor - - - - Show/hide Piano-Roll - - - - Show/hide Automation Editor - - - - Show/hide FX Mixer - - - - Show/hide project notes - - - - Show/hide controller rack - - - - Recover session. Please save your work! - - - - Automatic backup disabled. Remember to save your work! - - - - 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? - - - - LMMS Project - - - - LMMS Project Template - - - - Overwrite default template? - - - - This will overwrite your current default template. + + Fullscreen + Volume as dBFS - + الحجم ك dBFS + Smooth scroll - + تمرير رفيق + Enable note labels in piano roll + مكن رقع العلامات في مخطوطة البيان + + + + MIDI File (*.mid) - Save project template + + + 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 + + + + + Hydrogen projects + + + + + All file types MeterDialog + + Meter Numerator + + Meter numerator + + + + + Meter Denominator - TIME SIG + + Meter denominator + + + TIME SIG + دليل الوقت + MeterModel + Numerator + Denominator + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController + MIDI Controller + unnamed_midi_controller @@ -4063,18 +7735,43 @@ Please visit http://lmms.sf.net/wiki for documentation on 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 do not have 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 @@ -4082,541 +7779,911 @@ Please visit http://lmms.sf.net/wiki for documentation on 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) + + 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 - Output MIDI program - - - - Receive MIDI-events - - - - Send MIDI-events - - - + Fixed output note + + Output MIDI program + + + + Base velocity + + + Receive MIDI-events + + + + + Send MIDI-events + + MidiSetupWidget - DEVICE + + Device جهاز MonstroInstrument - Osc 1 Volume + + Osc 1 volume - Osc 1 Panning + + Osc 1 panning - Osc 1 Coarse detune + + Osc 1 coarse detune - Osc 1 Fine detune left + + Osc 1 fine detune left - Osc 1 Fine detune right + + Osc 1 fine detune right - Osc 1 Stereo phase offset + + Osc 1 stereo phase offset - Osc 1 Pulse width + + Osc 1 pulse width - Osc 1 Sync send on rise + + Osc 1 sync send on rise - Osc 1 Sync send on fall + + Osc 1 sync send on fall - Osc 2 Volume + + Osc 2 volume - Osc 2 Panning + + Osc 2 panning - Osc 2 Coarse detune + + Osc 2 coarse detune - Osc 2 Fine detune left + + Osc 2 fine detune left - Osc 2 Fine detune right + + Osc 2 fine detune right - Osc 2 Stereo phase offset + + Osc 2 stereo phase offset - Osc 2 Waveform + + Osc 2 waveform - Osc 2 Sync Hard + + Osc 2 sync hard - Osc 2 Sync Reverse + + Osc 2 sync reverse - Osc 3 Volume + + Osc 3 volume - Osc 3 Panning + + Osc 3 panning - Osc 3 Coarse detune + + Osc 3 coarse detune + Osc 3 Stereo phase offset - Osc 3 Sub-oscillator mix + + Osc 3 sub-oscillator mix - Osc 3 Waveform 1 + + Osc 3 waveform 1 - Osc 3 Waveform 2 + + Osc 3 waveform 2 - Osc 3 Sync Hard + + Osc 3 sync hard - Osc 3 Sync Reverse + + Osc 3 Sync reverse - LFO 1 Waveform + + LFO 1 waveform - LFO 1 Attack + + LFO 1 attack - LFO 1 Rate + + LFO 1 rate - LFO 1 Phase + + LFO 1 phase - LFO 2 Waveform + + LFO 2 waveform - LFO 2 Attack + + LFO 2 attack - LFO 2 Rate + + LFO 2 rate - LFO 2 Phase + + LFO 2 phase - 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 - Osc2-3 modulation + + Osc 2+3 modulation + Selected view - Vol1-Env1 + + Osc 1 - Vol env 1 - Vol1-Env2 + + Osc 1 - Vol env 2 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 - Vol2-Env1 + + Osc 2 - Vol env 1 - Vol2-Env2 + + Osc 2 - Vol env 2 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 - Vol3-Env1 + + Osc 3 - Vol env 1 - Vol3-Env2 + + Osc 3 - Vol env 2 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 - Phs1-Env1 + + Osc 1 - Phs env 1 - Phs1-Env2 + + Osc 1 - Phs env 2 - Phs1-LFO1 + + Osc 1 - Phs LFO 1 - Phs1-LFO2 + + Osc 1 - Phs LFO 2 - Phs2-Env1 + + Osc 2 - Phs env 1 - Phs2-Env2 + + Osc 2 - Phs env 2 - Phs2-LFO1 + + Osc 2 - Phs LFO 1 - Phs2-LFO2 + + Osc 2 - Phs LFO 2 - Phs3-Env1 + + Osc 3 - Phs env 1 - Phs3-Env2 + + Osc 3 - Phs env 2 - Phs3-LFO1 + + Osc 3 - Phs LFO 1 - Phs3-LFO2 + + Osc 3 - Phs LFO 2 - Pit1-Env1 + + Osc 1 - Pit env 1 - Pit1-Env2 + + Osc 1 - Pit env 2 - Pit1-LFO1 + + Osc 1 - Pit LFO 1 - Pit1-LFO2 + + Osc 1 - Pit LFO 2 - Pit2-Env1 + + Osc 2 - Pit env 1 - Pit2-Env2 + + Osc 2 - Pit env 2 - Pit2-LFO1 + + Osc 2 - Pit LFO 1 - Pit2-LFO2 + + Osc 2 - Pit LFO 2 - Pit3-Env1 + + Osc 3 - Pit env 1 - Pit3-Env2 + + Osc 3 - Pit env 2 - Pit3-LFO1 + + Osc 3 - Pit LFO 1 - Pit3-LFO2 + + Osc 3 - Pit LFO 2 - PW1-Env1 + + Osc 1 - PW env 1 - PW1-Env2 + + Osc 1 - PW env 2 - PW1-LFO1 + + Osc 1 - PW LFO 1 - PW1-LFO2 + + Osc 1 - PW LFO 2 - Sub3-Env1 + + Osc 3 - Sub env 1 - Sub3-Env2 + + Osc 3 - Sub env 2 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 - Sub3-LFO2 + + 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 @@ -4624,278 +8691,240 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MonstroView + Operators view - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - + Matrix view - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - + + + Volume - + الحجم + + + Panning - + التوزيع + + + Coarse detune + + + semitones - Finetune left + + + Fine tune left + + + + cents - Finetune right + + + 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 @@ -4903,117 +8932,145 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator MultitapEchoControlDialog + Length + Step length: + Dry - Dry Gain: + + Dry gain: + Stages - Lowpass stages: + + Low-pass stages: + Swap inputs - Swap left and right input channel for reflections + + Swap left and right input channels for reflections NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune - Channel 1 Volume + + Channel 1 volume - Channel 1 Envelope length + + Channel 1 envelope length - Channel 1 Duty cycle + + Channel 1 duty cycle - Channel 1 Sweep amount + + Channel 1 sweep amount - Channel 1 Sweep rate + + Channel 1 sweep rate + Channel 2 Coarse detune + Channel 2 Volume - Channel 2 Envelope length + + Channel 2 envelope length - Channel 2 Duty cycle + + Channel 2 duty cycle - Channel 2 Sweep amount + + Channel 2 sweep amount - Channel 2 Sweep rate + + Channel 2 sweep rate - Channel 3 Coarse detune + + Channel 3 coarse detune - Channel 3 Volume + + Channel 3 volume - Channel 4 Volume + + Channel 4 volume - Channel 4 Envelope length + + Channel 4 envelope length - Channel 4 Noise frequency + + Channel 4 noise frequency - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep + Master volume - + الحجم الرئيسي + Vibrato @@ -5021,196 +9078,447 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 + + Master volume + الحجم الرئيسي + + + + Vibrato + + + + + OpulenzInstrument + + + Patch - Vibrato + + 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 volume - - - - Osc %1 panning - - - - 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 - - - + 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 + OK حسناً + Cancel @@ -5218,100 +9526,103 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - - - - Click here to open another patch-file. Loop and Tune settings are not reset. + + Open patch + Loop + Loop mode - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - - - + Tune + Tune mode - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - - - + No file selected + Open patch file + Patch-Files (*.pat) - PatternView + MidiClipView + Open in piano-roll + + Set as ghost in piano-roll + + + + Clear all notes + Reset name + Change name + Add steps - + أضف خطوات + Remove steps - - - - use mouse wheel to set velocity of a step - - - - double-click to open in Piano Roll - + أزل خطوات + 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. @@ -5319,10 +9630,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK + LFO Controller @@ -5330,326 +9643,518 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog + BASE - Base amount: - - - - Modulation amount: - - - - Attack: - - - - Release: + + Base: + AMNT + + Modulation amount: + + + + MULT - Amount Multiplicator: + + Amount multiplicator: + ATCK + + Attack: + + + + DCAY + + Release: + + + + + TRSH + + + + Treshold: - TRSH + + Mute output + + + + + Absolute value PeakControllerEffectControls + Base value + Modulation amount - Mute output - - - + Attack + Release - Abs Value - - - - Amount Multiplicator - - - + Treshold + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - - - - Last note - - - - Note lock - - - + Note Velocity + Note Panning + Mark/unmark current semitone - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - - Velocity: %1% - - - - Panning: %1% left - - - - Panning: %1% right - - - - Panning: center - - - - Please enter a new value between %1 and %2: - - - + 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 - Play/pause current pattern (Space) + + 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 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Detune mode (Shift+T) - - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - - - - Copy selected notes (%1+C) - - - - Paste notes from clipboard (%1+V) - - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. + + 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 pattern + + + Piano-Roll - no clip - Quantize + + + 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"! @@ -5657,144 +10162,1145 @@ Reason: "%2" PluginBrowser + + Instrument Plugins + موصلات الآلات + + + Instrument browser + Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Instrument Plugins + + 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 + + + + + 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 + + + + + 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 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 + + Project Notes - Put down your project notes here. + + 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... @@ -5802,720 +11308,1751 @@ Reason: "%2" ProjectRenderer - WAV-File (*.wav) + + WAV (*.wav) - Compressed OGG-File (*.ogg) + + 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: + + File: %1 - File: %1 + + File: + + RecentProjectsMenu + + + &Recently Opened Projects + مشاريع مفتوحة حديثا + + 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 + + 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) - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - SampleTCOView + SampleClipView - double-click to select sample + + 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 - Sample track - - - + Volume + الحجم + + + + Panning + التوزيع + + + + Mixer channel - Panning + + + Sample track SampleTrackView + Track volume + Channel volume: + VOL صوت + Panning - + التوزيع + Panning: + التوزيع: + + + + PAN + التوزيع + + + + Channel %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 - Setup LMMS + + Reset to default value - General settings + + Use built-in NaN handler - BUFFER SIZE + + Settings + الأوضاع + + + + + General - Reset to default-value - - - - MISC - - - - Enable tooltips - - - - Show restart warning after changing settings + + Graphical user interface (GUI) + Display volume as dBFS - Compress project files per default + + Enable tooltips - One instrument track window mode + + Enable master oscilloscope by default - HQ-mode for output audio-device + + Enable all note labels in piano roll - Compact track buttons + + 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 - Enable note labels in piano roll - - - - Enable waveform display by default - - - + Keep effects running even without input - Create backup file when saving a project + + + Audio - LANGUAGE + + Audio interface - Paths + + HQ mode for output audio device + + Buffer size + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + LMMS working directory - VST-plugin directory + + VST plugins directory + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + Background artwork - STK rawwave directory + + Some changes require restarting. - Default Soundfont File + + Autosave interval: %1 - Performance settings + + Choose the LMMS working directory - UI effects vs. performance + + Choose your VST plugins directory - Smooth scroll in Song Editor + + Choose your LADSPA plugins directory - Show playback cursor in AudioFileProcessor + + Choose your default SF2 - Audio settings + + Choose your theme directory - AUDIO INTERFACE + + Choose your background picture - MIDI settings - - - - MIDI INTERFACE + + + Paths + OK حسناً + Cancel - Restart LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - - - + Frames: %1 Latency: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - - - - Choose your VST-plugin directory - - - - Choose artwork-theme directory - - - - Choose LADSPA plugin directory - - - - Choose STK rawwave directory - - - - Choose default SoundFont - - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - - - - Directories - - - - Themes directory - - - - GIG directory - - - - SF2 directory - - - - LADSPA plugin directories - - - - Auto save - - - + Choose your GIG directory + Choose your SF2 directory + minutes + minute - Enable auto-save - - - - Allow auto-save while playing - - - + Disabled + + + SidInstrument - Auto-save interval: %1 + + Cutoff frequency - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + Resonance + + + + + 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 + + + + + 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 Song + Tempo - + درجة السرعة + Master volume - + الحجم الرئيسي + Master pitch + الطبقة الرئيسية + + + + Aborting project load - Project saved + + Project file contains local paths to plugins, which could be used to run malicious code. - The project %1 is now saved. - - - - Project NOT saved. - - - - The project %1 was not saved! - - - - Import file - - - - MIDI sequences - - - - Hydrogen projects - - - - All file types - - - - Empty project - - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - - - - Select directory for writing exported tracks... - - - - untitled - - - - Select file for project-export... - - - - The following errors occured while loading: - - - - MIDI File (*.mid) + + Can't load project: Project file contains local paths to plugins. + LMMS Error report + تقرير أخطاء LMMS + + + + (repeated %1 times) - Save project + + The following errors occurred while loading: SongEditor + Could not open file - Could not write 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. - - - - Tempo - - - - TEMPO/BPM - - - - tempo of song - - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - High quality mode - - - - Master volume - - - - master volume - - - - Master pitch - - - - master pitch - - - - Value: %1% - - - - Value: %1 semitones - - - - 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. - - - - template - - - - project - + يبدو أن الملف %1 يحتوي أخطاء و لذالك لا يمكن تحميله. + Version difference - This %1 was created with LMMS %2. + + 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) - Add beat/bassline - - - - Add sample-track - - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum + + Horizontal zooming - Linear Y axis + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum + + Hint - Linear Y axis - - - - Channel mode + + Move recording curser using <Left/Right> arrows SubWindow + Close + Maximize + Restore @@ -6523,81 +13060,110 @@ Remember to also save your project manually. You can choose to disable saving wh 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 @@ -6605,30 +13171,37 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units + + Time units + MIN - + دقائق + SEC - + ثواني + MSEC - + مليثواني + BAR + BEAT + TICK @@ -6636,45 +13209,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - Enable/disable auto-scrolling + + Auto scrolling - Enable/disable loop-points + + Loop points - After stopping go back to begin + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - - Track + Mute + Solo @@ -6682,299 +13260,490 @@ Remember to also save your project manually. You can choose to disable saving wh 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... - TrackContentObject + Clip + Mute - TrackContentObjectView + ClipView + Current position - Hint - - - - Press <%1> and drag to make a copy. - - - + Current length - Press <%1> for free resizing. - - - + + %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. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Actions for this track + + Actions + + Mute + + Solo - Mute this track + + 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 - FX %1: %2 + + Channel %1: %2 + + Assign to new Mixer Channel + + + + Turn all recording on + Turn all recording off - Assign to new FX Channel + + Change color + غير اللون + + + + Reset color to default + أعد تعيين اللون إلى الأساسي + + + + Set random color + + + + + Clear clip colors TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 + + Modulate phase of oscillator 1 by oscillator 2 - Use amplitude modulation for modulating oscillator 1 with oscillator 2 + + Modulate amplitude of oscillator 1 by oscillator 2 - Mix output of oscillator 1 & 2 + + Mix output of oscillators 1 & 2 + Synchronize oscillator 1 with oscillator 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 + + Modulate frequency of oscillator 1 by oscillator 2 - Use phase modulation for modulating oscillator 2 with oscillator 3 + + Modulate phase of oscillator 2 by oscillator 3 - Use amplitude modulation for modulating oscillator 2 with oscillator 3 + + Modulate amplitude of oscillator 2 by oscillator 3 - Mix output of oscillator 2 & 3 + + Mix output of oscillators 2 & 3 + Synchronize oscillator 2 with oscillator 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 + + Modulate frequency of oscillator 2 by oscillator 3 + Osc %1 volume: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - - - + Osc %1 panning: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - - - + Osc %1 coarse detuning: + semitones - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - - - + Osc %1 fine detuning left: + + cents - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 fine detuning right: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 phase-offset: + + degrees - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - - - + Osc %1 stereo phase-detuning: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. + + Sine wave - Use a sine-wave for current oscillator. + + Triangle wave - Use a triangle-wave for current oscillator. + + Saw wave - Use a saw-wave for current oscillator. + + Square wave - Use a square-wave for current oscillator. + + Moog-like saw wave - Use a moog-like saw-wave for current oscillator. + + Exponential wave - Use an exponential wave for current oscillator. + + White noise - Use white-noise for current oscillator. + + User-defined wave + + + + + VecControls + + + Display persistence amount - Use a user-defined waveform for current oscillator. + + 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? @@ -6982,156 +13751,117 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - Open other VST-plugin + + + Open VST plugin - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. + + Control VST plugin from LMMS host - Show/hide GUI - - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - - - - Turn off all notes - - - - Open VST-plugin - - - - DLL-files (*.dll) - - - - EXE-files (*.exe) - - - - No VST-plugin loaded - - - - Control VST-plugin from LMMS host - - - - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset + Previous (-) - Click here, if you want to switch to another VST-plugin preset program. - - - + Save preset - Click here, if you want to save current VST-plugin preset program. - - - + Next (+) - Click here to select presets that are currently loaded in VST. + + Show/hide GUI + أظهر/أخف و.م.ر + + + + Turn off all notes + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + No VST plugin loaded + + + + Preset + by + - VST plugin control - - VisualizationWidget - - click to enable/disable visualization of master-output - - - - Click to enable - - - VstEffectControlDialog + Show/hide + أظهر/أخف + + + + Control VST plugin from LMMS host - Control VST-plugin from LMMS host - - - - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset + Previous (-) - Click here, if you want to switch to another VST-plugin preset program. - - - + Next (+) - Click here to select presets that are currently loaded in VST. - - - + Save preset - Click here, if you want to save current VST-plugin preset program. - - - + + Effect by: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7139,173 +13869,207 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - Loading plugin + + + The VST plugin %1 could not be loaded. + Open Preset + + Vst Plugin Preset (*.fxp *.fxb) + : default - - - - " - - - - ' - + : الأساسي + Save Preset + .fxp + .FXP + .FXB + .fxb - Please wait while loading VST plugin... + + Loading plugin - The VST plugin %1 could not be loaded. + + 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 @@ -7313,2638 +14077,2251 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - Select oscillator A1 - - - - Select oscillator A2 - - - - Select oscillator B1 - - - - Select oscillator B2 - - - - Mix output of A2 to A1 - - - - Modulate amplitude of A1 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with output of B2 - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - Load waveform - - - - Click to load a waveform from a sample file - - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - - - - Click to normalize - - - - Invert - - - - Click to invert - - - - Smooth - - - - Click to smooth - - - - Sine wave - - - - Click for sine wave - - - - Triangle wave - - - - Click for triangle wave - - - - Click for saw wave - - - - Square wave - - - - Click for square wave - - - + + + + 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 + + + + + Xpressive + + + 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 frequency - Filter Resonance + + Filter resonance + Bandwidth - FM Gain + + FM gain - Resonance Center Frequency + + Resonance center frequency - Resonance Bandwidth + + Resonance bandwidth - Forward MIDI Control Change Events + + Forward MIDI control change events ZynAddSubFxView - Show GUI - - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - - - + Portamento: + PORT - Filter Frequency: + + Filter frequency: + FREQ - Filter Resonance: + + Filter resonance: + RES + Bandwidth: + BW - FM Gain: + + FM gain: + FM GAIN + Resonance center frequency: + RES CF + Resonance bandwidth: + RES BW - Forward MIDI Control Changes + + Forward MIDI control changes + + + + + Show GUI - audioFileProcessor + AudioFileProcessor + Amplify + Start of sample + End of sample - Reverse sample - - - - Stutter - - - + Loopback point + + Reverse sample + اعكس العينة + + + Loop mode + + Stutter + + + + Interpolation mode + None + Linear + Sinc + Sample not found: %1 - bitInvader + BitInvader - Samplelength + + Sample length - bitInvaderView + BitInvaderView - Sample Length - - - - Sine wave - - - - Triangle wave - - - - Saw wave - - - - Square wave - - - - White noise wave - - - - User defined wave - - - - Smooth - - - - Click here to smooth waveform. - - - - Interpolation - - - - Normalize + + Sample length + Draw your own waveform here by dragging your mouse on this graph. - Click for a sine-wave. + + + Sine wave - Click here for a triangle-wave. + + + Triangle wave - Click here for a saw-wave. + + + Saw wave - Click here for a square-wave. + + + Square wave - Click here for white-noise. + + + White noise - Click here for a user-defined shape. - - - - - dynProcControlDialog - - INPUT - - - - Input gain: - - - - OUTPUT - - - - Output gain: - - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Reset waveform - - - - Click here to reset the wavegraph back to default + + + User-defined wave + + Smooth waveform - Click here to apply smoothing to wavegraph + + Interpolation - Increase wavegraph amplitude by 1dB + + Normalize + + + + + DynProcControlDialog + + + INPUT - Click here to increase wavegraph amplitude by 1dB + + Input gain: - Decrease wavegraph amplitude by 1dB + + OUTPUT - Click here to decrease wavegraph amplitude by 1dB + + Output gain: - Stereomode Maximum + + 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 - Stereomode Average + + Stereo mode: average + Process based on the average of both stereo channels - Stereomode Unlinked + + Stereo mode: unlinked + Process each stereo channel independently - dynProcControls + DynProcControls + Input gain + Output gain + Attack time + Release time + Stereo mode - - fxLineLcdSpinBox - - Assign to: - - - - New FX Channel - - - graphModel + Graph - kickerInstrument + KickerInstrument + Start frequency + End frequency - Gain - - - + Length - Distortion Start + + Start distortion - Distortion End + + End distortion - Envelope Slope + + Gain + + Envelope slope + + + + Noise + Click - Frequency Slope + + Frequency slope + Start from note + End to note - kickerInstrumentView + KickerInstrumentView + Start frequency: + End frequency: + + Frequency slope: + + + + Gain: - Frequency Slope: + + Envelope length: - Envelope Length: - - - - Envelope Slope: + + Envelope slope: + Click: + Noise: - Distortion Start: + + Start distortion: - Distortion End: + + End distortion: - ladspaBrowserView + LadspaBrowserView + + Available Effects + + Unavailable Effects + + Instruments + + Analysis Tools + + Don't know - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - - - + Type: - ladspaDescription + LadspaDescription + Plugins + Description - ladspaPortDialog + LadspaPortDialog + Ports + Name + Rate + Direction + Type + Min < Default < Max - + الأدنى < الأساسية < الأعلى + Logarithmic + SR Dependent + Audio + Control + Input + Output + Toggled + Integer + Float + + Yes - lb302Synth + Lb302Synth + VCF Cutoff Frequency + VCF Resonance + VCF Envelope Mod + VCF Envelope Decay + Distortion + Waveform + Slide Decay + Slide + Accent + Dead + 24dB/oct Filter - lb302SynthView + 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 + MalletsInstrument + Hardness + Position - Vibrato Gain + + Vibrato gain - Vibrato Freq + + Vibrato frequency - Stick Mix + + Stick mix + Modulator + Crossfade - LFO Speed + + LFO speed - LFO Depth + + LFO depth + ADSR + Pressure + Motion + Speed + Bowed + Spread + Marimba + Vibraphone + Agogo - Wood1 + + Wood 1 + Reso - Wood2 + + Wood 2 + Beats - Two Fixed + + Two fixed + Clump - Tubular Bells + + Tubular bells - Uniform Bar + + Uniform bar - Tuned Bar + + Tuned bar + Glass - Tibetan Bowl + + Tibetan bowl - malletsInstrumentView + MalletsInstrumentView + Instrument + Spread + Spread: - Hardness - - - - Hardness: - - - - Position - - - - Position: - - - - Vib Gain - - - - Vib Gain: - - - - Vib Freq - - - - Vib Freq: - - - - Stick Mix - - - - Stick Mix: - - - - Modulator - - - - Modulator: - - - - Crossfade - - - - Crossfade: - - - - LFO Speed - - - - LFO Speed: - - - - LFO Depth - - - - LFO Depth: - - - - ADSR - - - - ADSR: - - - - Pressure - - - - Pressure: - - - - Speed - - - - Speed: - - - + 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 + ManageVSTEffectView + - VST parameter control - VST Sync - - - - Click here if you want to synchronize all parameters with VST plugin. + + VST sync + + Automated - - - - Click here if you want to display automated parameters only. - + مأتمت + Close - - Close VST effect knob-controller window. - - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control + VST Sync - Click here if you want to synchronize all parameters with VST plugin. - - - + + Automated - - - - Click here if you want to display automated parameters only. - + مأتمت + Close - - Close VST plugin knob-controller window. - - - opl2instrument - - Patch - - - - Op 1 Attack - - - - Op 1 Decay - - - - Op 1 Sustain - - - - Op 1 Release - - - - Op 1 Level - - - - Op 1 Level Scaling - - - - Op 1 Frequency Multiple - - - - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - - - - Vibrato Depth - - - - Tremolo Depth - - - - - opl2instrumentView - - Attack - - - - Decay - - - - Release - - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion + Volume - + الحجم - organicInstrumentView + OrganicInstrumentView + Distortion: + Volume: مستوى الصوت: + Randomise + + Osc %1 waveform: + Osc %1 volume: + Osc %1 panning: - cents - - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - - + Osc %1 stereo detuning + + cents + + + + Osc %1 harmonic: - FreeBoyInstrument - - Sweep time - - - - Sweep direction - - - - Sweep RtShift amount - - - - Wave Pattern Duty - - - - Channel 1 volume - - - - Volume sweep direction - - - - Length of each step in sweep - - - - Channel 2 volume - - - - Channel 3 volume - - - - Channel 4 volume - - - - 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 - - - - Shift Register width - - - - - FreeBoyInstrumentView - - Sweep Time: - - - - Sweep Time - - - - Sweep RtShift amount: - - - - Sweep RtShift amount - - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - - - - Length of each step in sweep: - - - - Length of each step in sweep - - - - Wave pattern duty - - - - Square Channel 2 Volume: - - - - Square Channel 2 Volume - - - - Wave Channel Volume: - - - - Wave 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 - - - - Channel1 to SO1 (Right) - - - - Channel2 to SO1 (Right) - - - - Channel3 to SO1 (Right) - - - - Channel4 to SO1 (Right) - - - - Channel1 to SO2 (Left) - - - - Channel2 to SO2 (Left) - - - - Channel3 to SO2 (Left) - - - - Channel4 to SO2 (Left) - - - - Wave Pattern - - - - The amount of increase or decrease in frequency - - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - - - - Draw the wave here - - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank + Program selector + Patch + Name + OK حسناً + Cancel - pluginBrowser - - no description - - - - Incomplete monophonic imitation tb303 - - - - Plugin for freely manipulating stereo output - - - - Plugin for controlling knobs with sound peaks - - - - Plugin for enhancing stereo separation of a stereo input file - - - - List installed LADSPA plugins - - - - GUS-compatible patch instrument - - - - Additive Synthesizer for organ-like sounds - - - - Tuneful things to bang on - - - - VST-host for using VST(i)-plugins within LMMS - - - - Vibrating string modeler - - - - plugin for using arbitrary LADSPA-effects inside LMMS. - - - - Filter for importing MIDI-files into LMMS - - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - - - - Player for SoundFont files - - - - Emulation of GameBoy (TM) APU - - - - Customizable wavetable synthesizer - - - - Embedded ZynAddSubFX - - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - - - - LMMS port of sfxr - - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - - - - Carla Rack Instrument - - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - - - - plugin for using arbitrary VST effects inside LMMS. - - - - Graphical spectrum analyzer plugin - - - - A NES-like synthesizer - - - - A native delay plugin - - - - Player for GIG files - - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - - - - - sf2Instrument + Sf2Instrument + Bank + Patch + Gain + Reverb - Reverb Roomsize + + Reverb room size - Reverb Damping + + Reverb damping - Reverb Width + + Reverb width - Reverb Level + + Reverb level + Chorus - Chorus Lines + + Chorus voices - Chorus Level + + Chorus level - Chorus Speed + + Chorus speed - Chorus Depth + + Chorus depth + A soundfont %1 could not be loaded. - sf2InstrumentView - - Open other SoundFont file - - - - Click here to open another SF2 file - - - - Choose the patch - - - - Gain - - - - Apply reverb (if supported) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - - - - Reverb Roomsize: - - - - Reverb Damping: - - - - Reverb Width: - - - - Reverb Level: - - - - Apply chorus (if supported) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - - - - Chorus Lines: - - - - Chorus Level: - - - - Chorus Speed: - - - - Chorus Depth: - - + Sf2InstrumentView + + Open SoundFont file - SoundFont2 Files (*.sf2) + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) - sfxrInstrument + SfxrInstrument - Wave Form + + Wave - sidInstrument + StereoEnhancerControlDialog - Cutoff - - - - Resonance - - - - Filter type - - - - Voice 3 off - - - - Volume - - - - Chip model - - - - - sidInstrumentView - - Volume: - مستوى الصوت: - - - Resonance: - - - - Cutoff frequency: - - - - High-Pass filter - - - - Band-Pass filter - - - - Low-Pass filter - - - - Voice3 Off - - - - MOS6581 SID - - - - MOS8580 SID - - - - Attack: - - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - - - - Decay: - - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - Sustain: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - Release: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - Pulse Width: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - Coarse: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - Pulse Wave - - - - Triangle Wave - - - - SawTooth - - - - Noise - - - - Sync - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - Ring-Mod - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - Filtered - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - Test - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - - - - - stereoEnhancerControlDialog - - WIDE + + WIDTH + Width: - stereoEnhancerControls + StereoEnhancerControls + Width - stereoMatrixControlDialog + StereoMatrixControlDialog + Left to Left Vol: + Left to Right Vol: + Right to Left Vol: + Right to Right Vol: - stereoMatrixControls + StereoMatrixControls + Left to Left + Left to Right + Right to Left + Right to Right - vestigeInstrument + VestigeInstrument + Loading plugin - Please wait while loading VST-plugin... + + Please wait while loading the VST plugin... - vibed + Vibed + String %1 volume + String %1 stiffness + Pick %1 position + Pickup %1 position - Pan %1 + + String %1 panning - Detune %1 + + String %1 detune - Fuzziness %1 + + String %1 fuzziness - Length %1 + + String %1 length + Impulse %1 - Octave %1 + + String %1 - vibedView + VibedView - Volume: - مستوى الصوت: - - - The 'V' knob sets the volume of the selected string. + + String volume: + String stiffness: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - - - + Pick position: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - - - + Pickup position: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. + + String panning: - Pan: + + String detune: - The Pan knob determines the location of the selected string in the stereo field. + + String fuzziness: - Detune: + + String length: - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - - - - Fuzziness: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - - - - Length: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - Impulse or initial state - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. + + Impulse + Octave - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - - - + Impulse Editor - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - - - + Enable waveform - Click here to enable/disable waveform. + + Enable/disable string + String - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - - - + + Sine wave + + Triangle wave + + Saw wave + + Square wave - White noise wave + + + White noise - User defined wave + + + User-defined wave - Smooth + + + Smooth waveform - Click here to smooth waveform. - - - - Normalize - - - - Click here to normalize waveform. - - - - Use a sine-wave for current oscillator. - - - - Use a triangle-wave for current oscillator. - - - - Use a saw-wave for current oscillator. - - - - Use a square-wave for current oscillator. - - - - Use white-noise for current oscillator. - - - - Use a user-defined waveform for current oscillator. + + + Normalize waveform - voiceObject + 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 + WaveShaperControlDialog + INPUT + Input gain: + OUTPUT + Output gain: - Reset waveform + + + Reset wavegraph - Click here to reset the wavegraph back to default + + + Smooth wavegraph - Smooth waveform + + + Increase wavegraph amplitude by 1 dB - Click here to apply smoothing to wavegraph - - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB + Clip input - Clip input signal to 0dB + + Clip input signal to 0 dB - waveShaperControls + WaveShaperControls + Input gain + Output gain - \ No newline at end of file + diff --git a/data/locale/bs.ts b/data/locale/bs.ts index 410b601e2..506b401bd 100644 --- a/data/locale/bs.ts +++ b/data/locale/bs.ts @@ -2,69 +2,69 @@ AboutDialog - + About LMMS - + LMMS - + Version %1 (%2/%3, Qt %4, %5) - + About - + LMMS - easy music production for everyone - + Copyright © %1 - + <html><head/><body><p><a href="http://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.io</span></a></p></body></html> - + Authors - + Involved - + Contributors ordered by number of commits: - + Translation - + 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! - + License @@ -151,98 +151,98 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorView - + Open other sample - + Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - + Reverse sample - + If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - + Disable loop - + This button disables looping. The sample plays only once from start to end. - - + + Enable loop - + This button enables forwards-looping. The sample loops between the end point and the loop point. - + This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - + Continue sample playback across notes - + Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - + Amplify: - + With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - + Startpoint: - + With this knob you can set the point where AudioFileProcessor should begin playing your sample. - + Endpoint: - + With this knob you can set the point where AudioFileProcessor should stop playing your sample. - + Loopback point: - + With this knob you can set the point where the loop starts. @@ -250,7 +250,7 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorWaveView - + Sample length: @@ -410,7 +410,7 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditor - Please open an automation pattern with the context menu of a control! + Please open an automation clip with the context menu of a control! @@ -428,7 +428,7 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditorWindow - Play/pause current pattern (Space) + Play/pause current clip (Space) @@ -438,7 +438,7 @@ If you're interested in translating LMMS in another language or want to imp - Stop playing of current pattern (Space) + Stop playing of current clip (Space) @@ -588,7 +588,7 @@ If you're interested in translating LMMS in another language or want to imp - Automation Editor - no pattern + Automation Editor - no clip @@ -598,73 +598,73 @@ If you're interested in translating LMMS in another language or want to imp - Model is already connected to this pattern. + Model is already connected to this clip. - AutomationPattern + AutomationClip - + Drag a control while pressing <%1> - AutomationPatternView + AutomationClipView - + double-click to open this pattern in automation editor - + 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 pattern. + + Model is already connected to this clip. @@ -677,105 +677,105 @@ If you're interested in translating LMMS in another language or want to imp - BBEditor + PatternEditor - + Beat+Bassline Editor - + Play/pause current beat/bassline (Space) - + Stop playback of current beat/bassline (Space) - + Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - + Click here to stop playing of current beat/bassline. - + Beat selector - + Track and step actions - + Add beat/bassline - + Add automation-track - + Remove steps - + Add steps - + Clone Steps - BBTCOView + PatternClipView - + Open in Beat+Bassline-Editor - + Reset name - + Change name - + Change color - + Reset color to default - BBTrack + PatternTrack - + Beat/Bassline %1 - + Clone of %1 @@ -952,12 +952,12 @@ If you're interested in translating LMMS in another language or want to imp CarlaInstrumentView - + Show GUI - + Click here to show or hide the graphical user interface (GUI) of Carla. @@ -973,73 +973,73 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -1047,22 +1047,22 @@ If you're interested in translating LMMS in another language or want to imp ControllerRackView - + Controller Rack - + Add - + Confirm Delete - + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. @@ -1070,27 +1070,27 @@ If you're interested in translating LMMS in another language or want to imp ControllerView - + Controls - + Controllers are able to automate the value of a knob, slider, and other controls. - + Rename controller - + Enter the new name for this controller - + &Remove this plugin @@ -1571,12 +1571,12 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView - + EFFECTS CHAIN - + Add effect @@ -1584,22 +1584,22 @@ If you're interested in translating LMMS in another language or want to imp EffectSelectDialog - + Add effect - + Name - + Description - + Author @@ -1607,67 +1607,67 @@ If you're interested in translating LMMS in another language or want to imp EffectView - + Toggles the effect on or off. - + On/Off - + W/D - + Wet Level: - + The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - + DECAY - + Time: - + The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - + GATE - + Gate: - + The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - + Controls - + Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. The On/Off switch allows you to bypass a given plugin at any point in time. @@ -1684,17 +1684,17 @@ Right clicking will bring up a context menu where you can change the order in wh - + Move &up - + Move &down - + &Remove this plugin @@ -1775,226 +1775,226 @@ Right clicking will bring up a context menu where you can change the order in wh EnvelopeAndLfoView - - + + DEL - + Predelay: - + Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - - + + ATT - + Attack: - + Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - + HOLD - + Hold: - + Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - + DEC - + Decay: - + Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - + SUST - + Sustain: - + Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - + REL - + Release: - + Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - - + + AMT - - + + Modulation amount: - + Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - + LFO predelay: - + Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - + LFO- attack: - + Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - + SPD - + LFO speed: - + Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - + Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - + Click here for a sine-wave. - + Click here for a triangle-wave. - + Click here for a saw-wave for current. - + Click here for a square-wave. - + Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - + Click here for random wave. - + FREQ x 100 - + Click here if the frequency of this LFO should be multiplied by 100. - + multiply LFO-frequency by 100 - + MODULATE ENV-AMOUNT - + Click here to make the envelope-amount controlled by this LFO. - + control envelope-amount by this LFO - + ms/LFO: - + Hint - + Drag a sample from somewhere and drop it in this window. @@ -2340,177 +2340,177 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog - + Export project - + Output - + File format: - + Samplerate: - + 44100 Hz - + 48000 Hz - + 88200 Hz - + 96000 Hz - + 192000 Hz - + Bitrate: - + 64 KBit/s - + 128 KBit/s - + 160 KBit/s - + 192 KBit/s - + 256 KBit/s - + 320 KBit/s - + Depth: - + 16 Bit Integer - + 32 Bit Float - + Please note that not all of the parameters above apply for all file formats. - + Quality settings - + Interpolation: - + Zero Order Hold - + Sinc Fastest - + Sinc Medium (recommended) - + Sinc Best (very slow!) - + Oversampling (use with care!): - + 1x (None) - + 2x - + 4x - + 8x - + Export as loop (remove end silence) - + Export between loop markers - + Start - + Cancel @@ -2526,22 +2526,22 @@ Please make sure you have write-permission to the file and the directory contain - + Export project to %1 - + Error - + Error while determining file-encoder device. Please try to choose a different output format. - + Rendering: %1% @@ -2698,112 +2698,112 @@ Please make sure you have write-permission to the file and the directory contain - FxLine + MixerLine - + Channel send amount - - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. + + The Mixer channel receives input from one or more instrument tracks. + It in turn can be routed to multiple other mixer channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. +In order to route the channel to another channel, select the mixer channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. +You can remove and move mixer channels in the context menu, which is accessed by right-clicking the mixer channel. - + Move &left - + Move &right - + Rename &channel - + R&emove channel - + Remove &unused channels - FxMixer + Mixer - + Master - - - - FX %1 + + + + Channel %1 - FxMixerView + MixerView - - FX-Mixer + + Mixer - - FX Fader %1 + + Fader %1 - + Mute - - Mute this FX channel + + Mute this mixer channel - + Solo - - Solo FX channel + + Solo mixer channel - - Rename FX channel + + Rename mixer channel - - Enter the new name for this FX channel + + Enter the new name for this mixer channel - FxRoute + MixerRoute - - + + Amount to send from channel %1 to channel %2 @@ -3019,87 +3019,87 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggioView - + ARPEGGIO - + An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - + RANGE - + Arpeggio range: - + octave(s) - + Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - + TIME - + Arpeggio time: - + ms - + Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - + GATE - + Arpeggio gate: - + % - + Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - + Chord: - + Direction: - + Mode: @@ -3586,32 +3586,32 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionNoteStackingView - + STACKING - + Chord: - + RANGE - + Chord range: - + octave(s) - + Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. @@ -3619,59 +3619,59 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMidiIOView - + ENABLE MIDI INPUT - - + + CHANNEL - - + + VELOCITY - + ENABLE MIDI OUTPUT - + PROGRAM - + NOTE - + 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 @@ -3679,12 +3679,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView - + MASTER PITCH - + Enables the use of Master Pitch @@ -3851,62 +3851,62 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView - + TARGET - + These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - + FILTER - + Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - + FREQ - + cutoff frequency: - + Hz - + Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - + RESO - + Resonance: - + Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - + Envelopes, LFOs and filters are not supported by the current instrument. @@ -3914,7 +3914,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack - + Default preset @@ -3957,7 +3957,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX channel + Mixer channel @@ -4015,7 +4015,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX %1: %2 + Channel %1: %2 @@ -4093,13 +4093,13 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX channel + Mixer channel - FX + CHANNEL @@ -4200,17 +4200,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView - + Link channels - + Value: - + Sorry, no help available. @@ -4416,7 +4416,7 @@ Double click to pick a file. - LmmsCore + Engine Generating wavetables @@ -4780,12 +4780,12 @@ Please make sure you have write-access to the file and try again. - Show/hide FX Mixer + Show/hide Mixer - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. + Click here to show or hide the Mixer. The Mixer is a very powerful tool for managing effects for your song. You can insert effects into different mixer-channels. @@ -4911,7 +4911,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. - FX Mixer + Mixer @@ -5079,595 +5079,595 @@ Please visit http://lmms.sf.net/wiki for documentation on 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 - + Osc2-3 modulation - + Selected view - + Vol1-Env1 - + Vol1-Env2 - + Vol1-LFO1 - + Vol1-LFO2 - + Vol2-Env1 - + Vol2-Env2 - + Vol2-LFO1 - + Vol2-LFO2 - + Vol3-Env1 - + Vol3-Env2 - + Vol3-LFO1 - + Vol3-LFO2 - + Phs1-Env1 - + Phs1-Env2 - + Phs1-LFO1 - + Phs1-LFO2 - + Phs2-Env1 - + Phs2-Env2 - + Phs2-LFO1 - + Phs2-LFO2 - + Phs3-Env1 - + Phs3-Env2 - + Phs3-LFO1 - + Phs3-LFO2 - + Pit1-Env1 - + Pit1-Env2 - + Pit1-LFO1 - + Pit1-LFO2 - + Pit2-Env1 - + Pit2-Env2 - + Pit2-LFO1 - + Pit2-LFO2 - + Pit3-Env1 - + Pit3-Env2 - + Pit3-LFO1 - + Pit3-LFO2 - + PW1-Env1 - + PW1-Env2 - + PW1-LFO1 - + PW1-LFO2 - + Sub3-Env1 - + Sub3-Env2 - + Sub3-LFO1 - + Sub3-LFO2 - - + + 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 @@ -5675,24 +5675,24 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MonstroView - + Operators view - + The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - + Matrix view - + The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. @@ -5701,407 +5701,407 @@ Each modulation target has 4 knobs, one for each modulator. By default the knobs - - - + + + Volume - - - + + + Panning - - - + + + Coarse detune - - - + + + semitones - - + + Finetune left - - - - + + + + cents - - + + Finetune 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 Osc2 with Osc3 - + Modulate amplitude of Osc3 with Osc2 - + Modulate frequency of Osc3 with Osc2 - + Modulate phase of Osc3 with Osc2 - + The CRS knob changes the tuning of oscillator 1 in semitone steps. - + The CRS knob changes the tuning of oscillator 2 in semitone steps. - + The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - + + + + FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - + + + The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - + The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - + Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - + Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - + + Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - + + Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - + Choose waveform for oscillator 2. - + Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - + Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - + The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - + In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - + In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - + In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - + In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - + Select the waveform for LFO 1. "Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - + Select the waveform for LFO 2. "Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - + + Attack causes the LFO to come on gradually from the start of the note. - - + + Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - + + PHS controls the phase offset of the LFO. - - + + PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - + + ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - + + HOLD controls how long the envelope stays at peak after the attack phase. - - + + DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - + + SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - + + REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - + + The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount @@ -6152,102 +6152,102 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 @@ -6255,155 +6255,155 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 @@ -6411,60 +6411,60 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 @@ -6515,100 +6515,100 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - + Open other patch - + Click here to open another patch-file. Loop and Tune settings are not reset. - + Loop - + Loop mode - + Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - + Tune - + Tune mode - + Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - + No file selected - + Open patch file - + Patch-Files (*.pat) - PatternView + MidiClipView - + use mouse wheel to set velocity of a step - + double-click to open in Piano Roll - + Open in piano-roll - + Clear all notes - + Reset name - + Change name - + Add steps - + Remove steps @@ -6647,62 +6647,62 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog - + BASE - + Base amount: - + AMNT - + Modulation amount: - + MULT - + Amount Multiplicator: - + ATCK - + Attack: - + DCAY - + Release: - + TRES - + Treshold: @@ -6710,42 +6710,42 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControls - + Base value - + Modulation amount - + Attack - + Release - + Treshold - + Mute output - + Abs Value - + Amount Multiplicator @@ -6834,7 +6834,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Please open a pattern by double-clicking on it! + Please open a clip by double-clicking on it! @@ -6848,7 +6848,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PianoRollWindow - Play/pause current pattern (Space) + Play/pause current clip (Space) @@ -6863,7 +6863,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Stop playing of current pattern (Space) + Stop playing of current clip (Space) @@ -7008,14 +7008,14 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Piano-Roll - no pattern + Piano-Roll - no clip PianoView - + Base note @@ -7078,147 +7078,147 @@ Reason: "%2" ProjectNotes - + Project notes - + Put down your 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... @@ -7239,34 +7239,34 @@ Reason: "%2" QWidget - + Name: - + Maker: - + Copyright: - + Requires Real Time: - - - + + + @@ -7274,9 +7274,9 @@ Reason: "%2" - - - + + + @@ -7284,25 +7284,25 @@ Reason: "%2" - + Real Time Capable: - + In Place Broken: - + Channels In: - + Channels Out: @@ -7321,7 +7321,7 @@ Reason: "%2" RenameDialog - + Rename... @@ -7385,7 +7385,7 @@ Reason: "%2" - SampleTCOView + SampleClipView double-click to select sample @@ -7472,325 +7472,325 @@ Reason: "%2" SetupDialog - + Setup LMMS - - + + General settings - + BUFFER SIZE - - + + Reset to default-value - + MISC - + Enable tooltips - + Show restart warning after changing settings - + Display volume as dBV - + Compress project files per default - + One instrument track window mode - + HQ-mode for output audio-device - + Compact track buttons - + Sync VST plugins to host playback - + Enable note labels in piano roll - + Enable waveform display by default - + Keep effects running even without input - + Create backup file when saving a project - + Reopen last project on start - + LANGUAGE - - + + Paths - + Directories - + LMMS working directory - + Themes directory - + Background artwork - + FL Studio installation directory - + VST-plugin directory - + GIG directory - + SF2 directory - + LADSPA plugin directories - + STK rawwave directory - + Default Soundfont File - - + + Performance settings - + Auto save - + Enable auto save feature - + UI effects vs. performance - + Smooth scroll in Song Editor - + Show playback cursor in AudioFileProcessor - - + + Audio settings - + AUDIO INTERFACE - - + + MIDI settings - + MIDI INTERFACE - + OK - + Cancel - + Restart LMMS - + Please note that most changes won't take effect until you restart LMMS! - + Frames: %1 Latency: %2 ms - + Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - + Choose LMMS working directory - + Choose your GIG directory - + Choose your SF2 directory - + Choose your VST-plugin directory - + Choose artwork-theme directory - + Choose FL Studio installation directory - + Choose LADSPA plugin directory - + Choose STK rawwave directory - + Choose default SoundFont - + Choose background artwork - + minutes - + minute - + Auto save interval: %1 %2 - + Set the time between automatic backup to %1. Remember to also save your project manually. - + Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - + Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. @@ -8082,32 +8082,32 @@ Remember to also save your project manually. - SpectrumAnalyzerControlDialog + SaControlsDialog - + Linear spectrum - + Linear Y axis - SpectrumAnalyzerControls + SaControls - + Linear spectrum - + Linear Y axis - + Channel mode @@ -8226,43 +8226,43 @@ Remember to also save your project manually. TimeLineWidget - + Enable/disable auto-scrolling - + Enable/disable loop-points - + After stopping go back to begin - + After stopping go back to position at which playing was started - + After stopping keep position - - + + Hint - + Press <%1> to disable magnetic loop points. - + Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. @@ -8283,19 +8283,12 @@ Remember to also save your project manually. TrackContainer - - Importing FLP-file... - - - - Cancel - Please wait... @@ -8335,7 +8328,7 @@ Please make sure you have read-permission to the file and the directory containi - TrackContentObject + Clip Mute @@ -8343,7 +8336,7 @@ Please make sure you have read-permission to the file and the directory containi - TrackContentObjectView + ClipView Current position @@ -8446,12 +8439,12 @@ Please make sure you have read-permission to the file and the directory containi - FX %1: %2 + Channel %1: %2 - Assign to new FX Channel + Assign to new mixer Channel @@ -8468,179 +8461,179 @@ Please make sure you have read-permission to the file and the directory containi TripleOscillatorView - + Use phase modulation for modulating oscillator 1 with oscillator 2 - + Use amplitude modulation for modulating oscillator 1 with oscillator 2 - + Mix output of oscillator 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - + Use frequency modulation for modulating oscillator 1 with oscillator 2 - + Use phase modulation for modulating oscillator 2 with oscillator 3 - + Use amplitude modulation for modulating oscillator 2 with oscillator 3 - + Mix output of oscillator 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - + Use frequency modulation for modulating oscillator 2 with oscillator 3 - + Osc %1 volume: - + With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - + Osc %1 panning: - + With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - + Osc %1 coarse detuning: - + semitones - + With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - + Osc %1 fine detuning left: - - + + cents - + With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - + Osc %1 fine detuning right: - + With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - + Osc %1 phase-offset: - - + + degrees - + With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - + Osc %1 stereo phase-detuning: - + With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - + Use a sine-wave for current oscillator. - + Use a triangle-wave for current oscillator. - + Use a saw-wave for current oscillator. - + Use a square-wave for current oscillator. - + Use a moog-like saw-wave for current oscillator. - + Use an exponential wave for current oscillator. - + Use white-noise for current oscillator. - + Use a user-defined waveform for current oscillator. @@ -8648,12 +8641,12 @@ Please make sure you have read-permission to the file and the directory containi VersionedSaveDialog - + Increment version number - + Decrement version number @@ -8661,126 +8654,126 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - + Open other VST-plugin - + Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - + Control VST-plugin from LMMS host - + Click here, if you want to control VST-plugin from host. - + Open VST-plugin preset - + Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - + Previous (-) - - + + Click here, if you want to switch to another VST-plugin preset program. - + Save preset - + Click here, if you want to save current VST-plugin preset program. - + Next (+) - + Click here to select presets that are currently loaded in VST. - + Show/hide GUI - + Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - + Turn off all notes - + Open VST-plugin - + DLL-files (*.dll) - + EXE-files (*.exe) - + No VST-plugin loaded - + Preset - + by - + - VST plugin control - VisualizationWidget + Oscilloscope - + click to enable/disable visualization of master-output - + Click to enable @@ -8858,59 +8851,59 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - + The VST plugin %1 could not be loaded. - + Open Preset - - + + Vst Plugin Preset (*.fxp *.fxb) - + : default - + " - + ' - + Save Preset - + .fxp - + .FXP - + .FXB - + .fxb @@ -8928,147 +8921,147 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -9076,248 +9069,248 @@ Please make sure you have read-permission to the file and the directory containi 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 with output of A2 - + Ring-modulate A1 and A2 - + Modulate phase of A1 with output of A2 - + Mix output of B2 to B1 - + Modulate amplitude of B1 with output of B2 - + Ring-modulate B1 and B2 - + Modulate phase of B1 with output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - + Load waveform - + Click to load a waveform from a sample file - + Phase left - + Click to shift phase by -15 degrees - + Phase right - + Click to shift phase by +15 degrees - + Normalize - + Click to normalize - + Invert - + Click to invert - + Smooth - + Click to smooth - + Sine wave - + Click for sine wave - - + + Triangle wave - + Click for triangle wave - + Click for saw wave - + Square wave - + Click for square wave @@ -9325,42 +9318,42 @@ Please make sure you have read-permission to the file and the directory containi ZynAddSubFxInstrument - + Portamento - + Filter Frequency - + Filter Resonance - + Bandwidth - + FM Gain - + Resonance Center Frequency - + Resonance Bandwidth - + Forward MIDI Control Change Events @@ -9368,398 +9361,398 @@ Please make sure you have read-permission to the file and the directory containi 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 - + Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - audioFileProcessor + 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 + BitInvader - + Samplelength - bitInvaderView + BitInvaderView - + Sample Length - + Draw your own waveform here by dragging your mouse on this graph. - + Sine wave - + Click for a sine-wave. - + Triangle wave - + Click here for a triangle-wave. - + Saw wave - + Click here for a saw-wave. - + Square wave - + Click here for a square-wave. - + White noise wave - + Click here for white-noise. - + User defined wave - + Click here for a user-defined shape. - + Smooth - + Click here to smooth waveform. - + Interpolation - + Normalize - dynProcControlDialog + DynProcControlDialog - + INPUT - + Input gain: - + OUTPUT - + Output gain: - + ATTACK - + Peak attack time: - + RELEASE - + Peak release time: - + Reset waveform - + Click here to reset the wavegraph back to default - + Smooth waveform - + Click here to apply smoothing to wavegraph - + Increase wavegraph amplitude by 1dB - + Click here to increase wavegraph amplitude by 1dB - + Decrease wavegraph amplitude by 1dB - + Click here to decrease wavegraph amplitude by 1dB - + Stereomode Maximum - + Process based on the maximum of both stereo channels - + Stereomode Average - + Process based on the average of both stereo channels - + Stereomode Unlinked - + Process each stereo channel independently - dynProcControls + DynProcControls - + Input gain - + Output gain - + Attack time - + Release time - + Stereo mode - fxLineLcdSpinBox + MixerLineLcdSpinBox Assign to: @@ -9767,7 +9760,7 @@ Please make sure you have read-permission to the file and the directory containi - New FX Channel + New mixer Channel @@ -9780,155 +9773,155 @@ Please make sure you have read-permission to the file and the directory containi - kickerInstrument + KickerInstrument - + Start frequency - + End frequency - + Length - + Distortion Start - + Distortion End - + Gain - + Envelope Slope - + Noise - + Click - + Frequency Slope - + Start from note - + End to note - kickerInstrumentView + KickerInstrumentView - + Start frequency: - + End frequency: - + Frequency Slope: - + Gain: - + Envelope Length: - + Envelope Slope: - + Click: - + Noise: - + Distortion Start: - + Distortion End: - ladspaBrowserView + LadspaBrowserView - - + + Available Effects - - + + Unavailable Effects - - + + Instruments - - + + Analysis Tools - - + + Don't know - + This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. @@ -9945,644 +9938,644 @@ Double clicking any of the plugins will bring up information on the ports. - + Type: - ladspaDescription + LadspaDescription - + Plugins - + Description - ladspaPortDialog + LadspaPortDialog - + Ports - + Name - + Rate - + Direction - + Type - + Min < Default < Max - + Logarithmic - + SR Dependent - + Audio - + Control - + Input - + Output - + Toggled - + Integer - + Float - - + + Yes - lb302Synth + Lb302Synth - + VCF Cutoff Frequency - + VCF Resonance - + VCF Envelope Mod - + VCF Envelope Decay - + Distortion - + Waveform - + Slide Decay - + Slide - + Accent - + Dead - + 24dB/oct Filter - lb302SynthView + 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 + MalletsInstrument - + Hardness - + Position - + Vibrato Gain - + Vibrato Freq - + Stick Mix - + Modulator - + Crossfade - + LFO Speed - + LFO Depth - + ADSR - + Pressure - + Motion - + Speed - + Bowed - + Spread - + Marimba - + Vibraphone - + Agogo - + Wood1 - + Reso - + Wood2 - + Beats - + Two Fixed - + Clump - + Tubular Bells - + Uniform Bar - + Tuned Bar - + Glass - + Tibetan Bowl - malletsInstrumentView + 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: - + Vib Gain - + Vib Gain: - + Vib Freq - + Vib Freq: - + Stick Mix - + Stick Mix: - + Modulator - + Modulator: - + Crossfade - + Crossfade: - + LFO Speed - + LFO Speed: - + LFO Depth - + LFO Depth: - + ADSR - + ADSR: - + Bowed - + Pressure - + Pressure: - + Motion - + Motion: - + Speed - + Speed: - - + + Vibrato - + Vibrato: - manageVSTEffectView + ManageVSTEffectView - VST parameter control @@ -10621,293 +10614,293 @@ Double clicking any of the plugins will bring up information on the ports. - manageVestigeInstrumentView + ManageVestigeInstrumentView - - + + - VST plugin control - + VST Sync - + Click here if you want to synchronize all parameters with VST plugin. - - + + Automated - + Click here if you want to display automated parameters only. - + Close - + Close VST plugin knob-controller window. - opl2instrument + OpulenzInstrument - + Patch - + Op 1 Attack - + Op 1 Decay - + Op 1 Sustain - + Op 1 Release - + Op 1 Level - + Op 1 Level Scaling - + Op 1 Frequency Multiple - + 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 Multiple - + Op 2 Key Scaling Rate - + Op 2 Percussive Envelope - + Op 2 Tremolo - + Op 2 Vibrato - + Op 2 Waveform - + FM - + Vibrato Depth - + Tremolo Depth - opl2instrumentView + OpulenzInstrumentView - - + + Attack - - + + Decay - - + + Release - - + + Frequency multiplier - organicInstrument + OrganicInstrument - + Distortion - + Volume - organicInstrumentView + OrganicInstrumentView - + Distortion: - + The distortion knob adds distortion to the output of the instrument. - + Volume: - + The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - + Randomise - + The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - + + Osc %1 waveform: - + Osc %1 volume: - + Osc %1 panning: - + Osc %1 stereo detuning - + cents - + Osc %1 harmonic: @@ -10915,122 +10908,122 @@ Double clicking any of the plugins will bring up information on the ports. FreeBoyInstrument - + Sweep time - + Sweep direction - + Sweep RtShift amount - - + + Wave Pattern Duty - + 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 @@ -11038,284 +11031,284 @@ Double clicking any of the plugins will bring up information on the ports. FreeBoyInstrumentView - + Sweep Time: - + Sweep Time - + The amount of increase or decrease in frequency - + Sweep RtShift amount: - + Sweep RtShift amount - + The rate at which increase or decrease in frequency occurs - - + + Wave pattern duty: - + Wave Pattern Duty - - + + The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - + + Square Channel 1 Volume: - + Square Channel 1 Volume - - - + + + Length of each step in sweep: - - - + + + Length of each step in sweep - - - + + + The delay between step change - + Wave pattern duty - + Square Channel 2 Volume: - - + + Square Channel 2 Volume - + Wave Channel Volume: - - + + Wave 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 - + Channel1 to SO1 (Right) - + Channel2 to SO1 (Right) - + Channel3 to SO1 (Right) - + Channel4 to SO1 (Right) - + Channel1 to SO2 (Left) - + Channel2 to SO2 (Left) - + Channel3 to SO2 (Left) - + Channel4 to SO2 (Left) - + Wave Pattern - + Draw the wave here - patchesDialog + PatchesDialog - + Qsynth: Channel Preset - + Bank selector - + Bank - + Program selector - + Patch - + Name - + OK - + Cancel - pluginBrowser + PluginBrowser A native amplifier plugin - + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track @@ -11325,7 +11318,7 @@ Double clicking any of the plugins will bring up information on the ports. - + Customizable wavetable synthesizer @@ -11335,12 +11328,12 @@ Double clicking any of the plugins will bring up information on the ports. - + Carla Patchbay Instrument - + Carla Rack Instrument @@ -11360,7 +11353,7 @@ Double clicking any of the plugins will bring up information on the ports. - + plugin for processing dynamics in a flexible way @@ -11374,11 +11367,6 @@ Double clicking any of the plugins will bring up information on the ports.A native flanger plugin - - - Filter for importing FL Studio projects into LMMS - - Player for GIG files @@ -11390,12 +11378,12 @@ Double clicking any of the plugins will bring up information on the ports. - + Versatile drum synthesizer - + List installed LADSPA plugins @@ -11405,8 +11393,8 @@ Double clicking any of the plugins will bring up information on the ports. - - Incomplete monophonic imitation tb303 + + Incomplete monophonic imitation TB-303 @@ -11420,7 +11408,7 @@ Double clicking any of the plugins will bring up information on the ports. - + Monstrous 3-oscillator synth with modulation matrix @@ -11430,83 +11418,83 @@ Double clicking any of the plugins will bring up information on the ports. - + A NES-like synthesizer - + 2-operator FM Synth - + Additive Synthesizer for organ-like sounds - + Emulation of GameBoy (TM) APU - + GUS-compatible patch instrument - + Plugin for controlling knobs with sound peaks - + Player for SoundFont files - + LMMS port of sfxr - + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. - + Graphical spectrum analyzer plugin - + 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 - + VST-host for using VST(i)-plugins within LMMS - + Vibrating string modeler @@ -11516,17 +11504,17 @@ This chip was used in the Commodore 64 computer. - + 4-oscillator modulatable wavetable synth - + plugin for waveshaping - + Embedded ZynAddSubFX @@ -11537,627 +11525,627 @@ This chip was used in the Commodore 64 computer. - sf2Instrument + Sf2Instrument - + Bank - + Patch - + Gain - + Reverb - + Reverb Roomsize - + Reverb Damping - + Reverb Width - + Reverb Level - + Chorus - + Chorus Lines - + Chorus Level - + Chorus Speed - + Chorus Depth - + A soundfont %1 could not be loaded. - sf2InstrumentView + Sf2InstrumentView - + Open other SoundFont file - + Click here to open another SF2 file - + Choose the patch - + Gain - + Apply reverb (if supported) - + This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - + Reverb Roomsize: - + Reverb Damping: - + Reverb Width: - + Reverb Level: - + Apply chorus (if supported) - + This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - + Chorus Lines: - + Chorus Level: - + Chorus Speed: - + Chorus Depth: - + Open SoundFont file - + SoundFont2 Files (*.sf2) - sfxrInstrument + SfxrInstrument - + Wave Form - sidInstrument + SidInstrument - + Cutoff - + Resonance - + Filter type - + Voice 3 off - + Volume - + Chip model - sidInstrumentView + SidInstrumentView - + Volume: - + Resonance: - - + + Cutoff frequency: - + High-Pass filter - + Band-Pass filter - + Low-Pass filter - + Voice3 Off - + MOS6581 SID - + MOS8580 SID - - + + Attack: - + Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - - + + Decay: - + Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - + Sustain: - + Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - + + Release: - + The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - + + Pulse Width: - + The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - + Coarse: - + The Coarse detuning allows to detune Voice %1 one octave up or down. - + Pulse Wave - + Triangle Wave - + SawTooth - + Noise - + Sync - + Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - + Ring-Mod - + Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - + Filtered - + When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - + Test - + Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - stereoEnhancerControlDialog + StereoEnhancerControlDialog - + WIDE - + Width: - stereoEnhancerControls + StereoEnhancerControls - + Width - stereoMatrixControlDialog + StereoMatrixControlDialog - + Left to Left Vol: - + Left to Right Vol: - + Right to Left Vol: - + Right to Right Vol: - stereoMatrixControls + StereoMatrixControls - + Left to Left - + Left to Right - + Right to Left - + Right to Right - vestigeInstrument + VestigeInstrument - + Loading plugin - + Please wait while loading VST-plugin... - vibed + Vibed - + String %1 volume - + String %1 stiffness - + Pick %1 position - + Pickup %1 position - + Pan %1 - + Detune %1 - + Fuzziness %1 - + Length %1 - + Impulse %1 - + Octave %1 - vibedView + VibedView - + Volume: - + The 'V' knob sets the volume of the selected string. - + String stiffness: - + The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - + Pick position: - + The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - + Pickup position: - + The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - + Pan: - + The Pan knob determines the location of the selected string in the stereo field. - + Detune: - + The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - + Fuzziness: - + The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - + Length: - + The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - + Impulse or initial state - + The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - + Octave - + The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - + Impulse Editor - + The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. The waveform can also be drawn in the graph. @@ -12168,7 +12156,7 @@ The 'N' button will normalize the waveform. - + Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. The graph allows you to control the initial state or impulse used to set the string in motion. @@ -12183,248 +12171,248 @@ The LED in the lower right corner of the waveform editor determines whether the - + Enable waveform - + Click here to enable/disable waveform. - + String - + The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - + Sine wave - + Use a sine-wave for current oscillator. - + Triangle wave - + Use a triangle-wave for current oscillator. - + Saw wave - + Use a saw-wave for current oscillator. - + Square wave - + Use a square-wave for current oscillator. - + White noise wave - + Use white-noise for current oscillator. - + User defined wave - + Use a user-defined waveform for current oscillator. - + Smooth - + Click here to smooth waveform. - + Normalize - + Click here to normalize waveform. - voiceObject + 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 + WaveShaperControlDialog - + INPUT - + Input gain: - + OUTPUT - + Output gain: - + Reset waveform - + Click here to reset the wavegraph back to default - + Smooth waveform - + Click here to apply smoothing to wavegraph - + Increase graph amplitude by 1dB - + Click here to increase wavegraph amplitude by 1dB - + Decrease graph amplitude by 1dB - + Click here to decrease wavegraph amplitude by 1dB - + Clip input - + Clip input signal to 0dB - waveShaperControls + WaveShaperControls - + Input gain - + Output gain - \ No newline at end of file + diff --git a/data/locale/ca.ts b/data/locale/ca.ts index a3b4e31f7..765cf3b60 100644 --- a/data/locale/ca.ts +++ b/data/locale/ca.ts @@ -2,207 +2,208 @@ AboutDialog + About LMMS - - - - Version %1 (%2/%3, Qt %4, %5) - - - - About - - - - LMMS - easy music production for everyone - - - - Authors - - - - Translation - - - - 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! - - - - License - + Quant a LMMS + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + + About + Quant a + + + + LMMS - easy music production for everyone. + + + + + Copyright © %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> + + + + + Authors + Autoria + + + Involved + Contributors ordered by number of commits: - Copyright © %1 + + Translation + Traducció + + + + 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! - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - + + License + Llicència AmplifierControlDialog + VOL + Volume: Volum: + PAN + Panning: + LEFT - + ESQ + Left gain: - + Volum esquerre: + RIGHT - + DRET + Right gain: - + Volum dret: AmplifierControls + Volume Volum + Panning + Left gain - + Volum esquerre + Right gain - + Volum dret AudioAlsaSetupWidget + DEVICE - + DISPOSITIU + CHANNELS - + CANALS AudioFileProcessorView - Open other sample - - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. + + Open sample + Reverse sample Inverteix mostra - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - - - - Amplify: - - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - - - - Startpoint: - - - - Endpoint: - - - - Continue sample playback across notes - - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - - - + Disable loop - This button disables looping. The sample plays only once from start to end. - - - + Enable loop - This button enables forwards-looping. The sample loops between the end point and the loop point. + + Enable ping-pong loop - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. + + Continue sample playback across notes - With this knob you can set the point where AudioFileProcessor should begin playing your sample. + + Amplify: + Amplificació: + + + + Start point: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. + + End point: + Loopback point: - - With this knob you can set the point where the loop starts. - - AudioFileProcessorWaveView + Sample length: @@ -210,443 +211,469 @@ If you're interested in translating LMMS in another language or want to imp 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 + + Client name - CHANNELS + + Channels - AudioOss::setupWidget + AudioOss - DEVICE + + Device - CHANNELS + + Channels AudioPortAudio::setupWidget - BACKEND + + Backend - DEVICE + + Device - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE + + Device - CHANNELS + + Channels AudioSdl::setupWidget - DEVICE + + Device - AudioSndio::setupWidget + AudioSndio - DEVICE + + Device - CHANNELS + + Channels AudioSoundIo::setupWidget - BACKEND + + Backend - DEVICE + + Device AutomatableModel + &Reset (%1%2) - + &Reinicia (%1%2) + &Copy value (%1%2) - + &Copia el valor (%1%2) + &Paste value (%1%2) + Engan&xa el valor (%1%2) + + + + &Paste value + Edit song-global automation - Connected to %1 - - - - Connected to controller - - - - Edit connection... - - - - Remove connection - - - - Connect to controller... - - - + Remove song-global automation + Remove all linked controls + + + Connected to %1 + Connectat a %1 + + + + Connected to controller + Connectat al controlador + + + + Edit connection... + Edita la connexió... + + + + Remove connection + Suprimeix la connexió + + + + Connect to controller... + Connecta al controlador... + AutomationEditor - Please open an automation pattern with the context menu of a control! + + Edit Value - Values copied + + New outValue - All selected values were copied to the clipboard. + + New inValue + + + + + Please open an automation clip with the context menu of a control! AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - - - - Stop playing of current pattern (Space) - - - - Click here if you want to stop playing of the current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Flip vertically - - - - Flip horizontally - - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Discrete progression - - - - Linear progression - - - - Cubic Hermite progression - - - - Tension value for spline - - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - Cut selected values (%1+X) - - - - Copy selected values (%1+C) - - - - Paste values from clipboard (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - - - - Tension: - - - - Automation Editor - no pattern - - - - Automation Editor - %1 + + Stop playing of current clip (Space) + Edit actions + + Draw mode (Shift+D) + Mode dibuix (Majús+D) + + + + Erase mode (Shift+E) + Mode eliminació (Majús+E) + + + + Draw outValues mode (Shift+C) + + + + + Flip vertically + Gira verticalment + + + + Flip horizontally + Gira horitzontalment + + + Interpolation controls - Timeline controls + + Discrete progression + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + Zoom controls + + Horizontal zooming + + + + + Vertical zooming + + + + Quantization controls - Model is already connected to this pattern. + + Quantization + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> - AutomationPatternView - - double-click to open this pattern in automation editor - - + AutomationClipView + Open in Automation editor + Clear + Reset name Restaura nom + Change name Canvia nom - %1 Connections - - - - Disconnect "%1" - - - + Set/clear record + Flip Vertically (Visible) + Flip Horizontally (Visible) - Model is already connected to this pattern. + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. AutomationTrack + Automation track - BBEditor + PatternEditor + Beat+Bassline Editor + Play/pause current beat/bassline (Space) + Stop playback of current beat/bassline (Space) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - - - - Click here to stop playing of current beat/bassline. - - - - Add beat/bassline - - - - Add automation-track - - - - Remove steps - Elimina passos - - - Add steps - Afegeix passos - - + Beat selector + Track and step actions - Clone Steps + + Add beat/bassline + + Clone beat/bassline clip + + + + Add sample-track + + + Add automation-track + + + + + Remove steps + Elimina passos + + + + Add steps + Afegeix passos + + + + Clone Steps + + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor + Reset name Restaura nom + Change name Canvia nom - - Change color - - - - Reset color to default - - - BBTrack + PatternTrack + Beat/Bassline %1 + Clone of %1 @@ -654,26 +681,32 @@ If you're interested in translating LMMS in another language or want to imp BassBoosterControlDialog + FREQ + Frequency: + GAIN + Gain: Guany: + RATIO + Ratio: @@ -681,14 +714,17 @@ If you're interested in translating LMMS in another language or want to imp BassBoosterControls + Frequency + Gain Guany + Ratio @@ -696,111 +732,2344 @@ If you're interested in translating LMMS in another language or want to imp BitcrushControlDialog + IN + OUT + + GAIN - Input Gain: + + Input gain: - NOIS + + NOISE - Input Noise: + + Input noise: - Output Gain: + + Output gain: + CLIP - Output Clip: + + Output clip: - Rate - Taxa - - - Rate Enabled + + Rate enabled - Enable samplerate-crushing + + Enable sample-rate crushing - Depth + + Depth enabled - Depth Enabled + + Enable bit-depth crushing - Enable bitdepth-crushing + + FREQ + Sample rate: - STD + + STEREO + Stereo difference: - Levels + + QUANT + Levels: - CaptionMenu + BitcrushControls + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + Quant a + + + + About text here + + + + + Extended licensing here + + + + + 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 + Llicència + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help - Help (not available) + + toolBar + + + + + 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 + + + + + Ctrl+N + + + + + &Open... + + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. + + Settings + + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + Àudio + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + Guany + + + + 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 @@ -808,58 +3077,73 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -867,18 +3151,22 @@ If you're interested in translating LMMS in another language or want to imp ControllerRackView + Controller Rack + Add + Confirm Delete + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. @@ -886,116 +3174,158 @@ If you're interested in translating LMMS in another language or want to imp ControllerView + Controls - Controllers are able to automate the value of a knob, slider, and other controls. - - - + Rename controller + Enter the new name for this controller + + LFO + + + + &Remove this controller + Re&name this controller - - LFO - - 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 2 Gain: + + Band 1 gain: - Band 3 Gain: + + Band 2 gain - Band 4 Gain: + + Band 2 gain: - Band 1 Mute + + Band 3 gain - Mute Band 1 + + Band 3 gain: - Band 2 Mute + + Band 4 gain - Mute Band 2 + + Band 4 gain: - Band 3 Mute + + Band 1 mute - Mute Band 3 + + Mute band 1 - Band 4 Mute + + Band 2 mute - Mute Band 4 + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 DelayControls - Delay Samples + + Delay samples + Feedback - Lfo Frequency + + LFO frequency - Lfo Amount + + LFO amount + Output gain @@ -1003,228 +3333,528 @@ If you're interested in translating LMMS in another language or want to imp DelayControlsDialog - Lfo Amt - - - - Delay Time - - - - Feedback Amount - - - - Lfo - - - - Out Gain - - - - Gain - Guany - - + DELAY + + Delay time + + + + FDBK + + Feedback amount + + + + RATE + + LFO frequency + + + + AMNT + + + LFO amount + + + + + Out gain + + + + + Gain + Guany + + + + 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 + + + + + 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 - Filter 1 enabled - - - - Filter 2 enabled - - - - Click to enable/disable Filter 1 - - - - Click to enable/disable Filter 2 - - - + + FREQ + + Cutoff frequency + + RESO + + Resonance + + GAIN + + Gain Guany + MIX + Mix + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + DualFilterControls + Filter 1 enabled + Filter 1 type - Cutoff 1 frequency + + Cutoff frequency 1 + Q/Resonance 1 + Gain 1 + Mix + Filter 2 enabled + Filter 2 type - Cutoff 2 frequency + + Cutoff frequency 2 + Q/Resonance 2 + Gain 2 - LowPass + + + Low-pass - HiPass + + + Hi-pass - BandPass csg + + + Band-pass csg - BandPass czpg + + + Band-pass czpg + + Notch - Allpass + + + All-pass + + Moog - 2x LowPass + + + 2x Low-pass - RC LowPass 12dB + + + RC Low-pass 12 dB/oct - RC BandPass 12dB + + + RC Band-pass 12 dB/oct - RC HighPass 12dB + + + RC High-pass 12 dB/oct - RC LowPass 24dB + + + RC Low-pass 24 dB/oct - RC BandPass 24dB + + + RC Band-pass 24 dB/oct - RC HighPass 24dB + + + RC High-pass 24 dB/oct - Vocal Formant Filter + + + Vocal Formant + + 2x Moog - SV LowPass + + + SV Low-pass - SV BandPass + + + SV Band-pass - SV HighPass + + + SV High-pass + + SV Notch + + Fast Formant + + Tripole @@ -1232,41 +3862,55 @@ If you're interested in translating LMMS in another language or want to imp Editor + + Transport controls + + + + Play (Space) + Stop (Space) + Record + Record while playing - Transport controls + + Toggle Step Recording Effect + Effect enabled + Wet/Dry mix + Gate + Decay @@ -1274,6 +3918,7 @@ If you're interested in translating LMMS in another language or want to imp EffectChain + Effects enabled @@ -1281,10 +3926,12 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView + EFFECTS CHAIN + Add effect @@ -1292,22 +3939,28 @@ If you're interested in translating LMMS in another language or want to imp EffectSelectDialog + Add effect + + Name Nom + Type Tipus + Description Descripció + Author @@ -1315,78 +3968,57 @@ If you're interested in translating LMMS in another language or want to imp EffectView - Toggles the effect on or off. - - - + On/Off + W/D + Wet Level: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - - - + DECAY + Time: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - - - + GATE + Gate: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - - - + Controls - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - - - + Move &up + Move &down + &Remove this plugin @@ -1394,408 +4026,409 @@ Right clicking will bring up a context menu where you can change the order in wh EnvelopeAndLfoParameters - Predelay + + Env pre-delay - Attack + + Env attack - Hold + + Env hold - Decay + + Env decay - Sustain + + Env sustain - Release + + Env release - Modulation + + Env mod amount - LFO Predelay + + LFO pre-delay - LFO Attack + + LFO attack - LFO speed + + LFO frequency - LFO Modulation + + LFO mod amount - LFO Wave Shape + + LFO wave shape - Freq x 100 + + LFO frequency x 100 - Modulate Env-Amount + + Modulate env amount EnvelopeAndLfoView + + DEL - Predelay: - - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. + + + Pre-delay: + + ATT + + Attack: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - - - + HOLD + Hold: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - - - + DEC + Decay: Decaïment: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - - - + SUST + Sustain: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - - - + REL + Release: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - - - + + AMT + + Modulation amount: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - - - - LFO predelay: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - - - - LFO- attack: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - - - + SPD - LFO speed: - - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - - - - Click here for a sine-wave. - - - - Click here for a triangle-wave. - - - - Click here for a saw-wave for current. - - - - Click here for a square-wave. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. + + Frequency: + FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. + + Multiply LFO frequency by 100 - multiply LFO-frequency by 100 + + MODULATE ENV AMOUNT - MODULATE ENV-AMOUNT - - - - Click here to make the envelope-amount controlled by this LFO. - - - - control envelope-amount by this LFO + + Control envelope amount by this LFO + ms/LFO: + Hint - Drag a sample from somewhere and drop it in this window. - - - - Click here for random wave. + + Drag and drop a sample into this window. EqControls + Input gain + Output gain - Low shelf gain + + Low-shelf gain + Peak 1 gain + Peak 2 gain + Peak 3 gain + Peak 4 gain - High Shelf gain + + High-shelf gain + HP res - Low Shelf res + + Low-shelf res + Peak 1 BW + Peak 2 BW + Peak 3 BW + Peak 4 BW - High Shelf res + + High-shelf res + LP res + HP freq - Low Shelf freq + + Low-shelf freq + Peak 1 freq + Peak 2 freq + Peak 3 freq + Peak 4 freq - High shelf freq + + High-shelf freq + LP freq + HP active - Low shelf active + + Low-shelf active + Peak 1 active + Peak 2 active + Peak 3 active + Peak 4 active - High shelf active + + High-shelf active + LP active + LP 12 + LP 24 + LP 48 + HP 12 + HP 24 + HP 48 - low pass type + + Low-pass type - high pass type + + High-pass type + Analyse IN + Analyse OUT @@ -1803,85 +4436,108 @@ Right clicking will bring up a context menu where you can change the order in wh EqControlsDialog + HP - Low Shelf + + Low-shelf + Peak 1 + Peak 2 + Peak 3 + Peak 4 - High Shelf + + High-shelf + LP - In Gain + + Input gain + + + Gain Guany - Out Gain + + Output gain + Bandwidth: + + Octave + + + + Resonance : + Frequency: - lp grp + + LP group - hp grp - - - - Octave + + HP group EqHandle + Reso: + BW: + + Freq: @@ -1889,174 +4545,271 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog + Export project - Output - Sortida - - - File format: - - - - Samplerate: - - - - 44100 Hz - - - - 48000 Hz - - - - 88200 Hz - - - - 96000 Hz - - - - 192000 Hz - - - - Bitrate: - - - - 64 KBit/s - - - - 128 KBit/s - - - - 160 KBit/s - - - - 192 KBit/s - - - - 256 KBit/s - - - - 320 KBit/s - - - - Depth: - - - - 16 Bit Integer - - - - 32 Bit Float - - - - Please note that not all of the parameters above apply for all file formats. - - - - Quality settings - - - - Interpolation: - - - - Zero Order Hold - - - - Sinc Fastest - - - - Sinc Medium (recommended) - - - - Sinc Best (very slow!) - - - - Oversampling (use with care!): - - - - 1x (None) - - - - 2x - - - - 4x - - - - 8x - - - - Start - - - - Cancel - - - - Export as loop (remove end silence) + + Export as loop (remove extra bar) + Export between loop markers + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + + + + + Sampling rate: + + + + + 44100 Hz + + + + + 48000 Hz + + + + + 88200 Hz + + + + + 96000 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 No es pot obrir el fitxer + + 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% - - 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! - - Fader + + Set value + + + + Please enter a new value between %1 and %2: @@ -2064,72 +4817,133 @@ Please make sure you have write permission to the file and the directory contain FileBrowser + + User content + + + + + Factory content + + + + Browser + + + Search + + + + + Refresh list + + FileBrowserTreeWidget + Send to active instrument-track - Open in new instrument-track/B+B Editor + + 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... - --- Factory files --- - - - - Open in new instrument-track/Song Editor - - - + Error - does not appear to be a valid + + %1 does not appear to be a valid %2 file - file + + --- Factory files --- FlangerControls - Delay Samples + + Delay samples - Lfo Frequency + + LFO frequency + Seconds + + Stereo phase + + + + Regen + Noise + Invert @@ -2137,128 +4951,516 @@ Please make sure you have write permission to the file and the directory contain FlangerControlsDialog - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - + DELAY + + Delay time: + + + + RATE - Rate: + + Period: + AMNT + Amount: + + PHASE + + + + + Phase: + + + + FDBK + + Feedback amount: + + + + NOISE + + White noise amount: + + + + Invert - FxLine + 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 + Aguts + + + + 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: + Aguts: + + + + Treble + Aguts + + + + 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 + + + + + MixerLine + + Channel send amount - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - + Move &left + Move &right + Rename &channel + R&emove channel + Remove &unused channels + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + Master - FX %1 + + + + Channel %1 + + + + + Volume + Volum + + + + Mute + Silenci + + + + Solo - FxMixerView + MixerView - FX-Mixer + + Mixer - FX Fader %1 + + Fader %1 + Mute + Silenci + + + + Mute this mixer channel - Mute this FX channel - - - + Solo - Solo FX channel + + Solo mixer channel - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 @@ -2266,14 +5468,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument + Bank Banc + Patch Pedaç + Gain Guany @@ -2281,46 +5486,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - Open other GIG file - - - - Click here to open another GIG file - - - - Choose the patch - Escull el pedaç - - - Click here to change which patch of the GIG file to use - - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - - - - Gain - Guany - - - Factor to multiply samples by - - - + + Open GIG file + + Choose patch + + + + + Gain: + Guany: + + + GIG Files (*.gig) @@ -2328,42 +5510,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 piano roll + Preparing automation editor @@ -2371,650 +5563,798 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio + Arpeggio + Arpeggio type + Arpeggio range - Arpeggio time + + Note repeats - Arpeggio gate - - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - - - - Free - - - - Sort - - - - Sync - - - - Down and up + + Cycle steps + Skip rate + Miss rate - Cycle steps + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync InstrumentFunctionArpeggioView + ARPEGGIO - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - + RANGE + Arpeggio range: + octave(s) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. + + REP - TIME + + Note repeats: - Arpeggio time: - - - - ms - - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - - - - GATE - - - - Arpeggio gate: - - - - % - - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - Chord: - - - - Direction: - - - - Mode: - - - - SKIP - - - - Skip rate: - - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - MISS - - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. + + time(s) + CYCLE + Cycle notes: + note(s) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + 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 - Phrygolydian + + Phrygian + Lydian + Mixolydian + Aeolian + Locrian - Chords - - - - Chord type - - - - Chord range - - - + Minor + Chromatic + Half-Whole Diminished + 5 + Phrygian dominant + Persian + + + Chords + + + + + Chord type + + + + + Chord range + + InstrumentFunctionNoteStackingView - RANGE - - - - Chord range: - - - - octave(s) - - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - - + STACKING + Chord: + + + RANGE + + + + + Chord range: + + + + + octave(s) + + InstrumentMidiIOView + ENABLE MIDI INPUT - CHANNEL - - - - VELOCITY - - - + ENABLE MIDI OUTPUT - PROGRAM + + + 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 - NOTE - - - + CUSTOM BASE VELOCITY - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + BASE VELOCITY @@ -3022,137 +6362,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView + MASTER PITCH - Enables the use of Master Pitch + + Enables the use of master pitch InstrumentSoundShaping + VOLUME + Volume Volum + CUTOFF + + Cutoff frequency + RESO + Resonance + Envelopes/LFOs + Filter type + Q/Resonance - LowPass + + Low-pass - HiPass + + Hi-pass - BandPass csg + + Band-pass csg - BandPass czpg + + Band-pass czpg + Notch - Allpass + + All-pass + Moog - 2x LowPass + + 2x Low-pass - RC LowPass 12dB + + RC Low-pass 12 dB/oct - RC BandPass 12dB + + RC Band-pass 12 dB/oct - RC HighPass 12dB + + RC High-pass 12 dB/oct - RC LowPass 24dB + + RC Low-pass 24 dB/oct - RC BandPass 24dB + + RC Band-pass 24 dB/oct - RC HighPass 24dB + + RC High-pass 24 dB/oct - Vocal Formant Filter + + Vocal Formant + 2x Moog - SV LowPass + + SV Low-pass - SV BandPass + + SV Band-pass - SV HighPass + + SV High-pass + SV Notch + Fast Formant + Tripole @@ -3160,50 +6534,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView + TARGET - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - + FILTER - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - - - - Hz - - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - - - - RESO - - - - Resonance: - Ressonància: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - + FREQ - cutoff frequency: + + Cutoff frequency: + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. @@ -3211,211 +6577,337 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack + + unnamed_track - Volume - Volum - - - Panning - - - - Pitch - - - - FX channel - - - - Default preset - - - - With this knob you can set the volume of the opened channel. - - - + Base note + + First note + + + + + Last note + Darrera nota + + + + Volume + Volum + + + + Panning + + + + + Pitch + + + + Pitch range - Master Pitch + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset InstrumentTrackView + Volume Volum + Volume: Volum: + VOL + Panning + Panning: + PAN + MIDI + Input Entrada + Output Sortida - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 InstrumentTrackWindow + GENERAL SETTINGS - Instrument volume - + + Volume + Volum + Volume: Volum: + VOL + Panning + Panning: + PAN + Pitch + Pitch: + cents cents + PITCH - FX channel - - - - ENV/LFO - - - - FUNC - - - - FX - - - - MIDI - - - - Save preset - - - - XML preset file (*.xpf) - - - - PLUGIN - - - + Pitch range (semitones) + RANGE + + Mixer channel + + + + + CHANNEL + + + + Save current instrument track settings in a preset file - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - - - - MISC - - - - Use these controls to view and edit the next/previous track in the song editor. - - - + SAVE + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Miscellaneous + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: @@ -3423,6 +6915,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControl + Link channels @@ -3430,10 +6923,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlDialog + Link Channels + Channel @@ -3441,28 +6936,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView + Link channels + Value: - - Sorry, no help available. - - LadspaEffect + Unknown LADSPA plugin %1 requested. + + LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + LcdSpinBox + + Set value + + + + Please enter a new value between %1 and %2: @@ -3470,18 +6983,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri LeftRightNav + + + Previous + + + Next + Previous (%1) + Next (%1) @@ -3489,30 +7010,37 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoController + LFO Controller + Base value + Oscillator speed + Oscillator amount + Oscillator phase + Oscillator waveform + Frequency Multiplier @@ -3520,114 +7048,131 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoControllerDialog + LFO - LFO Controller - - - + BASE - Base amount: + + Base: - todo + + FREQ - SPD + + LFO frequency: - LFO-speed: - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. + + AMNT + Modulation amount: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - + PHS + Phase offset: - degrees + + degrees - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. + + Sine wave + Ona sinusoïdal + + + + Triangle wave + Ona triangular + + + + Saw wave + Ona de serra + + + + Square wave + Ona quadrada + + + + Moog saw wave - Click here for a sine-wave. + + Exponential wave - Click here for a triangle-wave. + + White noise - Click here for a saw-wave. - - - - Click here for a square-wave. - - - - Click here for an exponential wave. - - - - Click here for white-noise. - - - - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Click here for a moog saw-wave. + + Mutliply modulation frequency by 1 - AMNT + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 - LmmsCore + Engine + Generating wavetables + Initializing data structures + Opening audio and midi devices + Launching mixer threads @@ -3635,403 +7180,508 @@ Double click to pick a file. MainWindow - Could not save config-file + + Configuration file - Could not save configuration file %1. You're probably not permitted to write to this file. -Please make sure you have write-access to the file and try again. + + Error while parsing configuration file at line %1:%2: %3 + + Could not open file + No es pot obrir el fitxer + + + + 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 + + + + + &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... + + + + &Quit + &Edit + + Undo + + + + + Redo + + + + Settings + + &View + + + + &Tools + &Help + + Online Help + + + + Help - What's this? - - - + About - + Quant a + Create new project + Create new project from template + Open existing project + Recently opened projects + Save current project + Export current project + + Metronome + + + + + Song Editor - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - - - + + Beat+Bassline Editor - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - - - + + Piano Roll - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - - - + + Automation Editor - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. + + + Mixer - FX Mixer + + Show/hide controller rack - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - - - - Project Notes - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - - - - 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. - LMMS (*.mmp *.mmpz) + + Controller Rack - Version %1 + + Project Notes - Configuration file - - - - Error while parsing configuration file at line %1:%2: %3 - - - - Volumes - - - - Undo - - - - Redo - - - - My Projects - - - - My Samples - - - - My Presets - - - - My Home - - - - My Computer - - - - &File - - - - &Recently Opened Projects - - - - Save as New &Version - - - - E&xport Tracks... - - - - Online Help - - - - What's This? - - - - Open Project - - - - Save Project - - - - 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. - - - - Ignore - - - - Launch LMMS as usual but with automatic backup disabled to prevent the present recover file from being overwritten. - - - - Discard - - - - Launch a default session and delete the restored files. This is not reversible. - - - - Preparing plugin browser - - - - Preparing file browsers - - - - Root directory - - - - Loading background artwork - - - - New from template - - - - Save as default template - - - - &View - - - - Toggle metronome - - - - Show/hide Song-Editor - - - - Show/hide Beat+Bassline Editor - - - - Show/hide Piano-Roll - - - - Show/hide Automation Editor - - - - Show/hide FX Mixer - - - - Show/hide project notes - - - - Show/hide controller rack - - - - Recover session. Please save your work! - - - - Automatic backup disabled. Remember to save your work! - - - - 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? - - - - LMMS Project - - - - LMMS Project Template - - - - Overwrite default template? - - - - This will overwrite your current default template. + + Fullscreen + Volume as dBFS + Smooth scroll + Enable note labels in piano roll - Save project template + + 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 + + Meter Numerator + + Meter numerator + + + + + Meter Denominator + + Meter denominator + + + + TIME SIG @@ -4039,21 +7689,44 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MeterModel + Numerator + Denominator + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController + MIDI Controller + unnamed_midi_controller @@ -4061,18 +7734,43 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiImport + + Setup incomplete - You do not have 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 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 @@ -4080,541 +7778,911 @@ Please visit http://lmms.sf.net/wiki for documentation on 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) + + 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 - Output MIDI program - - - - Receive MIDI-events - - - - Send MIDI-events - - - + Fixed output note + + Output MIDI program + + + + Base velocity + + + Receive MIDI-events + + + + + Send MIDI-events + + MidiSetupWidget - DEVICE + + Device MonstroInstrument - Osc 1 Volume + + Osc 1 volume - Osc 1 Panning + + Osc 1 panning - Osc 1 Coarse detune + + Osc 1 coarse detune - Osc 1 Fine detune left + + Osc 1 fine detune left - Osc 1 Fine detune right + + Osc 1 fine detune right - Osc 1 Stereo phase offset + + Osc 1 stereo phase offset - Osc 1 Pulse width + + Osc 1 pulse width - Osc 1 Sync send on rise + + Osc 1 sync send on rise - Osc 1 Sync send on fall + + Osc 1 sync send on fall - Osc 2 Volume + + Osc 2 volume - Osc 2 Panning + + Osc 2 panning - Osc 2 Coarse detune + + Osc 2 coarse detune - Osc 2 Fine detune left + + Osc 2 fine detune left - Osc 2 Fine detune right + + Osc 2 fine detune right - Osc 2 Stereo phase offset + + Osc 2 stereo phase offset - Osc 2 Waveform + + Osc 2 waveform - Osc 2 Sync Hard + + Osc 2 sync hard - Osc 2 Sync Reverse + + Osc 2 sync reverse - Osc 3 Volume + + Osc 3 volume - Osc 3 Panning + + Osc 3 panning - Osc 3 Coarse detune + + Osc 3 coarse detune + Osc 3 Stereo phase offset - Osc 3 Sub-oscillator mix + + Osc 3 sub-oscillator mix - Osc 3 Waveform 1 + + Osc 3 waveform 1 - Osc 3 Waveform 2 + + Osc 3 waveform 2 - Osc 3 Sync Hard + + Osc 3 sync hard - Osc 3 Sync Reverse + + Osc 3 Sync reverse - LFO 1 Waveform + + LFO 1 waveform - LFO 1 Attack + + LFO 1 attack - LFO 1 Rate + + LFO 1 rate - LFO 1 Phase + + LFO 1 phase - LFO 2 Waveform + + LFO 2 waveform - LFO 2 Attack + + LFO 2 attack - LFO 2 Rate + + LFO 2 rate - LFO 2 Phase + + LFO 2 phase - 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 - Osc2-3 modulation + + Osc 2+3 modulation + Selected view - Vol1-Env1 + + Osc 1 - Vol env 1 - Vol1-Env2 + + Osc 1 - Vol env 2 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 - Vol2-Env1 + + Osc 2 - Vol env 1 - Vol2-Env2 + + Osc 2 - Vol env 2 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 - Vol3-Env1 + + Osc 3 - Vol env 1 - Vol3-Env2 + + Osc 3 - Vol env 2 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 - Phs1-Env1 + + Osc 1 - Phs env 1 - Phs1-Env2 + + Osc 1 - Phs env 2 - Phs1-LFO1 + + Osc 1 - Phs LFO 1 - Phs1-LFO2 + + Osc 1 - Phs LFO 2 - Phs2-Env1 + + Osc 2 - Phs env 1 - Phs2-Env2 + + Osc 2 - Phs env 2 - Phs2-LFO1 + + Osc 2 - Phs LFO 1 - Phs2-LFO2 + + Osc 2 - Phs LFO 2 - Phs3-Env1 + + Osc 3 - Phs env 1 - Phs3-Env2 + + Osc 3 - Phs env 2 - Phs3-LFO1 + + Osc 3 - Phs LFO 1 - Phs3-LFO2 + + Osc 3 - Phs LFO 2 - Pit1-Env1 + + Osc 1 - Pit env 1 - Pit1-Env2 + + Osc 1 - Pit env 2 - Pit1-LFO1 + + Osc 1 - Pit LFO 1 - Pit1-LFO2 + + Osc 1 - Pit LFO 2 - Pit2-Env1 + + Osc 2 - Pit env 1 - Pit2-Env2 + + Osc 2 - Pit env 2 - Pit2-LFO1 + + Osc 2 - Pit LFO 1 - Pit2-LFO2 + + Osc 2 - Pit LFO 2 - Pit3-Env1 + + Osc 3 - Pit env 1 - Pit3-Env2 + + Osc 3 - Pit env 2 - Pit3-LFO1 + + Osc 3 - Pit LFO 1 - Pit3-LFO2 + + Osc 3 - Pit LFO 2 - PW1-Env1 + + Osc 1 - PW env 1 - PW1-Env2 + + Osc 1 - PW env 2 - PW1-LFO1 + + Osc 1 - PW LFO 1 - PW1-LFO2 + + Osc 1 - PW LFO 2 - Sub3-Env1 + + Osc 3 - Sub env 1 - Sub3-Env2 + + Osc 3 - Sub env 2 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 - Sub3-LFO2 + + Osc 3 - Sub LFO 2 + + Sine wave Ona sinusoïdal + 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 Ona triangular + Saw wave Ona de serra + Ramp wave + Square wave Ona quadrada + Moog saw wave + Abs. sine wave + Random + Random smooth @@ -4622,278 +8690,240 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MonstroView + Operators view - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - + Matrix view - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - + + + Volume Volum + + + Panning + + + Coarse detune + + + semitones - Finetune left + + + Fine tune left + + + + cents - Finetune right + + + 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 @@ -4901,117 +8931,145 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator MultitapEchoControlDialog + Length + Step length: + Dry - Dry Gain: + + Dry gain: + Stages - Lowpass stages: + + Low-pass stages: + Swap inputs - Swap left and right input channel for reflections + + Swap left and right input channels for reflections NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune - Channel 1 Volume + + Channel 1 volume - Channel 1 Envelope length + + Channel 1 envelope length - Channel 1 Duty cycle + + Channel 1 duty cycle - Channel 1 Sweep amount + + Channel 1 sweep amount - Channel 1 Sweep rate + + Channel 1 sweep rate + Channel 2 Coarse detune + Channel 2 Volume - Channel 2 Envelope length + + Channel 2 envelope length - Channel 2 Duty cycle + + Channel 2 duty cycle - Channel 2 Sweep amount + + Channel 2 sweep amount - Channel 2 Sweep rate + + Channel 2 sweep rate - Channel 3 Coarse detune + + Channel 3 coarse detune - Channel 3 Volume + + Channel 3 volume - Channel 4 Volume + + Channel 4 volume - Channel 4 Envelope length + + Channel 4 envelope length - Channel 4 Noise frequency + + Channel 4 noise frequency - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep + Master volume + Vibrato Vibrat @@ -5019,196 +9077,447 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator NesInstrumentView + + + + Volume Volum + + + 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 + + Master volume + Vibrato Vibrat + + OpulenzInstrument + + + Patch + Pedaç + + + + 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 volume - - - - Osc %1 panning - - - - 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 - - - + 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 Banc + Program selector + Patch Pedaç + Name Nom + OK + Cancel @@ -5216,85 +9525,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - - - - Click here to open another patch-file. Loop and Tune settings are not reset. + + Open patch + Loop + Loop mode - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - - - + Tune + Tune mode - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - - - + No file selected + Open patch file + Patch-Files (*.pat) - PatternView + MidiClipView + Open in piano-roll Obre al rotlle de piano + + Set as ghost in piano-roll + + + + Clear all notes Esborra totes les notes + Reset name Restaura nom + Change name Canvia nom + Add steps Afegeix passos + Remove steps Elimina passos - use mouse wheel to set velocity of a step - - - - double-click to open in Piano Roll - - - + Clone Steps @@ -5302,14 +9611,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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. @@ -5317,10 +9629,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK + LFO Controller @@ -5328,326 +9642,518 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog + BASE - Base amount: - - - - Modulation amount: - - - - Attack: - - - - Release: + + Base: + AMNT + + Modulation amount: + + + + MULT - Amount Multiplicator: + + Amount multiplicator: + ATCK + + Attack: + + + + DCAY + + Release: + + + + + TRSH + + + + Treshold: - TRSH + + Mute output + + + + + Absolute value PeakControllerEffectControls + Base value + Modulation amount - Mute output - - - + Attack + Release - Abs Value - - - - Amount Multiplicator - - - + Treshold + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - Per favor, obre un patró picant-lo dos cops! - - - Last note - Darrera nota - - - Note lock - - - + Note Velocity + Note Panning + Mark/unmark current semitone - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - - Velocity: %1% - - - - Panning: %1% left - - - - Panning: %1% right - - - - Panning: center - - - - Please enter a new value between %1 and %2: - - - + Mark/unmark all corresponding octave semitones + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + Select all notes on this key + + + Note lock + + + + + Last note + Darrera nota + + + + 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! + Per favor, obre un patró picant-lo dos cops! + + + + + Please enter a new value between %1 and %2: + + PianoRollWindow - Play/pause current pattern (Space) + + 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 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Detune mode (Shift+T) - - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - - - - Copy selected notes (%1+C) - - - - Paste notes from clipboard (%1+V) - - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. + + Stop playing of current clip (Space) + Edit actions + + Draw mode (Shift+D) + Mode dibuix (Majús+D) + + + + Erase mode (Shift+E) + Mode eliminació (Majús+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 Rotlle de Piano - %1 - Piano-Roll - no pattern + + + Piano-Roll - no clip Rotlle de Piano - sense patró - Quantize + + + 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 + Darrera nota + 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"! @@ -5655,144 +10161,1145 @@ Reason: "%2" PluginBrowser + + Instrument Plugins + + + + Instrument browser + Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Instrument Plugins + + no description + sense descripció + + + + 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 + Llista connectors LADSPA instal·lats + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + connector per a usar efectes LADSPA arbitraris a LMMS. + + + + Incomplete monophonic imitation TB-303 + Imitació monofònica incompleta 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 + Filtre per a importar fitxers MIDI a 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 + Sintetitzador Additiu per a sons com d'orgue + + + + GUS-compatible patch instrument + Instrument de pedaç compatible GUS + + + + Plugin for controlling knobs with sound peaks + Connector per a controlar rodes amb pics de so + + + + 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 + Connector per a millorar la separació estèreo + + + + Plugin for freely manipulating stereo output + Connector per a manipular lliurement la sortida estèreo + + + + Tuneful things to bang on + Coses melòdiques per a fer soroll + + + + Three powerful oscillators you can modulate in several ways + + + + + A stereo field visualizer. + + + + + VST-host for using VST(i)-plugins within LMMS + servidor VST per a usar connectors VST(i) amb LMMS + + + + Vibrating string modeler + Modelador de corda vibrant + + + + 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 + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + AU + + + + + Sound Kits + + + + + Type + Tipus + + + + Effects + + + + + 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 + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + Tipus: + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + 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: + Tipus: + + + + 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 + + Project Notes - Put down your project notes here. + + 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... @@ -5800,720 +11307,1751 @@ Reason: "%2" ProjectRenderer - WAV-File (*.wav) + + WAV (*.wav) - Compressed OGG-File (*.ogg) + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QObject + + + Reload Plugin + + + + + Show GUI + + + + + Help QWidget + + + + Name: Nom: + + URI: + + + + + + Maker: Fabricant: + + + Copyright: Copyright: + + Requires Real Time: Requereix Temps Real: + + + + + + Yes + + + + + + No No + + Real Time Capable: Capaç de Temps Real: + + In Place Broken: Trencat En Lloc: + + Channels In: Canals d'Entrada: + + Channels Out: Canals de Sortida: + + File: %1 + + + + File: Fitxer: + + + RecentProjectsMenu - File: %1 + + &Recently Opened Projects RenameDialog + Rename... + + ReverbSCControlDialog + + + Input + Entrada + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + Sortida + + + + 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 + + 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) - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - SampleTCOView + SampleClipView - double-click to select sample + + 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 + Inverteix mostra + + + + Set clip color + + + + + Use track color + + SampleTrack - Sample track - - - + Volume Volum + Panning + + + Mixer channel + + + + + + Sample track + + SampleTrackView + Track volume + Channel volume: + VOL + Panning + Panning: + PAN + + + Channel %1: %2 + + + + + SampleTrackWindow + + + GENERAL SETTINGS + + + + + Sample volume + + + + + Volume: + Volum: + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + SetupDialog - Setup LMMS + + Reset to default value - General settings + + Use built-in NaN handler - BUFFER SIZE + + Settings - Reset to default-value + + + General - MISC - - - - Enable tooltips - - - - Show restart warning after changing settings + + Graphical user interface (GUI) + Display volume as dBFS - Compress project files per default + + Enable tooltips - One instrument track window mode + + Enable master oscilloscope by default - HQ-mode for output audio-device + + Enable all note labels in piano roll - Compact track buttons + + 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 + Connectors + + + + 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 - Enable note labels in piano roll - - - - Enable waveform display by default - - - + Keep effects running even without input - Create backup file when saving a project + + + Audio + Àudio + + + + Audio interface - LANGUAGE + + HQ mode for output audio device - Paths + + Buffer size + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + LMMS working directory - VST-plugin directory + + VST plugins directory + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + Background artwork - STK rawwave directory + + Some changes require restarting. - Default Soundfont File + + Autosave interval: %1 - Performance settings + + Choose the LMMS working directory - UI effects vs. performance + + Choose your VST plugins directory - Smooth scroll in Song Editor + + Choose your LADSPA plugins directory - Show playback cursor in AudioFileProcessor + + Choose your default SF2 - Audio settings + + Choose your theme directory - AUDIO INTERFACE + + Choose your background picture - MIDI settings - - - - MIDI INTERFACE + + + Paths + OK + Cancel - Restart LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - - - + Frames: %1 Latency: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - - - - Choose your VST-plugin directory - - - - Choose artwork-theme directory - - - - Choose LADSPA plugin directory - - - - Choose STK rawwave directory - - - - Choose default SoundFont - - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - - - - Directories - - - - Themes directory - - - - GIG directory - - - - SF2 directory - - - - LADSPA plugin directories - - - - Auto save - - - + Choose your GIG directory + Choose your SF2 directory + minutes + minute - Enable auto-save - - - - Allow auto-save while playing - - - + Disabled + + + SidInstrument - Auto-save interval: %1 + + Cutoff frequency - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + Volum + + + + Chip model + + + + + SidInstrumentView + + + Volume: + Volum: + + + + Resonance: + Ressonància: + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + Decaïment: + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + Ona triangular + + + + Saw wave + Ona de serra + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + SideBarWidget + + + Close Song + Tempo + Master volume + Master pitch - Project saved + + Aborting project load - The project %1 is now saved. + + Project file contains local paths to plugins, which could be used to run malicious code. - Project NOT saved. - - - - The project %1 was not saved! - - - - Import file - - - - MIDI sequences - - - - Hydrogen projects - - - - All file types - - - - Empty project - - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - - - - Select directory for writing exported tracks... - - - - untitled - - - - Select file for project-export... - - - - The following errors occured while loading: - - - - MIDI File (*.mid) + + Can't load project: Project file contains local paths to plugins. + LMMS Error report - Save project + + (repeated %1 times) + + + + + The following errors occurred while loading: SongEditor + Could not open file No es pot obrir el fitxer - Could not write file - No es pot escriure el fitxer - - + 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 + No es pot escriure el fitxer + + + + 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. - Tempo - - - - TEMPO/BPM - - - - tempo of song - - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - High quality mode - - - - Master volume - - - - master volume - - - - Master pitch - - - - master pitch - - - - Value: %1% - - - - Value: %1 semitones - - - - 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. - - - - template - - - - project - - - + Version difference - This %1 was created with LMMS %2. + + 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) - Add beat/bassline - - - - Add sample-track - - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum + + Horizontal zooming - Linear Y axis + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum + + Hint - Linear Y axis - - - - Channel mode + + Move recording curser using <Left/Right> arrows SubWindow + Close + Maximize + Restore @@ -6521,81 +13059,110 @@ Remember to also save your project manually. You can choose to disable saving wh 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 @@ -6603,30 +13170,37 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units + + Time units + MIN + SEC + MSEC + BAR + BEAT + TICK @@ -6634,45 +13208,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - Enable/disable auto-scrolling + + Auto scrolling - Enable/disable loop-points + + Loop points - After stopping go back to begin + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - - Track + Mute - + Silenci + Solo @@ -6680,299 +13259,490 @@ Remember to also save your project manually. You can choose to disable saving wh 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... - TrackContentObject + Clip + Mute - + Silenci - TrackContentObjectView + ClipView + Current position - Hint - - - - Press <%1> and drag to make a copy. - - - + Current length - Press <%1> for free resizing. - - - + + %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. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Actions for this track + + Actions + + Mute - + Silenci + + Solo - Mute this track + + 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 - FX %1: %2 + + Channel %1: %2 + + Assign to new mixer Channel + + + + Turn all recording on + Turn all recording off - Assign to new FX Channel + + Change color + + + + + Reset color to default + + + + + Set random color + + + + + Clear clip colors TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 + + Modulate phase of oscillator 1 by oscillator 2 - Use amplitude modulation for modulating oscillator 1 with oscillator 2 + + Modulate amplitude of oscillator 1 by oscillator 2 - Mix output of oscillator 1 & 2 + + Mix output of oscillators 1 & 2 + Synchronize oscillator 1 with oscillator 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 + + Modulate frequency of oscillator 1 by oscillator 2 - Use phase modulation for modulating oscillator 2 with oscillator 3 + + Modulate phase of oscillator 2 by oscillator 3 - Use amplitude modulation for modulating oscillator 2 with oscillator 3 + + Modulate amplitude of oscillator 2 by oscillator 3 - Mix output of oscillator 2 & 3 + + Mix output of oscillators 2 & 3 + Synchronize oscillator 2 with oscillator 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 + + Modulate frequency of oscillator 2 by oscillator 3 + Osc %1 volume: Volum d'osc %1: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - - - + Osc %1 panning: Panorama d'osc %1: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - - - + Osc %1 coarse detuning: + semitones - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - - - + Osc %1 fine detuning left: + + cents cents - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 fine detuning right: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 phase-offset: + + degrees - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - - - + Osc %1 stereo phase-detuning: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. + + Sine wave + Ona sinusoïdal + + + + Triangle wave + Ona triangular + + + + Saw wave + Ona de serra + + + + Square wave + Ona quadrada + + + + Moog-like saw wave - Use a sine-wave for current oscillator. + + Exponential wave - Use a triangle-wave for current oscillator. + + White noise - Use a saw-wave for current oscillator. + + User-defined wave + + + + + VecControls + + + Display persistence amount - Use a square-wave for current oscillator. + + Logarithmic scale - Use a moog-like saw-wave for current oscillator. + + High quality + + + + + VecControlsDialog + + + HQ - Use an exponential wave for current oscillator. + + Double the resolution and simulate continuous analog-like trace. - Use white-noise for current oscillator. + + Log. scale - Use a user-defined waveform for current oscillator. + + 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? @@ -6980,156 +13750,117 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - Open other VST-plugin + + + Open VST plugin - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. + + Control VST plugin from LMMS host - Show/hide GUI - - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - - - - Turn off all notes - - - - Open VST-plugin - - - - DLL-files (*.dll) - - - - EXE-files (*.exe) - - - - No VST-plugin loaded - - - - Control VST-plugin from LMMS host - - - - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset + Previous (-) - Click here, if you want to switch to another VST-plugin preset program. - - - + Save preset - Click here, if you want to save current VST-plugin preset program. - - - + Next (+) - Click here to select presets that are currently loaded in VST. + + Show/hide GUI + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + No VST plugin loaded + + + + Preset + by + - VST plugin control - - VisualizationWidget - - click to enable/disable visualization of master-output - - - - Click to enable - - - VstEffectControlDialog + Show/hide - Control VST-plugin from LMMS host + + Control VST plugin from LMMS host - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset + Previous (-) - Click here, if you want to switch to another VST-plugin preset program. - - - + Next (+) - Click here to select presets that are currently loaded in VST. - - - + Save preset - Click here, if you want to save current VST-plugin preset program. - - - + + Effect by: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7137,173 +13868,207 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - Loading plugin - Carregant connector + + + The VST plugin %1 could not be loaded. + + Open Preset + + Vst Plugin Preset (*.fxp *.fxb) + : default - " - - - - ' - - - + Save Preset + .fxp + .FXP + .FXB + .fxb - Please wait while loading VST plugin... - + + Loading plugin + Carregant connector - The VST plugin %1 could not be loaded. + + 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 @@ -7311,2666 +14076,2251 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - Select oscillator A1 - - - - Select oscillator A2 - - - - Select oscillator B1 - - - - Select oscillator B2 - - - - Mix output of A2 to A1 - - - - Modulate amplitude of A1 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with output of B2 - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - Load waveform - - - - Click to load a waveform from a sample file - - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - Normalitza - - - Click to normalize - - - - Invert - - - - Click to invert - - - - Smooth - Suavitza - - - Click to smooth - - - - Sine wave - Ona sinusoïdal - - - Click for sine wave - - - - Triangle wave - Ona triangular - - - Click for triangle wave - - - - Click for saw wave - - - - Square wave - Ona quadrada - - - Click for square wave - - - + + + + Volume Volum + + + + 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 + Normalitza + + + + + Invert + + + + + + Smooth + Suavitza + + + + + Sine wave + Ona sinusoïdal + + + + + + Triangle wave + Ona triangular + + + + Saw wave + Ona de serra + + + + + Square wave + Ona quadrada + + + + Xpressive + + + 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 + Ona sinusoïdal + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + Ona de serra + + + + + User-defined wave + + + + + + Triangle wave + Ona triangular + + + + + Square wave + Ona 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 frequency - Filter Resonance + + Filter resonance + Bandwidth - FM Gain + + FM gain - Resonance Center Frequency + + Resonance center frequency - Resonance Bandwidth + + Resonance bandwidth - Forward MIDI Control Change Events + + Forward MIDI control change events ZynAddSubFxView - Show GUI - - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - - - + Portamento: + PORT - Filter Frequency: + + Filter frequency: + FREQ - Filter Resonance: + + Filter resonance: + RES + Bandwidth: + BW - FM Gain: + + FM gain: + FM GAIN + Resonance center frequency: + RES CF + Resonance bandwidth: + RES BW - Forward MIDI Control Changes + + Forward MIDI control changes + + + + + Show GUI - audioFileProcessor + AudioFileProcessor + Amplify Amplificar + Start of sample Inici de la mostra + End of sample Fi de la mostra - Reverse sample - Inverteix mostra - - - Stutter - - - + Loopback point + + Reverse sample + Inverteix mostra + + + Loop mode + + Stutter + + + + Interpolation mode + None + Linear + Sinc + Sample not found: %1 - bitInvader + BitInvader - Samplelength - Longitud de mostra + + Sample length + - bitInvaderView + BitInvaderView - Sample Length - Longitud de la Mostra - - - Sine wave - Ona sinusoïdal - - - Triangle wave - Ona triangular - - - Saw wave - Ona de serra - - - Square wave - Ona quadrada - - - White noise wave - Ona de soroll blanc - - - User defined wave - Ona arbitrària - - - Smooth - Suavitza - - - Click here to smooth waveform. - Pica aquí per a suavitzar la forma d'ona. - - - Interpolation - Interpolació - - - Normalize - Normalitza + + Sample length + + Draw your own waveform here by dragging your mouse on this graph. - Click for a sine-wave. + + + Sine wave + Ona sinusoïdal + + + + + Triangle wave + Ona triangular + + + + + Saw wave + Ona de serra + + + + + Square wave + Ona quadrada + + + + + White noise - Click here for a triangle-wave. - - - - Click here for a saw-wave. - - - - Click here for a square-wave. - - - - Click here for white-noise. - - - - Click here for a user-defined shape. - - - - - dynProcControlDialog - - INPUT - - - - Input gain: - - - - OUTPUT - - - - Output gain: - - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Reset waveform - - - - Click here to reset the wavegraph back to default + + + User-defined wave + + Smooth waveform - Click here to apply smoothing to wavegraph + + Interpolation + Interpolació + + + + Normalize + Normalitza + + + + DynProcControlDialog + + + INPUT - Increase wavegraph amplitude by 1dB + + Input gain: - Click here to increase wavegraph amplitude by 1dB + + OUTPUT - Decrease wavegraph amplitude by 1dB + + Output gain: - Click here to decrease wavegraph amplitude by 1dB + + ATTACK - Stereomode Maximum + + 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 - Stereomode Average + + Stereo mode: average + Process based on the average of both stereo channels - Stereomode Unlinked + + Stereo mode: unlinked + Process each stereo channel independently - dynProcControls + DynProcControls + Input gain + Output gain + Attack time + Release time + Stereo mode - - fxLineLcdSpinBox - - Assign to: - - - - New FX Channel - - - graphModel + Graph - kickerInstrument + KickerInstrument + Start frequency Freqüència inicial + End frequency Freqüència final - Gain - Guany - - + Length - Distortion Start + + Start distortion - Distortion End + + End distortion - Envelope Slope + + Gain + Guany + + + + Envelope slope + Noise + Click - Frequency Slope + + Frequency slope + Start from note + End to note - kickerInstrumentView + KickerInstrumentView + Start frequency: Freqüència inicial: + End frequency: Freqüència final: + + Frequency slope: + + + + Gain: Guany: - Frequency Slope: + + Envelope length: - Envelope Length: - - - - Envelope Slope: + + Envelope slope: + Click: + Noise: - Distortion Start: + + Start distortion: - Distortion End: + + End distortion: - ladspaBrowserView + LadspaBrowserView + + Available Effects Efectes Disponibles + + Unavailable Effects Efectes No Disponibles + + Instruments Instruments + + Analysis Tools Eines d'Anàlisi + + Don't know Desconeguts - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Aquest diàleg mostra informació de tots els connectors LADSPA que LMMS ha pogut trobar. Els connectors estan dividits en cinc categories basades en la interpretació dels tipus i noms dels ports. - -Efectes Disponibles són aquells que LMMS pot usar. Per a que LMMS pugui usar un efecte, primerament, ha de ser un efecte, és a dir, ha de tenir canals d'entrada i de sortida. LMMS identifica un canal d'entrada com a un port d'àudio que conté 'in' al nom. Els canals de sortida són identificats amb les lletres 'out'. A més, l'efecte ha de tenir el mateix nombre d'entrades que de sortides i ser capaç de temps real. - -Efectes No Disponibles són aquells que han estat identificats com a efectes, però no tenen el mateix nombre d'entrades que de sortides o no són capaços de temps real. - -Instruments són connectors on només s'han identificat canals de sortida. - -Eines d'Anàlisi són connectors on només s'han identificat canals d'entrada. - -Desconeguts són connectors on no s'han identificat canals d'entrada o sortida. - -Fent doble clic a qualsevol connector mostrarà informació sobre els ports. - - + Type: Tipus: - ladspaDescription + LadspaDescription + Plugins Connectors + Description Descripció - ladspaPortDialog + LadspaPortDialog + Ports Ports + Name Nom + Rate Taxa + Direction Direcció + Type Tipus + Min < Default < Max Mín < Defecte < Màx + Logarithmic Logarítmic + SR Dependent Depenent SR + Audio Àudio + Control Control + Input Entrada + Output Sortida + Toggled Commutat + Integer Enter + Float Flotant + + Yes - lb302Synth + Lb302Synth + VCF Cutoff Frequency Freqüència de Tall VCF + VCF Resonance Ressonància VCF + VCF Envelope Mod Mod Envoltant VCF + VCF Envelope Decay Decaïment Envoltant VCF + Distortion Distorsió + Waveform Forma d'ona + Slide Decay Decaïment de Lliscament + Slide Lliscament + Accent Accent + Dead Mort + 24dB/oct Filter Filtre 24dB/oct - lb302SynthView + Lb302SynthView + Cutoff Freq: Freq Tall: + Resonance: Ressonància: + Env Mod: Mod Env: + Decay: Decaïment: + 303-es-que, 24dB/octave, 3 pole filter 303-es-que, 24dB/octava, filtre 3 pols + Slide Decay: Decaïment de Lliscament: + DIST: DIST: + Saw wave Ona de serra + Click here for a saw-wave. + Triangle wave Ona triangular + Click here for a triangle-wave. + Square wave Ona quadrada + 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 Ona sinusoïdal + Click for a sine-wave. + + White noise wave Ona de soroll blanc + 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 + MalletsInstrument + Hardness Duresa + Position Posició - Vibrato Gain - Guany de Vibrat + + Vibrato gain + - Vibrato Freq - Freq de Vibrat + + Vibrato frequency + - Stick Mix - Mescla de Pals + + Stick mix + + Modulator Modulador + Crossfade Entremescla - LFO Speed - Velocitat OBF + + LFO speed + - LFO Depth - Profunditat OBF + + LFO depth + + ADSR ADSR + Pressure Pressió + Motion Moviment + Speed Velocitat + Bowed Doblegat + Spread Dispersió + Marimba Marimba + Vibraphone Vibràfon + Agogo Agogo - Wood1 - Fusta1 + + Wood 1 + + Reso Reso - Wood2 - Fusta2 + + Wood 2 + + Beats Batecs - Two Fixed - Fixat a Dos + + Two fixed + + Clump Grup - Tubular Bells - Campanes Tubulars + + Tubular bells + - Uniform Bar - Barra Uniforme + + Uniform bar + - Tuned Bar - Barra Afinada + + Tuned bar + + Glass Cristall - Tibetan Bowl - Bol Tibetà + + Tibetan bowl + - malletsInstrumentView + MalletsInstrumentView + Instrument Instrument + Spread Dispersió + Spread: Dispersió: - Hardness - Duresa - - - Hardness: - Duresa: - - - Position - Posició - - - Position: - Posició: - - - Vib Gain - Guany Vib - - - Vib Gain: - Guany Vib: - - - Vib Freq - Freq Vib - - - Vib Freq: - Freq Vib: - - - Stick Mix - Mescla de Pals - - - Stick Mix: - Mescla de Pals: - - - Modulator - Modulador - - - Modulator: - Modulador: - - - Crossfade - Entremescla - - - Crossfade: - Entremescla: - - - LFO Speed - Velocitat OBF - - - LFO Speed: - Velocitat OBF: - - - LFO Depth - Profunditat OBF - - - LFO Depth: - Profunditat OBF: - - - ADSR - ADSR - - - ADSR: - ADSR: - - - Pressure - Pressió - - - Pressure: - Pressió: - - - Speed - Velocitat - - - Speed: - Velocitat: - - + Missing files + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + Hardness + Duresa + + + + Hardness: + Duresa: + + + + Position + Posició + + + + Position: + Posició: + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + Modulador + + + + Modulator: + Modulador: + + + + Crossfade + Entremescla + + + + Crossfade: + Entremescla: + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Pressió + + + + Pressure: + Pressió: + + + + Speed + Velocitat + + + + Speed: + Velocitat: + - manageVSTEffectView + ManageVSTEffectView + - VST parameter control - VST Sync - - - - Click here if you want to synchronize all parameters with VST plugin. + + VST sync + + Automated - Click here if you want to display automated parameters only. - - - + Close - - Close VST effect knob-controller window. - - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control + VST Sync - Click here if you want to synchronize all parameters with VST plugin. - - - + + Automated - Click here if you want to display automated parameters only. - - - + Close - - Close VST plugin knob-controller window. - - - opl2instrument - - Patch - Pedaç - - - Op 1 Attack - - - - Op 1 Decay - - - - Op 1 Sustain - - - - Op 1 Release - - - - Op 1 Level - - - - Op 1 Level Scaling - - - - Op 1 Frequency Multiple - - - - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - - - - Vibrato Depth - - - - Tremolo Depth - - - - - opl2instrumentView - - Attack - - - - Decay - - - - Release - - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion Distorsió + Volume Volum - organicInstrumentView + OrganicInstrumentView + Distortion: Distorsió: + Volume: Volum: + Randomise Aleatoritza + + Osc %1 waveform: Forma d'ona d'osc %1: + Osc %1 volume: Volum d'osc %1: + Osc %1 panning: Panorama d'osc %1: - cents - cents - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - - + Osc %1 stereo detuning + + cents + cents + + + Osc %1 harmonic: - FreeBoyInstrument - - Sweep time - - - - Sweep direction - - - - Sweep RtShift amount - - - - Wave Pattern Duty - - - - Channel 1 volume - - - - Volume sweep direction - - - - Length of each step in sweep - - - - Channel 2 volume - - - - Channel 3 volume - - - - Channel 4 volume - - - - 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 - - - - Shift Register width - - - - - FreeBoyInstrumentView - - Sweep Time: - - - - Sweep Time - - - - Sweep RtShift amount: - - - - Sweep RtShift amount - - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - - - - Length of each step in sweep: - - - - Length of each step in sweep - - - - Wave pattern duty - - - - Square Channel 2 Volume: - - - - Square Channel 2 Volume - - - - Wave Channel Volume: - - - - Wave 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 - - - - Channel1 to SO1 (Right) - - - - Channel2 to SO1 (Right) - - - - Channel3 to SO1 (Right) - - - - Channel4 to SO1 (Right) - - - - Channel1 to SO2 (Left) - - - - Channel2 to SO2 (Left) - - - - Channel3 to SO2 (Left) - - - - Channel4 to SO2 (Left) - - - - Wave Pattern - - - - The amount of increase or decrease in frequency - - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - - - - Draw the wave here - - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank Banc + Program selector + Patch Pedaç + Name Nom + OK + Cancel - pluginBrowser - - no description - sense descripció - - - Incomplete monophonic imitation tb303 - Imitació monofònica incompleta tb303 - - - Plugin for freely manipulating stereo output - Connector per a manipular lliurement la sortida estèreo - - - Plugin for controlling knobs with sound peaks - Connector per a controlar rodes amb pics de so - - - Plugin for enhancing stereo separation of a stereo input file - Connector per a millorar la separació estèreo - - - List installed LADSPA plugins - Llista connectors LADSPA instal·lats - - - GUS-compatible patch instrument - Instrument de pedaç compatible GUS - - - Additive Synthesizer for organ-like sounds - Sintetitzador Additiu per a sons com d'orgue - - - Tuneful things to bang on - Coses melòdiques per a fer soroll - - - VST-host for using VST(i)-plugins within LMMS - servidor VST per a usar connectors VST(i) amb LMMS - - - Vibrating string modeler - Modelador de corda vibrant - - - plugin for using arbitrary LADSPA-effects inside LMMS. - connector per a usar efectes LADSPA arbitraris a LMMS. - - - Filter for importing MIDI-files into LMMS - Filtre per a importar fitxers MIDI a LMMS - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - - - - Player for SoundFont files - - - - Emulation of GameBoy (TM) APU - - - - Customizable wavetable synthesizer - - - - Embedded ZynAddSubFX - - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - - - - LMMS port of sfxr - - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - - - - Carla Rack Instrument - - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - - - - plugin for using arbitrary VST effects inside LMMS. - - - - Graphical spectrum analyzer plugin - - - - A NES-like synthesizer - - - - A native delay plugin - - - - Player for GIG files - - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - - - - - sf2Instrument + Sf2Instrument + Bank Banc + Patch Pedaç + Gain Guany + Reverb Reverberació - Reverb Roomsize - Cambra de Reverberació + + Reverb room size + - Reverb Damping - Esmorteïment de Reverberació + + Reverb damping + - Reverb Width - Amplada de Reverberació + + Reverb width + - Reverb Level - Nivell de Reverberació + + Reverb level + + Chorus Cor - Chorus Lines - Línies de Cor + + Chorus voices + - Chorus Level - Nivell de Cor + + Chorus level + - Chorus Speed - Velocitat de Cor + + Chorus speed + - Chorus Depth - Profunditat de Cor + + Chorus depth + + A soundfont %1 could not be loaded. - sf2InstrumentView - - Open other SoundFont file - Obre altre fitxer SoundFont - - - Click here to open another SF2 file - Pica aquí per a obrir un altre fitxer SF2 - - - Choose the patch - Escull el pedaç - - - Gain - Guany - - - Apply reverb (if supported) - Aplica reverberació (si està suportat) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Aquest botó habilita l'efecte de reverberació. Això aconsegueix efectes genials, però només funciona amb fitxers que ho suportin. - - - Reverb Roomsize: - Cambra de Reverberació: - - - Reverb Damping: - Esmorteïment de Reverberació: - - - Reverb Width: - Amplada de Reverberació: - - - Reverb Level: - Nivell de Reverberació: - - - Apply chorus (if supported) - Aplica cor (si està suportat) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Aquest botó habilita l'efecte de cor. Això aconsegueix efectes d'eco genials, però només funciona amb fitxers que ho suportin. - - - Chorus Lines: - Línies de Cor: - - - Chorus Level: - Nivell de Cor: - - - Chorus Speed: - Velocitat de Cor: - - - Chorus Depth: - Profunditat de Cor: - + Sf2InstrumentView + + Open SoundFont file Obre fitxer SoundFont - SoundFont2 Files (*.sf2) + + Choose patch + + + + + Gain: + Guany: + + + + Apply reverb (if supported) + Aplica reverberació (si està suportat) + + + + Room size: + + + + + Damping: + + + + + Width: + Amplada: + + + + + Level: + + + + + Apply chorus (if supported) + Aplica cor (si està suportat) + + + + Voices: + + + + + Speed: + Velocitat: + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) - sfxrInstrument + SfxrInstrument - Wave Form + + Wave - sidInstrument + StereoEnhancerControlDialog - Cutoff + + WIDTH - Resonance - - - - Filter type - - - - Voice 3 off - - - - Volume - Volum - - - Chip model - - - - - sidInstrumentView - - Volume: - Volum: - - - Resonance: - Ressonància: - - - Cutoff frequency: - - - - High-Pass filter - - - - Band-Pass filter - - - - Low-Pass filter - - - - Voice3 Off - - - - MOS6581 SID - - - - MOS8580 SID - - - - Attack: - - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - - - - Decay: - Decaïment: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - Sustain: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - Release: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - Pulse Width: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - Coarse: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - Pulse Wave - - - - Triangle Wave - - - - SawTooth - - - - Noise - - - - Sync - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - Ring-Mod - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - Filtered - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - Test - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - - - - - stereoEnhancerControlDialog - - WIDE - AMPLE - - + Width: Amplada: - stereoEnhancerControls + StereoEnhancerControls + Width Amplada - stereoMatrixControlDialog + StereoMatrixControlDialog + Left to Left Vol: Volum Esquerra a Esquerra: + Left to Right Vol: Volum Esquerra a Dreta: + Right to Left Vol: Volum Dreta a Esquerra: + Right to Right Vol: Volum Dreta a Dreta: - stereoMatrixControls + StereoMatrixControls + Left to Left Esquerra a Esquerra + Left to Right Esquerra a Dreta + Right to Left Dreta a Esquerra + Right to Right Dreta a Dreta - vestigeInstrument + VestigeInstrument + Loading plugin Carregant connector - Please wait while loading VST-plugin... - Per favor, espera mentre es carrega el connector VST... + + Please wait while loading the VST plugin... + - vibed + Vibed + String %1 volume Volum de corda %1 + String %1 stiffness Rigidesa de corda %1 + Pick %1 position Posició per a tocar %1 + Pickup %1 position Posició per a recollir %1 - Pan %1 - Panorama %1 + + String %1 panning + - Detune %1 - Desafinament %1 + + String %1 detune + - Fuzziness %1 - Arrissada %1 + + String %1 fuzziness + - Length %1 - Longitud %1 + + String %1 length + + Impulse %1 Impuls %1 - Octave %1 - Octava %1 + + String %1 + - vibedView + VibedView - Volume: - Volum: - - - The 'V' knob sets the volume of the selected string. - La roda 'V' ajusta el volum de la corda seleccionada. + + String volume: + + String stiffness: Rigidesa de corda: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - La roda 'S' ajusta la rigidesa de la corda seleccionada. La rigidesa de la corda afecta el temps que la corda ressonarà. Quan més baix el valor, més temps sonarà la corda. - - + Pick position: Posició per a tocar: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - La roda 'P' ajusta la posició on serà tocada la corda seleccionada. Quan més baix el valor, es toca més a prop del pont. - - + Pickup position: Posició per a recollir: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - La roda 'PU' ajusta la posició on les vibracions seran monitoritzades per a la corda seleccionada. Quan més baix aquest valor, la recollida és més a prop del pont. + + String panning: + - Pan: - Panorama: + + String detune: + - The Pan knob determines the location of the selected string in the stereo field. - La roda Pan determina la localització de la corda seleccionada al camp estèreo. + + String fuzziness: + - Detune: - Desafinament: + + String length: + - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - La roda Detune modifica el to de la corda seleccionada. Valors menors que zero faran que la corda soni amb bemoll. Valors majors que zero faran que la corda soni amb sostingut. - - - Fuzziness: - Arrissada: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - La roda Slap afegeix una mica d'arrissada a la corda seleccionada que és més notable durant l'atac, encara que també pot usar-se per a que la corda soni més 'metàl·lica'. - - - Length: - Longitud: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - La roda Length ajusta la longitud de la corda seleccionada. Les cordes més llargues sonaran a la vegada més temps i més brillants, emperò també es menjaran més cicles de CPU. - - - Impulse or initial state - Impuls o estat inicial - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - El selector 'Imp' determina si la forma d'ona del gràfic s'ha de tractar com un impuls impartit a la corda quan es toca o l'estat inicial de la corda. + + Impulse + + Octave Octava - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - El selector Octava s'usa per a escollir a quin harmònic de la nota la corda sonarà. Per exemple, '-2' significa que la corda sonarà dues octaves per sota de la fonamental, 'F' significa que la corda sonarà a la fonamental, i '6' significa que la corda sonarà sis octaves per sobre de la fonamental. - - + Impulse Editor Editor d'Impuls - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - L'editor de forma d'ona dóna control sobre l'estat inicial o impuls que s'utilitza per a iniciar la corda vibrant. Els botons de la dreta del gràfic inicialitzaran la forma d'ona al tipus seleccionat. El botó '?' carregarà la forma d'ona des d'un fitxer; només es carregaran les primeres 128 mostres. - -La forma d'ona també pot dibuixar-se al gràfic. - -El botó 'S' suavitzarà la forma d'ona. - -El botó 'N' normalitzarà la forma d'ona. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Vibed modela fins a nou cordes vibrants independents. El selector 'String' et permet escollir quina corda s'està editant. El selector 'Imp' escull si el gràfic representa un impuls o l'estat inicial de la corda. El selector 'Octave' escull a quin harmònic la corda ha de vibrar. - -El gràfic et permet controlar l'estat inicial o impuls usat per a posar la corda en marxa. - -La roda 'V' controla el volum. La roda 'S' controla la rigidesa de la corda. La roda 'P' controla la posició per a tocar. La roda 'PU' controla la posició per a recollir. - -Probablement no cal explicar 'Pan' i 'Detune'. La roda 'Slap' afegeix una mica d'arrissada al so de la corda. - -La roda 'Length' controla la longitud de la corda. - -El LED a la cantonada dreta baixa de l'editor de forma d'ona determina si la corda està activa a l'instrument actual. - - + Enable waveform Habilita forma d'ona - Click here to enable/disable waveform. - Pica aquí per a activar/desactivar la forma d'ona. + + Enable/disable string + + String Corda - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - El selector String s'usa per a escollir quina corda estan editant els controls. Un instrument Vibed pot tenir fins a nou cordes vibrants independents. El LED a la cantonada dreta baixa de l'editor de forma d'ona indica si la corda seleccionada està activa. - - + + Sine wave Ona sinusoïdal + + Triangle wave Ona triangular + + Saw wave Ona de serra + + Square wave Ona quadrada - White noise wave - Ona de soroll blanc - - - User defined wave - Ona arbitrària - - - Smooth - Suavitza - - - Click here to smooth waveform. - Pica aquí per a suavitzar la forma d'ona. - - - Normalize - Normalitza - - - Click here to normalize waveform. - Pica aquí per a normalitzar la forma d'ona. - - - Use a sine-wave for current oscillator. + + + White noise - Use a triangle-wave for current oscillator. + + + User-defined wave - Use a saw-wave for current oscillator. + + + Smooth waveform - Use a square-wave for current oscillator. - - - - Use white-noise for current oscillator. - - - - Use a user-defined waveform for current oscillator. + + + Normalize waveform - voiceObject + 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 + WaveShaperControlDialog + INPUT + Input gain: + OUTPUT + Output gain: - Reset waveform + + + Reset wavegraph - Click here to reset the wavegraph back to default + + + Smooth wavegraph - Smooth waveform + + + Increase wavegraph amplitude by 1 dB - Click here to apply smoothing to wavegraph - - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB + Clip input - Clip input signal to 0dB + + Clip input signal to 0 dB - waveShaperControls + WaveShaperControls + Input gain + Output gain - \ No newline at end of file + diff --git a/data/locale/cs.ts b/data/locale/cs.ts index 6e2435a4d..0ed175022 100644 --- a/data/locale/cs.ts +++ b/data/locale/cs.ts @@ -2,69 +2,68 @@ AboutDialog - + About LMMS O LMMS - + LMMS LMMS - - Version %1 (%2/%3, Qt %4, %5) - Verze %1 (%2/%3, Qt %4, %5) + + Version %1 (%2/%3, Qt %4, %5). + Verze %1 (%2/%3, Qt %4, %5). - + About O LMMS - - LMMS - easy music production for everyone - LMMS – snadné vytváření hudby pro každého + + LMMS - easy music production for everyone. + LMMS – snadné vytváření hudby pro každého. - - Copyright © %1 - Copyright © %1 + + Copyright © %1. + Autorská práva © %1. - - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">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> + <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#33cc33;">https://lmms.io</span></a></p></body></html> - + Authors Autoři - + Involved Spolupracovníci - + Contributors ordered by number of commits: Přispěvatelé řazení podle počtu příspěvků: - + Translation Překlad - + 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! - Chcete-li vylepšit stávající překlad, Vaše pomoc bude vítána! Stačí jen kontaktovat vývojáře! + Máte-li chuť překládat LMMS do jiného jazyka nebo chcete-li vylepšit stávající překlad, Vaše pomoc bude vítána. Stačí jen kontaktovat správce! - + License Licence @@ -151,106 +150,60 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorView - - Open other sample - Otevřít jiný sampl + + Open sample + Načíst sampl - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Klepnutím sem můžete otevřít jiný audio soubor. Zobrazí se dialog, pomocí kterého si soubor můžete vybrat. Nastavení smyčky, počátečního a koncového bodu, zesílení apod. zůstanou nezměněná, takže to nemusí znít jako původní sampl. - - - + Reverse sample Přehrávat pozpátku - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Zapnete-li toto tlačítko, celý sampl bude přehráván pozpátku. Tato volba je užitečná pro zajímavé efekty jako např. pozpátku přehraná srážka. - - - + Disable loop Vypnout smyčku - - This button disables looping. The sample plays only once from start to end. - Toto tlačítko vypne smyčku. Sampl bude přehrán jen jednou od začátku do konce. - - - - + Enable loop Zapnout smyčku - - This button enables forwards-looping. The sample loops between the end point and the loop point. - Toto tlačítko zapne smyčku směrem dopředu. Vzorek se bude vracet z koncového bodu na začátek. + + Enable ping-pong loop + Zapnout ping-pongovou smyčku - - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Toto tlačítko zapne smyčku typu ping-pong. Vzorek bude přehráván dopředu a zpět mezi koncovým bodem a začátkem smyčky. - - - + Continue sample playback across notes Pokračovat v přehrávání samplu přes znějící tóny - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Povolení této možnosti způsobí, že se sampl bude přehrávat přes různé tóny – když změníte výšku tónu nebo když tón skončí před koncem samplu, bude další přehrávaný tón pokračovat tam, kde přestal. Pro obnovení přehrávání od začátku samplu vložte tón do spodní části klávesnice (< 20 Hz) - - - + Amplify: Zesílení: - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Tímto otočným ovladačem můžete nastavit poměr zesílení. Pokud nastavíte hodnotu 100%, sampl se nezmění. Jinak se zesílí nebo ztiší (váš stávající soubor samplu tím nebude nijak ovlivněn!) + + Start point: + Počáteční bod: - - Startpoint: - Začátek samplu: + + End point: + Koncový bod: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Tímto otočným ovladačem můžete nastavit bod, od kterého bude AudioFileProcessor přehrávat váš sampl. - - - - Endpoint: - Konec samplu: - - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Tímto otočným ovladačem můžete nastavit bod, ve kterém AudioFileProcessor zastaví přehrávání vašeho samplu. - - - + Loopback point: Začátek smyčky: - - - With this knob you can set the point where the loop starts. - Tímto otočným ovladačem můžete nastavit bod, kterým začíná smyčka. - AudioFileProcessorWaveView - + Sample length: Délka samplu: @@ -258,163 +211,168 @@ If you're interested in translating LMMS in another language or want to imp 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 + + Client name + Jméno klienta - - CHANNELS - KANÁLY + + Channels + Kanály - AudioOss::setupWidget + AudioOss - DEVICE - ZAŘÍZENÍ + Device + Zařízení - CHANNELS - KANÁLY + Channels + Kanály AudioPortAudio::setupWidget - - BACKEND - OVLADAČ + + Backend + Backend - - DEVICE - ZAŘÍZENÍ + + Device + Zařízení - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - ZAŘÍZENÍ + Device + Zařízení - CHANNELS - KANÁLY + Channels + Kanály AudioSdl::setupWidget - - DEVICE - ZAŘÍZENÍ + + Device + Zařízení - AudioSndio::setupWidget + AudioSndio - DEVICE - ZAŘÍZENÍ + Device + Zařízení - CHANNELS - KANÁLY + Channels + Kanály AudioSoundIo::setupWidget - - BACKEND - OVLADAČ + + Backend + Backend - - DEVICE - ZAŘÍZENÍ + + 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... @@ -422,385 +380,300 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditor - - Please open an automation pattern with the context menu of a control! + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + 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í! - - - Values copied - Hodnoty zkopírovány - - - - All selected values were copied to the clipboard. - Všechny označené hodnoty byly zkopírovány do schránky. - AutomationEditorWindow - - Play/pause current pattern (Space) + + Play/pause current clip (Space) Přehrát/Pozastavit přehrávání aktuálního záznamu (mezerník) - - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Klepněte sem, pokud chcete přehrát aktuální záznam. To je užitečné při editaci. Záznam je automaticky přehráván ve smyčce. - - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Zastavit přehrávání aktuálního záznamu (mezerník) - - Click here if you want to stop playing of the current pattern. - Klepněte sem, pokud chcete zastavit přehrávání aktuálního záznamu. - - - + 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) + + + + Flip vertically Převrátit vertikálně - + Flip horizontally Převrátit horizontálně - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Klepněte sem, pokud chcete převrátit záznam. Body budou převráceny v ose y. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Klepněte sem, pokud chcete převrátit záznam. Body budou převráceny v ose x. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Klepněte sem, pokud chcete aktivovat režim kreslení. V tomto výchozím a nejčastěji užívaném režimu lze přidávat a přesunovat jednotlivé hodnoty. Pro aktivaci můžete využít též klávesové zkratky "Shift+D". - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Klepněte sem, pokud chcete aktivovat režim mazání. V tomto režimu lze mazat jednotlivé hodnoty. Pro aktivaci můžete využít též klávesové zkratky "Shift+E". - - - + 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 - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Vyšší hodnota napětí vytvoří hladší křivku, ale více se vzdálí od zadaných hodnot. Nižší hodnota napětí upřednostní výchozí sklon křivky v každém kontrolním bodě. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Klepnutím sem vyberete terasovitý vývoj pro tento automatizační záznam. Hodnota připojeného objektu zůstane neměnná mezi ovládacími body a okamžitě bude nastavena na novou hodnotu, když se dosáhne dalšího ovládacího bodu. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Klepnutím sem vyberete lineární vývoj pro tento automatizační záznam. Hodnota připojeného objektu bude mezi ovládacími body měněna přímočaře, aby postupně došlo k dosažení dalšího kontrolního bodu. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Klepnutím sem vyberte vývoj typu cubic hermite pro tento automatizační záznam. Hodnota připojeného objektu se změní po plynulé křivce a hladce přejde do vrchních i spodních bodů. - - - + Tension: Napětí: - - Cut selected values (%1+X) - Vyjmout označené hodnoty (%1+X) - - - - Copy selected values (%1+C) - Kopírovat označené hodnoty (%1+C) - - - - Paste values from clipboard (%1+V) - Vložit hodnoty ze schránky (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klepněte sem, pokud chcete označené hodnoty vyjmout a uložit do schránky. Vložit je pak můžete kdekoliv v libovolném záznamu pomocí tlačítka Vložit. - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klepněte sem, pokud chcete označené hodnoty zkopírovat do schránky. Vložit je pak můžete kdekoliv v libovolném záznamu pomocí tlačítka Vložit. - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Klepnete-li sem, budou hodnoty ze schránky vloženy do prvního viditelného taktu. - - - + 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 - - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Kvantizace. Nastaví nejmenší velikost kroku pro body automatizace. Ve výchozím stavu také nastaví délku a vymazává další body v rozsahu. Stisknutím <Ctrl> zrušíte toto chování. - - - - - Automation Editor - no pattern + + + Automation Editor - no clip Editor automatizace – žádný záznam - - + + Automation Editor - %1 Editor automatizace – %1 - - Model is already connected to this pattern. + + Model is already connected to this clip. Model je již k tomuto záznamu připojen. - AutomationPattern + AutomationClip - + Drag a control while pressing <%1> Ovládací prvek táhni při stisknutém <%1> - AutomationPatternView + AutomationClipView - - double-click to open this pattern in automation editor - dvojklikem otevřít tento pattern v Editoru automatizace - - - + 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 pattern. + + Model is already connected to this clip. Model je již k tomuto záznamu připojen. AutomationTrack - + Automation track Stopa automatizace - BBEditor + 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) - - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Klepněte sem, pokud chcete přehrát aktuální záznam bicích/basů. Bicí/basy jsou automaticky přehrávány ve smyčce. - - - - Click here to stop playing of current beat/bassline. - Klepněte sem, pokud chcete zastavit přehrávání aktuálního záznamu bicích/basů. - - - + 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 + + + + 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 - BBTCOView + PatternClipView - + Open in Beat+Bassline-Editor Otevřít v editoru bicích/basů - + Reset name Resetovat jméno - + Change name Změnit jméno - - - Change color - Změnit barvu - - - - Reset color to default - Obnovit výchozí barvy - - BBTrack + PatternTrack - + Beat/Bassline %1 Bicí/basy %1 - + Clone of %1 Klon z %1 @@ -876,7 +749,7 @@ If you're interested in translating LMMS in another language or want to imp - Input Gain: + Input gain: Zesílení vstupu: @@ -886,12 +759,12 @@ If you're interested in translating LMMS in another language or want to imp - Input Noise: + Input noise: Vstup šumu: - Output Gain: + Output gain: Zesílení výstupu: @@ -901,84 +774,2296 @@ If you're interested in translating LMMS in another language or want to imp - Output Clip: + Output clip: Oříznutí výstupu: - - Rate Enabled + + Rate enabled Frekvence zapnuta - - Enable samplerate-crushing + + Enable sample-rate crushing Zapnout drtič vzorkovací frekvence - - Depth Enabled + + Depth enabled Hloubka zapnuta - - Enable bitdepth-crushing + + 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ě: - CaptionMenu + 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 + + + + CarlaAboutW + + + About Carla + + + + + About + O LMMS + + + + About text here + + + + + Extended licensing here + + + + + 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 + Licence + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Soubor + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help &Nápověda - - Help (not available) - Nápověda (nedostupná) + + toolBar + + + + + 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 + + + + + &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... + + + + + 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ázar grafické rozhraní + Ukázat grafické rozhraní + + + + CarlaSettingsW + + + Settings + Nastavení - - Click here to show or hide the graphical user interface (GUI) of Carla. - Klepněte sem pro zobrazení nebo skrytí grafického uživatelského rozhraní (GUI) Carla. + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + Cesty + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + 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 + + + + + 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) + + + + + 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: + 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 @@ -992,73 +3077,73 @@ If you're interested in translating LMMS in another language or want to imp 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í. @@ -1066,22 +3151,22 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -1089,37 +3174,32 @@ If you're interested in translating LMMS in another language or want to imp ControllerView - + Controls Ovládací prvky - - Controllers are able to automate the value of a knob, slider, and other controls. - Kontroléry jsou schopny automatizovat nastavení otočných ovladačů, táhel a dalších řídicích prvků. - - - + 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č @@ -1128,77 +3208,97 @@ If you're interested in translating LMMS in another language or want to imp CrossoverEQControlDialog - Band 1/2 Crossover: + Band 1/2 crossover: Přechod mezi pásmy 1/2: - Band 2/3 Crossover: + Band 2/3 crossover: Přechod mezi pásmy 2/3: - Band 3/4 Crossover: + Band 3/4 crossover: Přechod mezi pásmy 3/4: + + + Band 1 gain + Zesílení pásma 1 + - Band 1 Gain: + Band 1 gain: Zesílení pásma 1: + + + Band 2 gain + Zesílení pásma 2 + - Band 2 Gain: + Band 2 gain: Zesílení pásma 2: + + + Band 3 gain + Zesílení pásma 3 + - Band 3 Gain: + Band 3 gain: Zesílení pásma 3: + + + Band 4 gain + Zesílení pásma 4 + - Band 4 Gain: + Band 4 gain: Zesílení pásma 4: - Band 1 Mute + Band 1 mute Ztlumení pásma 1 - Mute Band 1 + Mute band 1 Ztlumit pásmo 1 - Band 2 Mute + Band 2 mute Ztlumení pásma 2 - Mute Band 2 + Mute band 2 Ztlumit pásmo 2 - Band 3 Mute + Band 3 mute Ztlumení pásma 3 - Mute Band 3 + Mute band 3 Ztlumit pásmo 3 - Band 4 Mute + Band 4 mute Ztlumení pásma 4 - Mute Band 4 + Mute band 4 Ztlumit pásmo 4 @@ -1206,7 +3306,7 @@ If you're interested in translating LMMS in another language or want to imp DelayControls - Delay Samples + Delay samples Zpoždění vzorků @@ -1216,12 +3316,12 @@ If you're interested in translating LMMS in another language or want to imp - Lfo Frequency + LFO frequency Frekvence LFO - Lfo Amount + LFO amount Hloubka LFO @@ -1239,7 +3339,7 @@ If you're interested in translating LMMS in another language or want to imp - Delay Time + Delay time Délka zpoždění @@ -1249,7 +3349,7 @@ If you're interested in translating LMMS in another language or want to imp - Feedback Amount + Feedback amount Hloubka zpětné vazby @@ -1259,8 +3359,8 @@ If you're interested in translating LMMS in another language or want to imp - Lfo - LFO + LFO frequency + Frekvence LFO @@ -1269,12 +3369,12 @@ If you're interested in translating LMMS in another language or want to imp - Lfo Amt + LFO amount Hloubka LFO - Out Gain + Out gain Zesílení výstupu @@ -1283,6 +3383,223 @@ If you're interested in translating LMMS in another language or want to imp 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 + + + + + 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 + Nastavit hodnotu + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + + + + + Buffer size: + + + + + Sample rate: + Vzorkovací frekvence: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + + + DualFilterControlDialog @@ -1343,13 +3660,13 @@ If you're interested in translating LMMS in another language or want to imp - Click to enable/disable Filter 1 - Klepněte pro zapnutí/vypnutí filtru 1 + Enable/disable filter 1 + Zapnout/vypnout filtr 1 - Click to enable/disable Filter 2 - Klepněte pro zapnutí/vypnutí filtru 2 + Enable/disable filter 2 + Zapnout/vypnout filtr 2 @@ -1366,7 +3683,7 @@ If you're interested in translating LMMS in another language or want to imp - Cutoff 1 frequency + Cutoff frequency 1 Frekvence oříznutí 1 @@ -1396,7 +3713,7 @@ If you're interested in translating LMMS in another language or want to imp - Cutoff 2 frequency + Cutoff frequency 2 Frekvence oříznutí 2 @@ -1412,25 +3729,25 @@ If you're interested in translating LMMS in another language or want to imp - LowPass + Low-pass Dolní propust - HiPass + Hi-pass Horní propust - BandPass csg + Band-pass csg Pásmová propust csg - BandPass czpg + Band-pass czpg Pásmová propust czpg @@ -1442,8 +3759,8 @@ If you're interested in translating LMMS in another language or want to imp - Allpass - Všepásmový filtr + All-pass + All-pass @@ -1454,50 +3771,50 @@ If you're interested in translating LMMS in another language or want to imp - 2x LowPass + 2x Low-pass 2x dolní propust - RC LowPass 12dB - RC dolní propust 12dB + RC Low-pass 12 dB/oct + RC dolní propust 12 dB/okt - RC BandPass 12dB - RC pásmová propust 12dB + RC Band-pass 12 dB/oct + RC pásmová propust 12 dB/okt - RC HighPass 12dB - RC horní propust 12dB + RC High-pass 12 dB/oct + RC horní propust 12 dB/okt - RC LowPass 24dB - RC dolní propust 24dB + RC Low-pass 24 dB/oct + RC dolní propust 24 dB/okt - RC BandPass 24dB - RC pásmová propust 24dB + RC Band-pass 24 dB/oct + RC pásmová propust 24 dB/okt - RC HighPass 24dB - RC horní propust 24dB + RC High-pass 24 dB/oct + RC horní propust 24 dB/okt - Vocal Formant Filter - Vokální formantový filtr + Vocal Formant + Vokální formant @@ -1508,19 +3825,19 @@ If you're interested in translating LMMS in another language or want to imp - SV LowPass + SV Low-pass SV dolní propust - SV BandPass + SV Band-pass SV pásmová propust - SV HighPass + SV High-pass SV horní propust @@ -1545,50 +3862,55 @@ If you're interested in translating LMMS in another language or want to imp 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 @@ -1604,12 +3926,12 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView - + EFFECTS CHAIN ŘETĚZ EFEKTŮ - + Add effect Přidat efekt @@ -1617,28 +3939,28 @@ If you're interested in translating LMMS in another language or want to imp EffectSelectDialog - + Add effect Přidat efekt - - + + Name Název - + Type Typ - + Description Popis - + Author Autor @@ -1646,409 +3968,256 @@ If you're interested in translating LMMS in another language or want to imp EffectView - - Toggles the effect on or off. - Zapnout nebo vypnout efekty. - - - + On/Off Zap/Vyp - + W/D POM - + Wet Level: Úroveň zpracovaného signálu: - - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - Otočný ovladač Poměr nastavuje poměr mezi vstupním signálem a signálem efektu, který formuje výstup. - - - + DECAY POKLES - + Time: Délka: - - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - Otočný ovladač Útlum nastavuje, kolik bufferů ticha musí proběhnout před tím, než plugin přestane zpracovávat. Menší hodnoty zredukují přetížení CPU, ale mohou způsobit oříznutí na konci zpožďovacích a dozvukových efektů. - - - + GATE BRÁ - + Gate: Brána: - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - Otočný ovladač Brána určuje sílu signálu, který je považován za "ticho" při rozhodování, kdy skončit se zpracováním signálů. - - - + Controls Ovladače - - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Efektové pluginy fungují jako zřetězená série efektů, kde signál bude postupně zpracováván shora dolů. - -Přepínač Zapnuto/Vypnuto vám umožní v libovolném časovém okamžiku daný plugin odpojit. - -Otočný ovladač Poměr řídí vyvážení mezi vstupním a již zpracovaným signálem ve výsledném výstupu efektu. Vstup je v této fázi shodný s výstupem předchozího efektu. Takže když je Poměr nastaven na nízkou hodnotu, obsahuje signál všechny předchozí efekty. - -Otočný ovladač Útlum určuje, jak dlouho bude zpracovávání signálu pokračovat po skončení noty. Efekt přestane zpracovávat signál, když hlasitost klesne pod hodnotu daného prahu v daném časovém úseku. Tento ovladač nastavuje právě "daný časový úsek". Delší časy vyžadují více výkonu procesoru, takže pro většinu efektů by měla být nastavena nízká hodnota. Naopak je potřeba nastavit vyšší hodnotu pro efekty, které vytvářejí delší úseky ticha, jako je např. echo (delay). -Otočný ovladač Brána určuje "daný práh" pro automatické ukončení efektu. - -Počítání délky "daného časového úseku" začíná bezprostředně poté, co úroveň zpracovávaného signálu poklesne pod úroveň určenou tímto ovladačem. - -Tlačítko Ovladače otevře dialogové okno pro úpravu parametrů efektu. - -Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete měnit pořadí, ve kterém budou efekty zpracovávány, nebo můžete efekt úplně odstranit. - - - + Move &up Posunout &nahoru - + Move &down Posunout &dolů - + &Remove this plugin &Odstranit tento plugin EnvelopeAndLfoParameters - - - Predelay - Předzpoždění - - - - Attack - Náběh - - Hold - Držení + Env pre-delay + Obálka předzpoždění - Decay - Útlum + Env attack + Obálka náběh - Sustain - Vydržení + Env hold + Obálka zadržení - Release - Doznění + Env decay + Obálka pokles - Modulation - Modulace + Env sustain + Obálka držení - - LFO Predelay + + Env release + Obálka doznění + + + + Env mod amount + Obálka hloubky modulace + + + + LFO pre-delay Předzpoždění LFO - - LFO Attack + + LFO attack Náběh LFO - - - LFO speed - Rychlost LFO - - - - LFO Modulation - Modulace LFO - - LFO Wave Shape - Tvar vlny LFO + LFO frequency + Frekvence LFO - Freq x 100 - Frekvence x 100 + LFO mod amount + Hloubka modulace LFO - Modulate Env-Amount - Hloubka modulace + LFO wave shape + Tvar vlny LFO + + + + LFO frequency x 100 + Frekvence LFO x 100 + + + + Modulate env amount + Modulovat obálku EnvelopeAndLfoView - - + + DEL PŘED - - Predelay: + + + Pre-delay: Předzpoždění: - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Tento otočný ovladač nastavuje předzpoždění (predelay) aktuální obálky. Zvýšením hodnoty se prodlouží čas před začátkem obálky. - - - - + + ATT NÁB - + + Attack: Náběh: - - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Tento otočný ovladač nastavuje náběh (attack) u aktuální obálky. Zvýšením hodnoty se prodlouží délka náběhu obálky. Zvolte nižší hodnotu pro nástroje typu piano a vyšší pro smyčce. - - - + HOLD - DRŽ + ZADR - + Hold: - Držení: + Zadržení: - - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Tento otočný ovladač nastavuje délku držení (hold) u aktuální obálky. Zvýšením hodnoty se prodlouží část obálky, která zůstává na úrovni náběhu (attack) ještě před začátkem útlumu (decay) na úroveň vydržení (sustain). - - - + DEC - ÚTL + POK - + Decay: - Útlum: + Pokles: - - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Tento otočný ovladač nastavuje délku útlumu (decay) u aktuální obálky. Zvýšením hodnoty se prodlouží část obálky, potřebná k zeslabení z úrovně náběhu (attack) na úroveň vydržení (sustain). Zvolte nižší hodnotu pro nástroje typu piano. - - - + SUST - VYD + DRŽE - + Sustain: Držení: - - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Tento otočný ovladač nastavuje vydržení (sustain) u aktuální obálky. Zvýšením hodnoty se navýší úroveň, na které obálka zůstává před poklesem na nulu. - - - + REL - UVOL + DOZ - + Release: - Uvolnění: + Doznění: - - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Tento otočný ovladač nastavuje délku uvolnění (release) u aktuální obálky. Zvýšením hodnoty se prodlouží část obálky, potřebná k zeslabení z úrovně vydržení (sustain) na nulovou úroveň. Zvolte vyšší hodnotu pro nástroje s měkkým zvukem, jako např. smyčce. - - - - + + AMT MOD - - + + Modulation amount: Hloubka modulace: - - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Tento otočný ovladač nastavuje hloubku modulace u aktuální obálky. Zvýšení této hodnoty v závislosti na velikosti (např. hlasitosti nebo frekvence odstřihnutí) způsobí větší ovlivnění touto obálkou. - - - - LFO predelay: - Předzpoždění LFO: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Tento otočný ovladač nastavuje délku předzpoždění (predelay) aktuálního LFO. Zvýšením hodnoty se prodlouží čas před spuštěním kmitání LFO. - - - - LFO- attack: - Náběh LFO: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Tento otočný ovladač nastavuje délku náběhu (attack) u aktuálního LFO. Zvýšením hodnoty se prodlouží čas potřebný pro zvýšení amplitudy LFO na maximum. - - - + SPD RYCH - - LFO speed: - Rychlost LFO: + + Frequency: + Frekvence: - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Tento otočný ovladač nastavuje rychlost u aktuálního LFO. Zvýšením hodnoty se zrychlí kmitání LFO a průběh vašeho efektu. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Tento otočný ovladač nastavuje hloubku modulace u aktuálního LFO. Zvýšení hodnoty v závislosti na velikosti (např. hlasitosti nebo frekvence odstřihnutí) způsobí větší ovlivnění tímto LFO. - - - - Click here for a sine-wave. - Klepněte sem pro sinusovou vlnu. - - - - Click here for a triangle-wave. - Klepněte sem pro trojúhelníkovou vlnu. - - - - Click here for a saw-wave for current. - Klepněte sem pro pilovitou vlnu. - - - - Click here for a square-wave. - Klepněte sem pro pravoúhlou vlnu. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Klepněte sem pro vlastní vlnu. Poté přetáhněte zvolený soubor samplu do grafického okna LFO. - - - - Click here for random wave. - Klepněte sem pro náhodnou vlnu. - - - + FREQ x 100 FREKVENCE x 100 - - Click here if the frequency of this LFO should be multiplied by 100. - Klepněte sem, pokud má být frekvence LFO vynásobena x100. + + Multiply LFO frequency by 100 + Vynásobit frekvenci LFO x 100 - - multiply LFO-frequency by 100 - vynásobit frekvenci LFO x100 - - - - MODULATE ENV-AMOUNT + + MODULATE ENV AMOUNT MODULOVAT OBÁLKU - - Click here to make the envelope-amount controlled by this LFO. - Klepněte sem, pokud má být množství obálky řízeno tímto LFO. + + Control envelope amount by this LFO + Řízení množství obálky tímto LFO - - control envelope-amount by this LFO - řízení množství obálky tímto LFO - - - + ms/LFO: ms/LFO: - + Hint Rada - - Drag a sample from somewhere and drop it in this window. - Sampl odněkud přetáhněte a pusťte jej v tomto okně. + + Drag and drop a sample into this window. + Přetáhněte sampl do tohoto okna @@ -2065,7 +4234,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - Low shelf gain + Low-shelf gain Zesílení dolního šelfu @@ -2090,7 +4259,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - High Shelf gain + High-shelf gain Zesílení horního šelfu @@ -2100,7 +4269,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - Low Shelf res + Low-shelf res Rezonance dolního šelfu @@ -2125,7 +4294,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - High Shelf res + High-shelf res Rezonance horního šelfu @@ -2140,7 +4309,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - Low Shelf freq + Low-shelf freq Frekvence dolního šelfu @@ -2165,8 +4334,8 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - High shelf freq - Frekvence špičky 4 + High-shelf freq + Frekvence horního šelfu @@ -2180,7 +4349,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - Low shelf active + Low-shelf active Dolní šelf aktivní @@ -2205,7 +4374,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - High shelf active + High-shelf active Horní šelf aktivní @@ -2245,13 +4414,13 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - low pass type - typ dolní propusti + Low-pass type + Typ dolní propusti - high pass type - typ horní propusti + High-pass type + Typ horní propusti @@ -2273,7 +4442,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - Low Shelf + Low-shelf Dolní šelf @@ -2298,7 +4467,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - High Shelf + High-shelf Horní šelf @@ -2308,7 +4477,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - In Gain + Input gain Zesílení vstupu @@ -2320,7 +4489,7 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - Out Gain + Output gain Zesílení výstupu @@ -2345,13 +4514,13 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m - lp grp - dp skup + LP group + Skupina DP - hp grp - hp skup + HP group + Skupina HP @@ -2376,202 +4545,217 @@ Klepnutí pravým tlačítkem myši vyvolá kontextovou nabídku, kde můžete m ExportProjectDialog - + Export project Exportovat projekt - - Output - Výstup + + Export as loop (remove extra bar) + Exportovat jako smyčku (odstranit přebývající takty) - - File format: - Formát souboru: - - - - Samplerate: - Vzorkovací frekvence: - - - - 44100 Hz - 44100 Hz - - - - 48000 Hz - 48000 Hz - - - - 88200 Hz - 88200 Hz - - - - 96000 Hz - 96000 Hz - - - - 192000 Hz - 192000 Hz - - - - Depth: - Hloubka: - - - - 16 Bit Integer - 16 bitů celočíselně - - - - 24 Bit Integer - 24 bitů celočíselně - - - - 32 Bit Float - 32 bitů s plovoucí čárkou - - - - Stereo mode: - Režim stereo: - - - - Stereo - Stereo - - - - Joint Stereo - Joint stereo - - - - Mono - Mono - - - - Bitrate: - Datový tok: - - - - 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 - Použít proměnlivý datový tok - - - - Quality settings - Nastavení kvality - - - - Interpolation: - Interpolace: - - - - Zero Order Hold - Zero-order hold - - - - Sinc Fastest - Sinc nejrychlejší - - - - Sinc Medium (recommended) - Sinc střední (doporučeno) - - - - Sinc Best (very slow!) - Sinc nejlepší (velmi pomalé!) - - - - Oversampling (use with care!): - Převzorkování (používejte opatrně!): - - - - 1x (None) - 1x (žádné) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - - Export as loop (remove end silence) - Exportovat jako smyčku (odstranění ticha na konci) - - - + Export between loop markers Exportovat obsah smyčky - + + Render Looped Section: + + + + + time(s) + + + + + File format settings + Nastavení formátu souboru + + + + File format: + Formát souboru: + + + + Sampling rate: + Vzorkovací frekvence: + + + + 44100 Hz + 44100 Hz + + + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Bitová hloubka: + + + + 16 Bit integer + 16 bitů celočíselná + + + + 24 Bit integer + 24 bitů celočíselná + + + + 32 Bit float + 32 bitů s plovoucí řádovou čárkou + + + + Stereo mode: + Režim stereo: + + + + Mono + Mono + + + + Stereo + Stereo + + + + Joint stereo + Joint stereo + + + + Compression level: + Úroveň komprese: + + + + Bitrate: + Datový tok: + + + + 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 + Použít proměnlivý datový tok + + + + Quality settings + Nastavení kvality + + + + Interpolation: + Interpolace: + + + + Zero order hold + Zero order hold + + + + Sinc worst (fastest) + Sinc nejhorší (nejrychlejší) + + + + Sinc medium (recommended) + Sinc střední (doporučeno) + + + + Sinc best (slowest) + Sinc nejlepší (nejpomalejší) + + + + Oversampling: + Převzorkování: + + + + 1x (None) + 1x (žádné) + + + + 2x + 2x + + + + 4x + 4x + + + + 8x + 8x + + + Start Začít - + Cancel Zrušit @@ -2588,90 +4772,45 @@ Please make sure you have write permission to the file and the directory contain 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% - - Compression level: - Úroveň komprese: - - - (fastest) - (nejrychlejší) - - - (default) - (výchozí) - - - (smallest) - (nejmenší) - - - - Expressive - - 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í - - - PAN1 - PAN1 - - - PAN2 - PAN2 - - - REL TRANS - - Fader - - + + Set value + Nastavit hodnotu + + + Please enter a new value between %1 and %2: Vložte prosím novou hodnotu mezi %1 a %2: @@ -2679,15 +4818,27 @@ Ověřte si prosím, zda máte povolen zápis do souboru a do složky, ve které FileBrowser - + + User content + + + + + Factory content + + + + Browser Prohlížeč + Search Hledat + Refresh list Obnovit seznam @@ -2695,64 +4846,81 @@ Ověřte si prosím, zda máte povolen zápis do souboru a do složky, ve které FileBrowserTreeWidget - + Send to active instrument-track Odeslat do aktivní stopy nástroje - - Open in new instrument-track/Song Editor - Otevřít v nové nástrojové stopě / Editoru skladby + + Open containing folder + - - Open in new instrument-track/B+B Editor - Otevřít v nové nástrojové stopě / editoru bicich/basů + + 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 - - does not appear to be a valid - nevypadá, že je platný + + %1 does not appear to be a valid %2 file + - - file - soubor - - - + --- Factory files --- --- Tovární soubory --- - - FileBrowserTreeWidget - FlangerControls - Delay Samples + Delay samples Zpoždění vzorků - Lfo Frequency + LFO frequency Frekvence LFO @@ -2762,16 +4930,21 @@ Ověřte si prosím, zda máte povolen zápis do souboru a do složky, ve které + Stereo phase + + + + Regen Obnov - + Noise Šum - + Invert Převrátit @@ -2785,7 +4958,7 @@ Ověřte si prosím, zda máte povolen zápis do souboru a do složky, ve které - Delay Time: + Delay time: Délka zpoždění: @@ -2810,148 +4983,485 @@ Ověřte si prosím, zda máte povolen zápis do souboru a do složky, ve které + PHASE + + + + + Phase: + + + + FDBK ZP. VAZ - - Feedback Amount: + + Feedback amount: Velikost zpětné vazby: - + NOISE ŠUM - - White Noise Amount: + + White noise amount: Množství bílého šumu: - + Invert Převrátit - FxLine + 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 + + + + MixerLine + + Channel send amount Množství odeslaného kanálu - - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Efektový (FX) kanál přijímá vstup z jedné nebo více nástrojových stop. -Ten může být následně směrován do dalších efektových kanálů. LMMS automaticky zabraňuje vzniku nekonečných smyček a nedovoluje provést propojení, které by ke vzniku smyčky mohlo vést. - -Chcete-li směrovat kanál do jiného kanálu, vyberte efektový kanál a klepněte na tlačítko "SEND" v kanálu, který chcete odeslat. Otočný ovladač pod tlačítkem "SEND" určuje množství signálu, které bude do kanálu odesláno. - -Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, která je dostupná po klepnutí pravým tlačítkem myši na efektový kanál. - - - - + 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 + + - FxMixer + MixerLineLcdSpinBox - + + Assign to: + Přiřadit k: + + + + New mixer Channel + Nový efektový kanál + + + + Mixer + + Master Hlavní - - - - FX %1 + + + + Channel %1 Efekt %1 - + Volume Hlasitost - + Mute Ztlumit - + Solo Sólo - FxMixerView + MixerView - - FX-Mixer + + Mixer Efektový mixážní panel - - FX Fader %1 + + Fader %1 Efektový fader %1 - + Mute Ztlumit - - Mute this FX channel + + Mute this mixer channel Ztlumit tento efektový kanál - + Solo Sólo - - Solo FX channel + + Solo mixer channel Sólovat efektový kanál - FxRoute + MixerRoute - - + + Amount to send from channel %1 to channel %2 Množství k odeslání z kanálu %1 do kanálu %2 @@ -2959,17 +5469,17 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte GigInstrument - + Bank Banka - + Patch Patch - + Gain Zisk @@ -2977,58 +5487,23 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte GigInstrumentView - - Open other GIG file - Otevřít jiný GIG soubor - - - - Click here to open another GIG file - Klepněte sem pro otevření jiného GIG souboru - - - - Choose the patch - Vybrat patch - - - - Click here to change which patch of the GIG file to use - Klepněte sem pro změnu patche GIG souboru - - - - - Change which instrument of the GIG file is being played - Změnit přehrávaný nástroj GIG souboru - - - - Which GIG file is currently being used - Který GIG soubor je právě používán - - - - Which patch of the GIG file is currently being used - Který patch GIG souboru je právě používán - - - - Gain - Zesílení - - - - Factor to multiply samples by - Vynásobit vzorky x - - - + + Open GIG file Otevřít GIG soubor - + + Choose patch + Vybrat patch + + + + Gain: + Zesílení: + + + GIG Files (*.gig) GIG soubory (*.gig) @@ -3036,52 +5511,52 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte 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 @@ -3089,20 +5564,25 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte InstrumentFunctionArpeggio - + Arpeggio Arpeggio - + Arpeggio type Typ arpeggia - + Arpeggio range Rozsah arpeggia + + + Note repeats + + Cycle steps @@ -3182,139 +5662,119 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte InstrumentFunctionArpeggioView - + ARPEGGIO ARPEGGIO - - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Arpeggio je způsob hry (zejména na drnkací nástroje), který činí hudbu mnohem živější. Struny těchto nástrojů (např. harfy) jsou rozezněny jako v akordech. Jediným rozdílem je, že se tak stane sekvenčně, takže tóny nejsou zahrány ve stejnou dobu. Typickým arpeggiem jsou durové a mollové trojzvuky, ale možných dalších akordů, které si můžete vybrat, je spousta. - - - + RANGE ROZSAH - + Arpeggio range: Rozsah arpeggia: - + octave(s) oktáva(y) - - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Tento otočný ovladač použijte pro nastavení rozsahu arpeggia v oktávách. Vybrané arpeggio bude zahráno ve zvoleném počtu oktáv. + + REP + - + + Note repeats: + + + + + time(s) + + + + CYCLE CYKL - + Cycle notes: Počet not v cyklu: - + note(s) nota(y) - - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - Skočí přes n kroků v arpeggiu a pokud přesáhne rozsah not, zacyklí se zde. Je-li je celkový rozsah not rovnoměrně dělitelný počtem kroků nad rozdah, uvíznete v kratším arpeggiu nebo dokonce na jedné notě. - - - + SKIP VYNECH - + Skip rate: Míra vynechávání: - - - + + + % % - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - Funkce vynechávání způsobí, že arpeggiator náhodně pozastaví některý krok. Od počáteční pozice, kde nemá žádný efekt, se po směru hodinových ručiček efekt stupňuje až po maximální nastavení, kdy vynechá vše. - - - + MISS MÍJ - + Miss rate: Míra míjení: - - The miss function will make the arpeggiator miss the intended note. - Funkce míjení způsobí, že arpeggiator netrefí dotyčnou notu. - - - + TIME TRVÁNÍ - + Arpeggio time: Trvání arpeggia: - + ms ms - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Tento otočný ovladač nastavuje trvání arpeggia v milisekundách. Trvání arpeggia udává, jak dlouho bude každý tón arpeggia přehráván. - - - + GATE BRÁNA - + Arpeggio gate: Brána arpeggia: - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Tento otočný ovladač nastavuje bránu arpeggia. Brána arpeggia určuje procento délky jednotlivých arpeggiových tónů, které budou zahrány. Pomocí brány arpeggia můžete udělat skvělé staccatové arpeggio. - - - + Chord: Akord: - + Direction: Směr: - + Mode: Styl: @@ -3322,488 +5782,488 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte 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 @@ -3811,92 +6271,91 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte InstrumentFunctionNoteStackingView - + STACKING VRSTVENÍ - + Chord: Akord: - + RANGE ROZSAH - + Chord range: Rozsah akordu: - + octave(s) oktáva(y) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Tento otočný ovladač nastavuje rozsah akordů v oktávách. Vybraný akord bude zahrán ve zvoleném počtu oktáv. - InstrumentMidiIOView - + ENABLE MIDI INPUT POVOLIT MIDI VSTUP - - - CHANNEL - KANÁL - - - - - VELOCITY - DYNAM - - - + ENABLE MIDI OUTPUT POVOLIT MIDI VÝSTUP - - PROGRAM - PROGRAM + + + 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 + + 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 @@ -3904,171 +6363,171 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte InstrumentMiscView - + MASTER PITCH TRANSPOZICE - - Enables the use of Master Pitch - Umožní použití 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 - - LowPass + + Low-pass Dolní propust - - HiPass + + Hi-pass Horní propust - - BandPass csg + + Band-pass csg Pásmová propust csg - - BandPass czpg + + Band-pass czpg Pásmová propust czpg - + Notch Pásmová zádrž - - Allpass - Všepásmový filtr + + All-pass + All-pass - + Moog Moogův filtr - - 2x LowPass + + 2x Low-pass 2x dolní propust + + + RC Low-pass 12 dB/oct + RC dolní propust 12 dB/okt + - RC LowPass 12dB - RC dolní propust 12dB + RC Band-pass 12 dB/oct + RC pásmová propust 12 dB/okt - RC BandPass 12dB - RC pásmová propust 12dB + RC High-pass 12 dB/oct + RC horní propust 12 dB/okt - RC HighPass 12dB - RC horní propust 12dB + RC Low-pass 24 dB/oct + RC dolní propust 24 dB/okt - RC LowPass 24dB - RC dolní propust 24dB + RC Band-pass 24 dB/oct + RC pásmová propust 24 dB/okt - RC BandPass 24dB - RC pásmová propust 24dB + RC High-pass 24 dB/oct + RC horní propust 24 dB/okt - RC HighPass 24dB - RC horní propust 24dB + Vocal Formant + Vokální formant - Vocal Formant Filter - Vokální formantový filtr - - - 2x Moog 2x Moogův filtr - - SV LowPass + + SV Low-pass SV dolní propust - - SV BandPass + + SV Band-pass SV pásmová propust - - SV HighPass + + SV High-pass SV horní propust - + SV Notch SV pásmová zádrž - + Fast Formant Rychlý formantový filtr - + Tripole Třípólový filtr @@ -4076,62 +6535,42 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte InstrumentSoundShapingView - + TARGET CÍL: - - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Tato stránka obsahuje obálky. Ty jsou velmi důležité pro úpravu zvuku a obvykle také i nezbytné pro rozdílovou (subtraktivní) syntézu. Pokud máte například obálku hlasitosti, můžete nastavit, kdy má mít zvuk jakou sílu. Pokud chcete vytvořit něco jako smyčce, váš zvuk by měl mít velmi měkké nasazení i ukončení tónu. Toho dosáhneme nastavením dlouhého času náběhu i uvolnění. Totéž se týká ostatních druhů obálek, jako je obálka panorámatu, frekvence odříznutí pro použití u filtrů apod. Prostě si s tím můžete vyhrát dle libosti! Můžete vytvořit opravdu úžasné zvuky třeba jen z pilovité vlny pomocí vhodných obálek...! - - - + FILTER FILTR - - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Zde si můžete vybrat z vestavěných filtrů, které chcete použít pro tuto stopu nástroje. Filtry jsou velmi důležité pro změnu charakteristiky zvuku. - - - + FREQ FREKV - - cutoff frequency: + + Cutoff frequency: Frekvence oříznutí: - + Hz Hz - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Tento otočný ovladač nastavuje frekvenci odříznutí pro vybraný filtr. Frekvence odříznutí určuje frekvenci pro odříznutí signálu filtrem. Například filtr typu dolní propust (low-pass) odstřihne všechny frekvence, které jsou vyšší než frekvence odříznutí. Filtr typu horní propust (high-pass) odstřihne všechny frekvence, které jsou nižší než frekvence odříznutí atd... + + Q/RESO + Q/REZO - - RESO - REZO + + Q/Resonance: + Q/rezonance - - Resonance: - Rezonance: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Tento otočný ovladač nastavuje Q/rezonanci pro vybraný filtr. Q/rezonance určuje, jak hodně filtr zesílí frekvence poblíž frekvence oříznutí. - - - + 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. @@ -4139,21 +6578,26 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte InstrumentTrack - - With this knob you can set the volume of the opened channel. - Tímto otočným ovladačem můžete nastavit hlasitost otevřeného kanálu. - - - + unnamed_track nepojmenovaná_stopa - + Base note Základní nota + + + First note + + + + + Last note + Podle poslední noty + Volume @@ -4176,17 +6620,27 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte - FX channel + Mixer channel Efektový kanál - Master Pitch + Master pitch Transpozice - - + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + Default preset Výchozí předvolba @@ -4194,213 +6648,267 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte InstrumentTrackView - + Volume Hlasitost - + Volume: Hlasitost: - + VOL HLA - + Panning Panoráma - + Panning: Panoráma: - + PAN PAN - + MIDI MIDI - + Input Vstup - + Output Výstup - - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 Efekt %1: %2 InstrumentTrackWindow - + GENERAL SETTINGS HLAVNÍ NASTAVENÍ - - Use these controls to view and edit the next/previous track in the song editor. - Použije tyto ovládací prvky pro zobrazení a editaci další/předchozí stopy v editoru skladby. + + Volume + Hlasitost - - Instrument volume - Hlasitost nástroje - - - + Volume: Hlasitost: - + VOL HLA - + Panning Panoráma - + Panning: Panoráma: - + PAN PAN - + Pitch Ladění - + Pitch: Ladění: - + cents centů - + PITCH LADĚNÍ - + Pitch range (semitones) Rozsah výšky (v půltónech) - + RANGE ROZSAH - - FX channel + + Mixer channel Efektový kanál - - FX + + CHANNEL EFEKT - + Save current instrument track settings in a preset file Uložit aktuální nastavení nástrojové stopy do souboru předvoleb - - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Klepněte sem, chcete-li uložit aktuální nastavení nástrojové stopy do souboru předvoleb. Později můžete nahrát tuto předvolbu poklepáním na prohlížeč předvoleb. - - - + SAVE ULOŽIT - + Envelope, filter & LFO Obálka, filtr a LFO - + Chord stacking & arpeggio Vrstvení akordů a arpeggio - + Effects Efekty - - MIDI settings - MIDI nastavení + + 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 + + + + + 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: @@ -4429,33 +6937,46 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte LadspaControlView - + Link channels Propojit kanály - + Value: Hodnota: - - - Sorry, no help available. - Promiňte, nápověda není k dispozici. - 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: @@ -4533,137 +7054,127 @@ Efektové kanály můžete odstranit nebo přesunout v kontextové nabídce, kte LFO - - LFO Controller - Ovladač LFO - - - + BASE ZÁKL - - Base amount: - Základní míra: + + Base: + - todo - udělat + FREQ + FREKV - - SPD - RYCH + + LFO frequency: + Frekvence LFO: - - LFO-speed: - Rychlost LFO: - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Tento otočný ovladač nastavuje rychlost LFO. Zvýšením hodnoty se zrychlí kmitání LFO a průběh efektu. - - - + AMNT MNOŽ - + Modulation amount: Hloubka modulace: - - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Tento otočný ovladač nastavuje množství modulace LFO. Čím vyšší bude tato hodnota, tím více budou propojené parametry (např. hlasitost nebo frekvence odříznutí) ovlivněny LFO. - - - + PHS FÁZ - + Phase offset: Posun fáze: - - degrees + + degrees stupňů - - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Tímto otočným ovladačem můžete nastavit fázový posun LFO. To znamená, že můžete posunout bod, ve kterém oscilátor začne kmitat. Například pokud máte sinusovou vlnu s fázovým posunem 180 stupňů, vlna půjde nejdříve dolů. Totéž se stane u vlny pravoúhlé. + + Sine wave + Sinusová vlna - - Click here for a sine-wave. - Klepněte sem pro sinusovou vlnu. + + Triangle wave + Trojúhelníková vlna - - Click here for a triangle-wave. - Klepněte sem pro trojúhelníkovou vlnu. + + Saw wave + Pilovitá vlna - - Click here for a saw-wave. - Klepněte sem pro pilovitou vlnu. + + Square wave + Pravoúhlá vlna - - Click here for a square-wave. - Klepněte sem pro pravoúhlou vlnu. + + Moog saw wave + Pilovitá vlna typu Moog - - Click here for a moog saw-wave. - Klepněte sem pro pilovitou vlnu typu Moog. + + Exponential wave + Exponenciální vlna - - Click here for an exponential wave. - Klepněte sem pro exponenciální vlnu. + + White noise + Bílý šum - - Click here for white-noise. - Klepněte sem pro bílý šum. - - - - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Klepněte sem pro uživatelem definovaný tvar. + 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 + - LmmsCore + 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 @@ -4671,500 +7182,510 @@ Poklepejte pro výběr souboru. 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č - - Loading background artwork - Načítám grafiku prostředí - - - + &File &Soubor - + &New &Nový - - New from template - Nový z šablony - - - + &Open... &Otevřít... - - &Recently Opened Projects - &Naposledy otevřené projekty + + 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 - - What's This? - Co je to? - - - + 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 - - What's this? - Co je to? + + Metronome + Metronom - - Toggle metronome - Zapnout/Vypnout metronom + + + Song Editor + Editor skladby - - Show/hide Song-Editor - Zobrazit/Skrýt editor skladby + + + Beat+Bassline Editor + Editor bicích/basů - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Stisknutím tohoto tlačítka zobrazíte nebo skryjete Editor skladby. S jeho pomocí můžete upravovat playlist skladby a určit, kdy a která stopa má být přehrána. Můžete také vkládat a přesunovat samply (např. rapové) přímo do playlistu. + + + Piano Roll + Piano roll - - Show/hide Beat+Bassline Editor - Zobrazit/Skrýt editor bicích/basů + + + Automation Editor + Editor automatizace - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Stisknutím tohoto tlačítka zobrazíte nebo skryjete editor bicích/basů. Tento editor je nezbytný pro tvorbu beatů, otevírání, přidávání či odebírání kanálů a dále pro vyjímání, kopírování a vkládání beatů, bicích/basových záznamů apod. + + + Mixer + Efektový mixážní panel - - Show/hide Piano-Roll - Zobrazit/Skrýt Piano roll - - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Klepněte sem, pokud chcete ukázat nebo skrýt Piano roll. S pomocí Piano rollu můžete jednoduchým způsobem upravovat melodie. - - - - Show/hide Automation Editor - Zobrazit/Skrýt Editor automatizace - - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Klepněte sem, pokud chcete ukázat nebo skrýt Editor automatizace. S pomocí Editoru automatizace můžete jednoduchým způsobem upravovat proměnlivý průběh hodnot. - - - - Show/hide FX Mixer - Zobrazit/Skrýt efektový mixážní panel - - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Klepněte sem, pokud chcete ukázat nebo skrýt efektový (FX) mixážní panel. Efektový mixážní panel je velmi výkonný nástroj pro správu efektů ve vaší skladbě. Efekty můžete vkládat do různých efektových kanálů. - - - - Show/hide project notes - Zobrazit/Skrýt poznámky k projektu - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Klepněte sem, pokud chcete ukázat nebo schovat okno pro poznámky. V tomto okně lze vkládat vaše poznámky k projektu. - - - + 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. - - Song Editor - Editor skladby - - - - Beat+Bassline Editor - Editor bicích/basů - - - - Piano Roll - Piano roll - - - - Automation Editor - Editor automatizace - - - - FX Mixer - Efektový mixážní panel - - - - Project Notes - Poznámky k projektu - - - + 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 @@ -5182,6 +7703,25 @@ Navštivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w Délka doby + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController @@ -5198,23 +7738,43 @@ Navštivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w MidiImport - - + + Setup incomplete Nastavení není dokončeno - - You do not have 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 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 @@ -5234,6 +7794,241 @@ Navštivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w Zdá se, že JACK server zhavaroval. + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Soubor + + + + &Edit + Úpr&avy + + + + &Quit + &Ukončit + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + MidiPort @@ -5295,603 +8090,603 @@ Navštivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w MidiSetupWidget - - DEVICE - ZAŘÍZENÍ + + Device + Zařízení MonstroInstrument - - Osc 1 Volume + + Osc 1 volume Osc 1 hlasitost - - Osc 1 Panning + + Osc 1 panning Osc 1 panoráma - - Osc 1 Coarse detune + + Osc 1 coarse detune Osc 1 hrubé rozladění - - Osc 1 Fine detune left + + Osc 1 fine detune left Osc 1 jemné rozladění vlevo - - Osc 1 Fine detune right + + Osc 1 fine detune right Osc 1 jemné rozladění vpravo - - Osc 1 Stereo phase offset + + Osc 1 stereo phase offset Osc 1 posun stereo fáze - - Osc 1 Pulse width + + Osc 1 pulse width Osc 1 délka pulzu - - Osc 1 Sync send on rise + + Osc 1 sync send on rise Osc 1 synchronizace při nárůstu - - Osc 1 Sync send on fall + + Osc 1 sync send on fall Osc 1 synchronizace při poklesu - - Osc 2 Volume + + Osc 2 volume Osc 2 hlasitost - - Osc 2 Panning + + Osc 2 panning Osc 2 panoráma - - Osc 2 Coarse detune + + Osc 2 coarse detune Osc 2 hrubé rozladění - - Osc 2 Fine detune left + + Osc 2 fine detune left Osc 2 jemné rozladění vlevo - - Osc 2 Fine detune right + + Osc 2 fine detune right Osc 2 jemné rozladění vpravo - - Osc 2 Stereo phase offset + + Osc 2 stereo phase offset Osc 2 posun stereo fáze - - Osc 2 Waveform - Osc 2 vlna + + Osc 2 waveform + Osc 2 typ vlny - - Osc 2 Sync Hard + + Osc 2 sync hard Osc 2 pevná synchronizace - - Osc 2 Sync Reverse + + Osc 2 sync reverse Osc 2 reverzní synchronizace - - Osc 3 Volume + + Osc 3 volume Osc 3 hlasitost - - Osc 3 Panning + + Osc 3 panning Osc 3 panoráma - - Osc 3 Coarse detune + + 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 sub-oscillator mix Osc 3 smíchání se sub-oscilátorem - - Osc 3 Waveform 1 - Osc 3 vlna 1 + + Osc 3 waveform 1 + Osc 3 typ vlny 1 - - Osc 3 Waveform 2 - Osc 3 vlna 2 + + Osc 3 waveform 2 + Osc 3 typ vlny 2 - - Osc 3 Sync Hard - Osc 3 pevná synchronizace + + Osc 3 sync hard + Osc 2 pevná synchronizace - - Osc 3 Sync Reverse + + Osc 3 Sync reverse Osc 3 reverzní synchronizace - - LFO 1 Waveform - LFO 1 vlna + + LFO 1 waveform + LFO 1 typ vlny - - LFO 1 Attack + + LFO 1 attack LFO 1 náběh - - LFO 1 Rate + + LFO 1 rate LFO 1 rychlost - - LFO 1 Phase + + LFO 1 phase LFO 1 fáze - - LFO 2 Waveform - LFO 2 vlna + + LFO 2 waveform + LFO 2 typ vlny - - LFO 2 Attack + + LFO 2 attack LFO 2 náběh - - LFO 2 Rate + + LFO 2 rate LFO 2 rychlost - - LFO 2 Phase + + LFO 2 phase LFO 2 fáze - - Env 1 Pre-delay + + Env 1 pre-delay Obálka 1 předzpoždění - - Env 1 Attack + + Env 1 attack Obálka 1 náběh - - Env 1 Hold + + 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 Decay - Obálka 1 útlum + + Env 1 release + Obálka 1 doznění - - Env 1 Sustain - Obálka 1 vydržení + + Env 1 slope + Obálka 1 strmost - - Env 1 Release - Obálka 1 uvolnění - - - - Env 1 Slope - Obálka 1 sklon - - - - Env 2 Pre-delay + + Env 2 pre-delay Obálka 2 předzpoždění - - Env 2 Attack + + Env 2 attack Obálka 2 náběh - - Env 2 Hold + + 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 Decay - Obálka 2 útlum + + Env 2 release + Obálka 2 doznění - - Env 2 Sustain - Obálka 2 vydržení + + Env 2 slope + Obálka 2 strmost - - Env 2 Release - Obálka 2 uvolnění + + Osc 2+3 modulation + Osc 2+3 modulace - - Env 2 Slope - Obálka 2 sklon - - - - Osc2-3 modulation - Osc 2–3 modulace - - - + Selected view Zvolený pohled - - Vol1-Env1 - Hla1-Obá1 + + Osc 1 - Vol env 1 + Osc 1 – hlasitost obálka 1 - - Vol1-Env2 - Hla1-Obá2 + + Osc 1 - Vol env 2 + Osc 1 – hlasitost obálka 2 - - Vol1-LFO1 - Hla1-LFO1 + + Osc 1 - Vol LFO 1 + Osc 1 – hlasitost LFO 1 - - Vol1-LFO2 - Hla1-LFO2 + + Osc 1 - Vol LFO 2 + Osc 1 – hlasitost LFO 2 - - Vol2-Env1 - Hla2-Obá1 + + Osc 2 - Vol env 1 + Osc 2 – hlasitost obálka 1 - - Vol2-Env2 - Hla2-Obá2 + + Osc 2 - Vol env 2 + Osc 2 – hlasitost obálka 2 - - Vol2-LFO1 - Hla2-LFO1 + + Osc 2 - Vol LFO 1 + Osc 2 – hlasitost LFO 1 - - Vol2-LFO2 - Hla2-LFO2 + + Osc 2 - Vol LFO 2 + Osc 2 – hlasitost LFO 2 - - Vol3-Env1 - Hla3-Obá1 + + Osc 3 - Vol env 1 + Osc 3 – hlasitost obálka 1 - - Vol3-Env2 - Hla3-Obá2 + + Osc 3 - Vol env 2 + Osc 3 – hlasitost obálka 2 - - Vol3-LFO1 - Hla3-LFO1 + + Osc 3 - Vol LFO 1 + Osc 3 – hlasitost LFO 1 - - Vol3-LFO2 - Hla3-LFO2 + + Osc 3 - Vol LFO 2 + Osc 3 – hlasitost LFO 2 - - Phs1-Env1 - Fáz1-Obá1 + + Osc 1 - Phs env 1 + Osc 1 – fáze obálka 1 - - Phs1-Env2 - Fáz1-Obá2 + + Osc 1 - Phs env 2 + Osc 1 – fáze obálka 2 - - Phs1-LFO1 - Fáz1-LFO1 + + Osc 1 - Phs LFO 1 + Osc 1 – fáze LFO 1 - - Phs1-LFO2 - Fáz1-LFO2 + + Osc 1 - Phs LFO 2 + Osc 1 – fáze LFO 2 - - Phs2-Env1 - Fáz2-Obá1 + + Osc 2 - Phs env 1 + Osc 2 – fáze obálka 1 - - Phs2-Env2 - Fáz2-Obá2 + + Osc 2 - Phs env 2 + Osc 2 – fáze obálka 2 - - Phs2-LFO1 - Fáz2-LFO1 + + Osc 2 - Phs LFO 1 + Osc 2 – fáze LFO 1 - - Phs2-LFO2 - Fáz2-LFO2 + + Osc 2 - Phs LFO 2 + Osc 2 – fáze LFO 2 - - Phs3-Env1 - Fáz3-Obá1 + + Osc 3 - Phs env 1 + Osc 3 – fáze obálka 1 - - Phs3-Env2 - Fáz3-Obá2 + + Osc 3 - Phs env 2 + Osc 3 – fáze obálka 2 - - Phs3-LFO1 - Fáz3-LFO1 + + Osc 3 - Phs LFO 1 + Osc 3 – fáze LFO 1 - - Phs3-LFO2 - Fáz3-LFO2 + + Osc 3 - Phs LFO 2 + Osc 3 – fáze LFO 2 - - Pit1-Env1 - Výš1-Obá1 + + Osc 1 - Pit env 1 + Osc 1 – výška obálka 1 - - Pit1-Env2 - Výš1-Obá2 + + Osc 1 - Pit env 2 + Osc 1 – výška obálka 2 - - Pit1-LFO1 - Výš1-LFO1 + + Osc 1 - Pit LFO 1 + Osc 1 – výška LFO 1 - - Pit1-LFO2 - Výš1-LFO2 + + Osc 1 - Pit LFO 2 + Osc 1 – výška LFO 2 - - Pit2-Env1 - Výš2-Obá1 + + Osc 2 - Pit env 1 + Osc 2 – výška obálka 1 - - Pit2-Env2 - Výš2-Obá2 + + Osc 2 - Pit env 2 + Osc 2 – výška obálka 2 - - Pit2-LFO1 - Výš2-LFO1 + + Osc 2 - Pit LFO 1 + Osc 2 – výška LFO 1 - - Pit2-LFO2 - Výš2-LFO2 + + Osc 2 - Pit LFO 2 + Osc 2 – výška LFO 2 - - Pit3-Env1 - Výš3-Obá1 + + Osc 3 - Pit env 1 + Osc 3 – výška obálka 1 - - Pit3-Env2 - Výš3-Obá2 + + Osc 3 - Pit env 2 + Osc 3 – výška obálka 2 - - Pit3-LFO1 - Výš3-LFO1 + + Osc 3 - Pit LFO 1 + Osc 3 – výška LFO 1 - - Pit3-LFO2 - Výš3-LFO2 + + Osc 3 - Pit LFO 2 + Osc 3 – výška LFO 2 - - PW1-Env1 - Pul1-Obá1 + + Osc 1 - PW env 1 + Osc 1 – délka pulzu obálka 1 - - PW1-Env2 - Pul1-Obá2 + + Osc 1 - PW env 2 + Osc 1 – délka pulzu obálka 2 - - PW1-LFO1 - Pul1-LFO1 + + Osc 1 - PW LFO 1 + Osc 1 – délka pulzu LFO 1 - - PW1-LFO2 - Pul1-LFO2 + + Osc 1 - PW LFO 2 + Osc 1 – délka pulzu LFO 2 - - Sub3-Env1 - Sub3-Obá1 + + Osc 3 - Sub env 1 + Osc 3 – suboscilátor obálka 1 - - Sub3-Env2 - Sub3-Obá2 + + Osc 3 - Sub env 2 + Osc 3 – suboscilátor obálka 2 - - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 + Osc 3 – suboscilátor LFO 1 - - Sub3-LFO2 - Sub3-LFO2 + + 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á @@ -5899,449 +8694,240 @@ Navštivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w MonstroView - + Operators view Zobrazení operátorů - - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - Zobrazení operátorů obsahuje všechny operátory. Toto společně zahrnuje jak přímo slyšitelné operátory (oscilátory), tak i neslyšitelné operátory nebo modulátory: generátory nízkých kmitů (LFO) a obálek. - -Otočné ovladače a další ovládací prvky v Zobrazení operátorů mají své vlastní textové popisky, takže můžete získat bližší nápovědu, co který konkrétně dělá. - - - + Matrix view Zobrazení matrice - - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - Zobrazení matrice obsahuje modulační matrici. Zde můžete nadefinovat modulační vazby mezi různými operátory: každý slyšitelný operátor (oscilátory 1–3) má 3–4 vlastnosti, které mohou být modulovány dalšími modulátory. Použití více modulací spotřebovává více výkonu procesoru. - -Okno je rozděleno na cíle modulace, seskupené podle cílových oscilátorů. Dostupné cíle jsou: hlasitost, výška, fáze, délka pulzu a poměr sub-oscilátoru. Poznámka: některé cíle jsou dostupné pouze pro určitý oscilátor. - -Každý cíl modulace má 4 otočné ovladače, jeden pro každý modulátor. Výchozí stav ovladačů je 0, tedy bez modulace. Otočení ovladače na 1 způsobí, že modulátor bude působit na cíl nejvíce, jak je možno. Otočení na -1 způsobí totéž, ale modulace bude inverzně obrácena. - - - - - + + + Volume Hlasitost - - - + + + Panning Panoráma - - - + + + Coarse detune Hrubé rozladění - - - + + + semitones půltónů - - - Finetune left + + + Fine tune left Jemné rozladění vlevo - - - - + + + + cents centů - - - Finetune right + + + 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 Osc2 with Osc3 - Smíchat Osc2 a Osc3 + + Mix osc 2 with osc 3 + Smíchat osc 2 s osc 3 - - Modulate amplitude of Osc3 with Osc2 - Modulovat amplitudu Osc3 pomocí Osc2 + + Modulate amplitude of osc 3 by osc 2 + Modulovat amplitudu oscilátoru 3 oscilátorem 2 - - Modulate frequency of Osc3 with Osc2 - Modulovat frekvenci Osc3 pomocí Osc2 + + Modulate frequency of osc 3 by osc 2 + Modulovat frekvenci oscilátoru 3 oscilátorem 2 - - Modulate phase of Osc3 with Osc2 - Modulovat fázi Osc3 pomocí Osc2 + + Modulate phase of osc 3 by osc 2 + Modulovat fázi oscilátoru 3 oscilátorem 2 - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - Otočný ovladač CRS mění ladění oscilátoru 1 v půltónových krocích. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - Otočný ovladač CRS mění ladění oscilátoru 2 v půltónových krocích. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - Otočný ovladač CRS mění ladění oscilátoru 3 v půltónových krocích. - - - - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL a FTR změní jemné ladění oscilátoru pro levý a pravý kanál. To přidává oscilátoru stereo rozladění, které rozšíří stereo obraz a vytvoří dojem prostoru. - - - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - Otočný ovladač SPO upravuje rozdíl ve fázi mezi levým a pravým kanálem. Větší rozdíl vytváří širší stereofonní obraz. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - Otočný ovladač PW řídí šířku pulzu, jinak též pracovní cyklus, oscilátoru 1. Oscilátor 1 je digitální generátor pulzních vln, který nevytváří pásmově omezený výstup, což znamená, že jej sice můžete použít jako zdroj slyšitelného signálu, ale způsobuje aliasing. Můžete jej ale také využít jako neslyšitelný zdroj synchronizačního signálu, který může sloužit k synchronizaci oscilátorů 2 a 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Zaslání synchronizačního signálu při nárůstu: je-li zapnuto, bude synchronizační signál zasílán pokaždé, když bude stav oscilátoru 1 změněn na vyšší, např. když se amplituda změní z -1 na 1. Výška, fáze a šířka pulzu oscilátoru 1 mohou mít vliv na časování synchronizace, ale jejich množství zde nemá žádný efekt. Synchronizační signály jsou odesílány nezávisle pro levý a pravý kanál. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Zaslání synchronizačního signálu při poklesu: je-li zapnuto, bude synchronizační signál zasílán pokaždé, když bude stav oscilátoru 1 změněn na nižší, např. když se amplituda změní z 1 na -1. Výška, fáze a šířka pulzu oscilátoru 1 mohou mít vliv na časování synchronizace, ale jejich množství zde nemá žádný efekt. Synchronizační signály jsou odesílány nezávisle pro levý a pravý kanál. - - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Pevná synchronizace: pokaždé, když oscilátor přijme synchronizační signál z oscilátoru 1, jeho fáze bude nastavena na 0, bez ohledu na jeho fázový posun. - - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Reverzní synchronizace: pokaždé, když oscilátor přijme synchronizační signál z oscilátoru 1, jeho amplituda bude převrácena. - - - - Choose waveform for oscillator 2. - Vyberte vlnu pro oscilátor 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Vyberte vlnu pro první suboscilátor oscilátoru 3. Oscilátor 3 může plynule interpolovat mezi dvěma různými vlnovými průběhy. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Vyberte vlnu pro druhý suboscilátor oscilátoru 3. Oscilátor 3 může plynule interpolovat mezi dvěma různými vlnovými průběhy. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - Otočný ovladač SUB mění poměr směšování mezi dvěma suboscilátory oscilátoru 3. Každý suboscilátor může být nastaven tak, aby vytvářel jiný vlnový průběh, a oscilátor 3 může plynule interpolovat mezi nimi. Všechny příchozí modulace oscilátoru 3 jsou shodným způsobem aplikovány na oba suboscilátory / vlnové průběhy. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - Kromě vyhrazených modulátorů Monstro umožňuje oscilátor 3 modulovat výstupem oscilátoru 2. - -Režim směšování znamená bez modulace: výstupy oscilátorů se jednoduše smíchají. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - Kromě vyhrazených modulátorů Monstro umožňuje oscilátor 3 modulovat výstupem oscilátoru 2. - -AM znamená amplitudovou modulaci: Amplituda (hlasitost) oscilátoru 3 je modulována oscilátorem 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - Kromě vyhrazených modulátorů Monstro umožňuje oscilátor 3 modulovat výstupem oscilátoru 2. - -FM znamená frekvenční modulaci: frekvence (výška) oscilátoru 3 je modulována oscilátorem 2. Frekvenční modulace je implementována jako fázová modulace, která poskytuje stabilnější výslednou výšku než "čistá" frekvenční modulace. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - Kromě vyhrazených modulátorů Monstro umožňuje oscilátor 3 modulovat výstupem oscilátoru 2. - -PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2. To se liší od frekvenční modulace tím, že fázové změny nejsou kumulativní. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Vyberte tvar vlny pro LFO 1. -"Náhodná" a "Vyhlazená náhodná" jsou speciální vlny: produkují náhodný výstup, kde rychlost LFO řídí, jak často se mění stav LFO. Vyhlazená verze interpoluje mezi těmito stavy kosinovou interpolací. Tyto náhodné režimy mohou být použity k oživení vašich předvoleb – přidávají něco z analogové nepředvídatelnosti... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Vyberte tvar vlny pro LFO 2. -"Náhodná" a "Vyhlazená náhodná" jsou speciální vlny: produkují náhodný výstup, kde rychlost LFO řídí, jak často se mění stav LFO. Vyhlazená verze interpoluje mezi těmito stavy kosinovou interpolací. Tyto náhodné režimy mohou být použity k oživení vašich předvoleb – přidávají něco z analogové nepředvídatelnosti... - - - - - Attack causes the LFO to come on gradually from the start of the note. - Náběh způsobí, že LFO najede postupně od začátku noty. - - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - Rate nastavuje rychlost LFO, měřenou v milisekundách za cyklus. Lze synchronizovat s tempem. - - - - - PHS controls the phase offset of the LFO. - PHS řídí fázový posun LFO. - - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE nebo předzpoždění (PRE, predelay) zpozdí začátek obálky oproti začátku noty. Hodnota 0 znamená bez zpoždění. - - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - NÁB nebo náběh určuje, jak rychle vystoupá začátek obálky do špičky, měřeno v milisekundách. Hodnota 0 znamená okamžitý náběh. - - - - - HOLD controls how long the envelope stays at peak after the attack phase. - Držení určuje, jak dlouho obálka zůstane na špičce po fázi náběhu. - - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - ÚTL nebo útlum (DEC, decoy) řídí rychlost poklesu obálky ze špičky do nulové úrovně (měřeno v milisekundách). Aktuální útlum může být kratší, pokud je použito podržení (sustain). - - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - POD nebo podržení (SUS, sustain) řídí úroveň podržení v obálce. Fáze útlumu (decoy) nemůže jít pod tuto úroveň, dokud je nota držená. - - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - UVO nebo uvolnění určuje, jak dlouhé bude ukončení noty, tedy jak dlouho bude trvat zeslabení ze špičky na nulu. Skutečná délka uvolnění může být kratší v závislosti na tom, ve které fázi je nota ukončena. - - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - Otočný ovladač sklon řídí křivku a tvar obálky. Hodnota 0 vytváří přímý nárůst i pokles. Záporné hodnoty vytvářejí křivku, která začíná pomalu, rychle dosáhne špičky a opět pomalu klesá. Pozitivní hodnoty vytvářejí křivku, která začíná a končí rychle a udržuje se v blízkosti špičky. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount Hloubka modulace @@ -6365,7 +8951,7 @@ PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2 - Dry Gain: + Dry gain: Poměr zdrojového zvuku: @@ -6375,7 +8961,7 @@ PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2 - Lowpass stages: + Low-pass stages: Počet úrovní dolní propusti: @@ -6385,109 +8971,109 @@ PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2 - Swap left and right input channel for reflections + Swap left and right input channels for reflections Přepnout levý a pravý vstupní kanál pro odrazy NesInstrument - - Channel 1 Coarse detune + + Channel 1 coarse detune Kanál 1 hrubé rozladění - - Channel 1 Volume + + Channel 1 volume Hlasitost kanálu 1 - - Channel 1 Envelope length + + Channel 1 envelope length Kanál 1 délka obálky - - Channel 1 Duty cycle + + Channel 1 duty cycle Kanál 1 pracovní cyklus - - Channel 1 Sweep amount + + Channel 1 sweep amount Kanál 1 množství sweepu - - Channel 1 Sweep rate - Kanál 1rychlost 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 + + Channel 2 envelope length Kanál 2 délka obálky - - Channel 2 Duty cycle + + Channel 2 duty cycle Kanál 2 pracovní cyklus - - Channel 2 Sweep amount + + Channel 2 sweep amount Kanál 2 množství sweepu - - Channel 2 Sweep rate + + Channel 2 sweep rate Kanál 2 rychlost sweepu - - Channel 3 Coarse detune + + Channel 3 coarse detune Kanál 3 hrubé rozladění - - Channel 3 Volume + + Channel 3 volume Hlasitost kanálu 3 - - Channel 4 Volume + + Channel 4 volume Hlasitost kanálu 4 - - Channel 4 Envelope length + + Channel 4 envelope length Kanál 4 délka obálky - - Channel 4 Noise frequency + + Channel 4 noise frequency Kanál 4 frekvence šumu - - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep Kanál 4 sweep frekvence šumu - + Master volume Hlavní hlasitost - + Vibrato Vibráto @@ -6495,220 +9081,408 @@ PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2 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 + + 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 @@ -6755,105 +9529,85 @@ PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2 PatmanView - - Open other patch - Otevřít jiný patch + + Open patch + Otevřít patch - - Click here to open another patch-file. Loop and Tune settings are not reset. - Klepněte sem, pokud chcete otevřít další patch-soubor. Nastavení smyčky a režimu ladění zůstanou zachována. - - - + Loop Smyčka - + Loop mode Režim smyčky - - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Zde můžete přepínat režim smyčky. Je-li zapnutá, PatMan použije informace o smyčce dostupné v souboru. - - - + Tune Ladění - + Tune mode Režim ladění - - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Zde můžete přepínat režim ladění. Je-li zapnut, PatMan naladí vzorek tak, aby odpovídal frekvenci noty. - - - + No file selected Není vybrán žádný soubor - + Open patch file Otevřít soubor patch - + Patch-Files (*.pat) Soubor patch (*.pat) - PatternView + MidiClipView - - use mouse wheel to set velocity of a step - použijte kolečko myši pro nastavení dynamiky kroku - - - - double-click to open in Piano Roll - poklepáním otevřete v Piano rollu - - - + 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 @@ -6866,12 +9620,12 @@ PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2 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. @@ -6892,199 +9646,234 @@ PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2 PeakControllerEffectControlDialog - + BASE ZÁKL - - Base amount: - Základní míra: + + Base: + - + AMNT MNOŽ - + Modulation amount: Hloubka modulace: - + MULT NÁSB - - Amount Multiplicator: + + 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 - - Abs Value - Abs hodnota + + Absolute value + Absolutní hodnota - - Amount Multiplicator + + 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 - - Please open a pattern by double-clicking on it! + + 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: @@ -7092,207 +9881,284 @@ PM znamená fázovou modulaci: fáze oscilátoru 3 je modulována oscilátorem 2 PianoRollWindow - - Play/pause current pattern (Space) + + 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ů - - Stop playing of current pattern (Space) + + 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) - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Klepněte sem, pokud chcete přehrát aktuální záznam. To je užitečné při editaci. Záznam je automaticky přehráván ve smyčce. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Klepněte sem, pokud chcete nahrávat z MIDI zařízení nebo z virtuální klávesnice příslušného kanálového okna do aktuálního záznamu. Při nahrávání se zapíší všechny zahrané noty do tohoto záznamu, a následně je můžete přehrát nebo upravit. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Klepněte sem, pokud chcete nahrávat z MIDI zařízení nebo z virtuální klávesnice příslušného kanálového okna do aktuálního záznamu. Při nahrávání se zapíší všechny zahrané noty do tohoto záznamu a na pozadí uslyšíte skladbu nebo stopu bicích/basů. - - - - Click here to stop playback of current pattern. - Klepněte sem, pokud chcete zastavit přehrávání aktuálního záznamu. - - - + 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) - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Klepněte sem pro aktivaci režimu kreslení. V tomto režimu můžete přidávat, měnit a přesouvat noty. Toto je výchozí režim, který se používá nejčastěji. Pro aktivaci tohoto režimu můžete také stisknout "Shift+D" na klávesnici. V tomto režimu podržte %1 pro dočasné přepnutí do režimu výběru. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Klepněte sem pro aktivaci režimu mazání. V tomto režimu můžete vymazávat noty. Pro aktivaci tohoto režimu můžete také stisknout tlačítko "Shift+E" na klávesnici. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Klepněte sem pro aktivaci režimu výběru. V tomto režimu můžete vybírat noty. Alternativně můžete v režimu kreslení držet %1 pro dočasné přepnutí do režimu výběru. - - - + Pitch Bend mode (Shift+T) Režim ohýbání výšky (Shift+T) - - Click here and Pitch Bend mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - Klepněte sem pro aktivaci režimu ohýbání výšky tónu. V tomto režimu můžete klepnutím na notu otevřít její automatizované rozladění. To můžete využít ke sklouznutí z jedné noty na jinou. Pro aktivaci tohoto režimu můžete také stisknout klávesu "Shift+T" na klávesnici. - - - + 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 selected notes (%1+X) - Vyjmout označené noty (%1+X) + + Cut (%1+X) + Vystřihnout (%1+X) - - Copy selected notes (%1+C) - Kopírovat označené noty (%1+C) + + Copy (%1+C) + Kopírovat (%1+C) - - Paste notes from clipboard (%1+V) - Vložit noty ze schránky (%1+V) + + Paste (%1+V) + Vložit (%1+V) - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klepněte sem, pokud chcete označené noty vyjmout a uložit do schránky. Vložit je pak můžete kdekoliv v libovolném záznamu pomocí tlačítka Vložit. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klepněte sem, pokud chcete označené noty zkopírovat do schránky. Vložit je pak můžete kdekoliv v libovolném záznamu pomocí tlačítka Vložit. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Klepnete-li sem, budou noty ze schránky vloženy do prvního viditelného taktu. - - - + 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 - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Tímto se ovládá zvětšení osy. To může být užitečné při volbě zvětšení pro konkrétní úkol. Při běžné úpravě by mělo být zvětšení použito na vaše nejmenší noty. + + Horizontal zooming + Horizontální zvětšení - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - "Q" znamená kvantizaci, která ovládá mřížku velikosti not a kontrolní body krokování. S menšími hodnotami kvantizace můžete kreslit kratší noty v Piano rollu a přesnější kontrolní body v editoru automatizace. + + Vertical zooming + Vertikální zvětšení - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - Tímto je možno vybrat délku nových not. "Poslední nota" znamená, že LMMS použije délku naposledy upravované noty. + + Quantization + Kvantizace - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - Funkce je přímo propojena s kontextovou nabídkou na virtuální klávesnici vlevo v Piano rollu. Poté, co jste v rozbalovací nabídce zvolili stupnici, můžete klepnout pravým tlačítkem na požadovanou klávesu na virtuální klávesnici, a pak zvolit "Zvýraznit zvolenou stupnici". LMMS zvýrazní všechny noty, které patří do zvolené stupnice, a to od klávesy, kterou jste vybrali! + + Note length + Délka noty - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - Vyberte si akord, který pak LMMS může nakreslit nebo zvýraznit. V rozbalovací nabídce najdete nejčastěji používané akordy. Po výběru akordu klepněte kamkoliv pro umístění akordu, klepnutím pravým tlačítkem na virtuální klávesnici pak otevřete kontextové menu a zvýrazníte akord. Chcete-li se vrátit k práci s jednotlivými notami, musíte v rozbalovací nabídce zvolit možnost "Žádný akord". + + Key + - - + + Scale + Stupnice + + + + Chord + Akord + + + + Snap mode + + + + + Clear ghost notes + Vymazat stínové noty + + + + Piano-Roll - %1 Piano roll – %1 - - - Piano-Roll - no pattern + + + 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! @@ -7300,178 +10166,1146 @@ Důvod: "%2" 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. + + + + + 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 + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + Ovládání + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Nastavení + + + + 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: + Typ: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + + 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! + + 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 + Zavřít + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + Zap/Vyp + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + 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... @@ -7479,98 +11313,125 @@ Důvod: "%2" ProjectRenderer - - WAV-File (*.wav) - WAV soubor (*.wav) + + WAV (*.wav) + WAV (*.wav) - - Compressed OGG-File (*.ogg) - Komprimovaný OGG soubor (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) - Soubor FLAC (*.flac) + + OGG (*.ogg) + OGG (*.ogg) - - Compressed MP3-File (*.mp3) - Komprimovaný soubor MP3 (*.mp3) + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin + + + + + Show GUI + Ukázat grafické rozhraní + + + + Help + Nápověda 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 @@ -7580,10 +11441,18 @@ Důvod: "%2" Soubor: + + RecentProjectsMenu + + + &Recently Opened Projects + &Naposledy otevřené projekty + + RenameDialog - + Rename... Přejmenovat... @@ -7597,7 +11466,7 @@ Důvod: "%2" - Input Gain: + Input gain: Zesílení vstupu: @@ -7627,7 +11496,7 @@ Důvod: "%2" - Output Gain: + Output gain: Zesílení výstupu: @@ -7635,8 +11504,8 @@ Důvod: "%2" ReverbSCControls - Input Gain - Vstupní úroveň + Input gain + Zesílení vstupu @@ -7650,126 +11519,601 @@ Důvod: "%2" - Output Gain + Output gain Zesílení výstupu + + 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 + + + + + Spectrum display resolution + Rozlišení zobrazení spektra + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + Překrývání FFT oken + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + Basy + + + + Mids + + + + + High + + + + + Extended + Rozšířený + + + + Loud + Hlasitý + + + + Silent + Tichý + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + SaControlsDialog + + + 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) - SampleTCOView + SampleClipView - - double-click to select sample - poklepáním vyberte sampl + + 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 + + SampleTrack - + Volume Hlasitost - + Panning Panoráma - - + + Mixer channel + Efektový kanál + + + + Sample track Stopa samplů @@ -7777,609 +12121,795 @@ Důvod: "%2" 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 - - Setup LMMS - Nastavení LMMS + + Reset to default value + Obnovit výchozí hodnoty - - - General settings - Hlavní nastavení - - - - BUFFER SIZE - VELIKOST VYR. PAMĚTI - - - - - Reset to default-value - Nastavit výchozí hodnoty - - - - MISC - JINÉ - - - - Enable tooltips - Zapnout bublinovou nápovědu - - - - Show restart warning after changing settings - Zobrazit výzvu k restartu po změně nastavení - - - - Display volume as dBFS - Zobrazit hlasitost v dBFS - - - - Compress project files per default - Komprimovat soubory s projekty - - - - One instrument track window mode - Režim jedné stopy pro nástroje - - - - HQ-mode for output audio-device - HQ režim pro výstup audio zařízení - - - - Compact track buttons - Malá tlačítka u stop - - - - Sync VST plugins to host playback - Synchronizace VST pluginů s hostujícím přehráváním - - - - Enable note labels in piano roll - Povolit názvy tónů v Piano rollu - - - - Enable waveform display by default - Povolit zobrazení vlny ve výchozím nastavení - - - - Keep effects running even without input - Nechat efekty spuštěné i bez vstupu - - - - Create backup file when saving a project - Při ukládání projektu vytvořit záložní soubor - - - - Reopen last project on start - Po spuštění otevřít poslední projekt - - - + Use built-in NaN handler Použít vestavěný NaN handler - - PLUGIN EMBEDDING - VLOŽENÍ PLUGINU + + 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 + + + + + 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 - - LANGUAGE - Jazyk + + Keep plugin windows on top when not embedded + Udržet okna pluginů na vrchu, když nejsou vložená - - - Paths - Cesty + + Sync VST plugins to host playback + Synchronizace VST pluginů s hostujícím přehráváním - - Directories - Adresáře + + 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 - - Themes directory - Adresář pro témata + + VST plugins directory + - - Background artwork - Obrázek na pozadí + + LADSPA plugins directories + - - VST-plugin directory - Adresář pro VST pluginy - - - - GIG directory - Adresář pro GIG - - - + SF2 directory Adresář pro SF2 - - LADSPA plugin directories - Adresář pro LADSPA pluginy + + Default SF2 + - - STK rawwave directory - Adresář pro STK rawwave + + GIG directory + Adresář pro GIG - - Default Soundfont File - Výchozí Soundfont soubor + + Theme directory + - - - Performance settings - Nastavení výkonu + + Background artwork + Obrázek na pozadí - - Auto save - Automatické ukládání + + Some changes require restarting. + Některé změny vyžadují restartování. - - Enable auto-save - Povolit automatické ukládání + + Autosave interval: %1 + Interval automatického ukládání: %1 - - Allow auto-save while playing - Povolit automatické ukládání během přehrávání + + Choose the LMMS working directory + Vyberte pracovní adresář LMMS - - UI effects vs. performance - Efekty uživatelského rozhraní vs. výkon + + Choose your VST plugins directory + Vyberte svůj adresář pro VST pluginy - - Smooth scroll in Song Editor - Plynulé posouvání v Song Editoru + + Choose your LADSPA plugins directory + Vyberte svůj adresář pro LADSPA pluginy - - Show playback cursor in AudioFileProcessor - Zobrazit přehrávací kurzor v AudioFileProcessoru + + Choose your default SF2 + Vyberte svůj výchozí SF2 soubor - - - Audio settings - Audio nastavení + + Choose your theme directory + Vyberte svůj adresář pro motivy - - AUDIO INTERFACE - AUDIO ROZHRANÍ + + Choose your background picture + Vyberte svou tapetu - - - MIDI settings - MIDI nastavení + + + Paths + Cesty - - MIDI INTERFACE - MIDI ROZHRANÍ - - - + OK OK - + Cancel Zrušit - - Restart LMMS - Restartovat LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - Mnohé změny nastavení se projeví až po restartu LMMS! - - - + Frames: %1 Latency: %2 ms Rámce: %1 Zpoždění %2 ms - - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Zde můžete nastavit interní velikost vyrovnávací paměti, která je užívána LMMS. Nízké hodnoty vedou k menšímu zpoždění, ale také způsobují nepoužitelný zvuk nebo špatný výkon, zejména na starých počítačích či systémech s jádrem nepodporujícím real time. - - - - Choose LMMS working directory - Vyberte pracovní adresář LMMS - - - + Choose your GIG directory Vyberte svůj adresář pro GIG soubory - + Choose your SF2 directory Vyberte svůj adresář pro SF2 soubory - - Choose your VST-plugin directory - Vyberte adresář pro VST pluginy - - - - Choose artwork-theme directory - Vyberte adresář s tématy - - - - Choose LADSPA plugin directory - Vyberte adresář pro LADSPA pluginy - - - - Choose STK rawwave directory - Vyberte adresář pro STK rawwave - - - - Choose default SoundFont - Vyberte výchozí SoundFont - - - - Choose background artwork - Vyberte obrázek na pozadí - - - + minutes minut - + minute minuta - + Disabled Vypnuto + + + SidInstrument - - Auto-save interval: %1 - Interval automatického ukládání: %1 + + Cutoff frequency + Frekvence oříznutí - - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Nastavte čas mezi automatickým zálohováním na %1. -Nezapomeňte také svůj projekt uložit ručně. Můžete si vybrat, zda nechcete během přehrávání zakázat ukládání, což je problematické pro některé starší systémy. + + Resonance + Rezonance - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - Zde vyberte preferované audio rozhraní. V závislosti na konfiguraci Vašeho systému při kompilaci můžete volit mezi ALSA, JACK, OSS a dalšími. Níže vidíte políčko, které nabízí možnost nastavení vybraného audio rozhraní. + + Filter type + Typ filtru - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - Zde vyberte preferované MIDI rozhraní. V závislosti na konfiguraci Vašeho systému při kompilaci můžete volit mezi ALSA OSS a dalšími. Níže vidíte políčko, které nabízí možnost nastavení vybraného MIDI rozhraní. + + Voice 3 off + Vypnout hlas 3 + + + + Volume + Hlasitost + + + + Chip model + Model čipu + + + + SidInstrumentView + + + Volume: + Hlasitost: + + + + Resonance: + Rezonance: + + + + + Cutoff frequency: + Frekvence oříznutí: + + + + High-pass filter + Filtr horní propust + + + + Band-pass filter + Filtr pásmová propust + + + + Low-pass filter + Filtr dolní propust + + + + 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: + + + + SideBarWidget + + + Close + Zavřít Song - + Tempo Tempo - + Master volume Hlavní hlasitost - + Master pitch Transpozice - + + 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 - - 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ů - - - - Empty project - Prázdný projekt + (repeated %1 times) + - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Tento projekt je prázdný, jeho exportování nemá smysl. Nejdříve prosím vložte nějaké položky do Editoru skladby! - - - - Select directory for writing exported tracks... - Vyberte adresář pro zápis exportovaných stop... - - - - - untitled - nepojmenovaný - - - - - Select file for project-export... - Vyberte soubor pro export projektu... - - - - Save project - Uložit projekt - - - - MIDI File (*.mid) - MIDI soubor (*.mid) - - - - The following errors occured while loading: - Během načítání se vyskytly tyto chyby: + + The following errors occurred while loading: + SongEditor - + 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 to write to this file. Please make sure you have write-access to the file and try again. - Nelze zapisovat do souboru %1. Pravděpodobně nemáte oprávnění zapisovat do tohoto souboru. Ujistěte se prosím, že máte oprávnění zapisovat do tohoto souboru a zkuse to znovu. + + 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í - - This %1 was created with LMMS %2. - %1 byl vytvořen v LMMS %2. - - - + template šablona - + project projekt - + Tempo Tempo - - TEMPO/BPM - TEMPO/BPM + + TEMPO + TEMPO - - tempo of song - tempo skladby + + Tempo in BPM + Tempo v BPM - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - Tempo skladby je uvedeno v úderech za minutu (BPM). Chcete-li změnit tempo skladby, změňte tuto hodnotu. Každý takt má čtyři doby (beats), takže tempo v BPM specifikuje kolik taktů / 4 bude za minutu přehráno (nebo kolik taktů bude přehráno ve čtyřech minutách). - - - + High quality mode Režim vysoké kvality - - + + + Master volume Hlavní hlasitost - - master volume - hlavní hlasitost - - - - + + + Master pitch Transpozice - - master pitch - transpozice - - - + Value: %1% Hodnota: %1% - + Value: %1 semitones Hodnota: %1 půltónů @@ -8387,131 +12917,149 @@ Nezapomeňte také svůj projekt uložit ručně. Můžete si vybrat, zda nechce 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) - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Klepněte sem, pokud chcete přehrát celou skladbu. Přehrávání začne v místě kde se nalézá zelený označovač pozice, se kterým lze též při přehrávání pohybovat. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Klepněte sem, pokud chcete zastavit přehrávání skladby. Označovač pozice bude nastaven na začátek skladby. - - - + 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í - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Lineární spektrum + + Horizontal zooming + Horizontální zvětšení - - Linear Y axis - Lineární osa Y + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControls + StepRecorderWidget - - Linear spectrum - Lineární spektrum + + Hint + Rada - - Linear Y axis - Lineární osa Y - - - - Channel mode - Režim kanálu + + 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 @@ -8519,17 +13067,25 @@ Nezapomeňte také svůj projekt uložit ručně. Můžete si vybrat, zda nechce TabWidget - + Settings for %1 Nastavení rpo %1 + + TemplatesMenu + + + New from template + Nový z šablony + + TempoSyncKnob - + Tempo Sync Synchronizace tempa @@ -8579,42 +13135,42 @@ Nezapomeňte také svůj projekt uložit ručně. Můžete si vybrat, zda nechce 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ě @@ -8623,36 +13179,36 @@ Nezapomeňte také svůj projekt uložit ručně. Můžete si vybrat, zda nechce TimeDisplayWidget - click to change time units - klepněte pro změnu časových jednotek + Time units + Časové jednotky - + MIN MIN - + SEC S - + MSEC MS - + BAR TAKT - + BEAT DOBA - + TICK TIK @@ -8660,56 +13216,50 @@ Nezapomeňte také svůj projekt uložit ručně. Můžete si vybrat, zda nechce TimeLineWidget - - Enable/disable auto-scrolling - Povolit/Zakázat automatický posun + + Auto scrolling + Automatické posouvání - - Enable/disable loop-points - Povolit/Zakázat body přehrávání ve smyčce + + Loop points + Body smyčky - - After stopping go back to begin - Po skončení přetočit zpět na začátek + + After stopping go back to beginning + - + 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 - + After stopping keep position Po skončení zachovat pozici - - + Hint Rada - + Press <%1> to disable magnetic loop points. Stiskněte <%1> pro vypnutí magnetických bodů smyčky. - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Držte <Shift> pro přesouvání počátečního bodu smyčky; stiskněte <%1> pro vypnutí magnetických bodů smyčky. - Track - + Mute Ztlumit - + Solo Sólo @@ -8747,13 +13297,13 @@ Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslu - + Cancel Zrušit - + Please wait... Prosím čekejte... @@ -8773,337 +13323,436 @@ Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslu Načítám Stopu %1 (%2/celkem %3) - + Importing MIDI-file... Importuji MIDI soubor... - TrackContentObject + Clip - + Mute Ztlumit - TrackContentObjectView + ClipView - + Current position Aktuální pozice - - - Hint - Rada - - - - Press <%1> and drag to make a copy. - K vytvoření kopie stiskněte <%1> a táhněte myší. - - - + Current length Aktuální délka - - Press <%1> for free resizing. - Stiskněte <%1> pro volnou změnu velikosti. - - - - + + %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 myši) + Ztlumit/Odtlumit (<%1> + prostřední tlačítko) + + + + Mute/unmute selection (<%1> + middle click) + + + + + Set clip color + + + + + Use track color + + + + + TrackContentWidget + + + Paste + Vložit TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. + + 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 for this track - Akce pro tuto stopu + + Actions + Akce - + + Mute Ztlumit - - + + Solo Sólo - - Mute this track - Ztlumit tuto stopu + + 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 - - FX %1: %2 + + Channel %1: %2 Efekt %1: %2 - - Assign to new FX Channel + + 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 + + TripleOscillatorView - - Use phase modulation for modulating oscillator 1 with oscillator 2 - Použít fázovou modulaci pro modulování oscilátoru 1 oscilátorem 2 + + Modulate phase of oscillator 1 by oscillator 2 + Modulovat fázi oscilátoru 1 oscilátorem 2 - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Použít amplitudovou modulaci pro modulování 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 oscillator 1 & 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 - - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Použít frekvenční modulaci pro modulování oscilátoru 1 oscilátorem 2 + + Modulate frequency of oscillator 1 by oscillator 2 + Modulovat frekvenci oscilátoru 1 oscilátorem 2 - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Použít fázovou modulaci pro modulování oscilátoru 2 oscilátorem 3 + + Modulate phase of oscillator 2 by oscillator 3 + Modulovat fázi oscilátoru 2 oscilátorem 3 - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Použít amplitudovou modulaci pro modulování 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 oscillator 2 & 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 - - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Použít frekvenční modulaci pro modulování oscilátoru 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: - - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Tímto otočným ovladačem můžete nastavit hlasitost oscilátoru %1. Když nastavíte hodnotu 0, oscilátor bude vypnutý. Jinak uslyšíte oscilátor tak hlasitě, jak si ho zde nastavíte. - - - + Osc %1 panning: Osc %1 panoráma: - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Tímto otočným ovladačem můžete nastavit panoráma oscilátoru %1. Hodnota -100 znamená maximálně doleva, zatímco hodnota 100 přesouvá výstup oscilátoru doprava. - - - + Osc %1 coarse detuning: Osc %1 hrubé rozladění: - + semitones půltónů - - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Tímto otočným ovladačem můžete provést hrubé rozladění oscilátoru %1. Můžete oscilátor rozladit o 24 půltónů (2 oktávy) nahoru nebo dolů. To je dobré pro vytvoření zvuku v akordu. - - - + Osc %1 fine detuning left: Osc %1 jemné rozladění vlevo: - - + + cents centů - - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Tímto otočným ovladačem můžete provést jemné rozladění oscilátoru %1 v levém kanálu. Rozsah jemného rozladění je mezi -100 a +100 centy. To je dobré pro vytvoření "tlustého" zvuku. - - - + Osc %1 fine detuning right: Osc %1 jemné rozladění vpravo: - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Tímto otočným ovladačem můžete provést jemné rozladění oscilátoru %1 v pravém kanálu. Rozsah jemného rozladění je mezi -100 a +100 centy. To je dobré pro vytvoření "tlustého" zvuku. - - - + Osc %1 phase-offset: Osc %1 posun fáze: - - + + degrees stupňů - - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Tímto otočným ovladačem můžete nastavit fázový posun oscilátoru %1. To znamená, že můžete posunout bod, ve kterém oscilátor začne kmitat. Například pokud máte sinusovou vlnu s fázovým posunem 180 stupňů, vlna půjde nejdříve dolů. Totéž se stane u vlny pravoúhlé. - - - + Osc %1 stereo phase-detuning: Osc %1 rozladění stereo fáze: - - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Tímto otočným ovladačem můžete nastavit rozladění fáze oscilátoru %1. Rozladění stereo fáze určuje velikost rozdílu mezi fázovým posunem levého a pravého kanálu. To je velmi dobré pro vytvoření širokého stereo zvuku. + + Sine wave + Sinusová vlna - - Use a sine-wave for current oscillator. - Použít sinusovou vlnu pro aktuální oscilátor. + + Triangle wave + Trojúhelníková vlna - - Use a triangle-wave for current oscillator. - Použít trojúhelníkovou vlnu pro aktuální oscilátor. + + Saw wave + Pilovitá vlna - - Use a saw-wave for current oscillator. - Použít pilovitou vlnu pro aktuální oscilátor. + + Square wave + Pravoúhlá vlna - - Use a square-wave for current oscillator. - Použít pravoúhlou vlnu pro aktuální oscilátor. + + Moog-like saw wave + Pilovitá vlna typu Moog - - Use a moog-like saw-wave for current oscillator. - Použít pilovitou vlnu typu Moog pro tento oscilátor. + + Exponential wave + Exponenciální vlna - - Use an exponential wave for current oscillator. - Použít exponenciální vlnu pro aktuální oscilátor. + + White noise + Bílý šum - - Use white-noise for current oscillator. - Použít bílý šum pro aktuální oscilátor. + + User-defined wave + Uživatelem definovaná vlna + + + + VecControls + + + Display persistence amount + - - Use a user-defined waveform for current oscillator. - Použít vlastní vlnu pro aktuální oscilátor. + + 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 Zvýšit číslo verze - + 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? @@ -9111,130 +13760,77 @@ Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslu VestigeInstrumentView - - Open other VST-plugin - Otevřít jiný VST plugin + + + Open VST plugin + Otevřít VST plugin - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Klepněte sem, pokud chcete otevřít jiný VST plugin. Po klepnutí na toto tlačítko se objeví okno, ve kterém můžete soubor vybrat. - - - - Control VST-plugin from LMMS host + + Control VST plugin from LMMS host Ovládání VST pluginu hostitelským programem LMMS - - Click here, if you want to control VST-plugin from host. - Klepněte sem, pokud chcete ovládat VST plugin hostitelským programem. + + Open VST plugin preset + Otevřít předvolby VST pluginu - - Open VST-plugin preset - Otevřít předvolbu VST pluginu - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klepněte sem, chcete-li otevřít jinou *.fxp, *.fxb předvolbu VST pluginu. - - - + Previous (-) Předchozí (-) - - - Click here, if you want to switch to another VST-plugin preset program. - Klepněte sem, chcete-li přepnout na jiný přednastavený VST program. - - - + Save preset Uložit předvolbu - - Click here, if you want to save current VST-plugin preset program. - Klepněte sem, chcete-li uložit aktuální předvolbu programu VST pluginu. - - - + Next (+) Další (+) - - Click here to select presets that are currently loaded in VST. - Klepněte sem, chcete-li vybrat předvolby, které jsou aktuálně nahrány ve VST. - - - + Show/hide GUI Zobrazit/Skrýt grafické rozhraní - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Klepněte sem pro zobrazení nebo skrytí grafického rozhraní (GUI) pro vaše VST pluginy. - - - + Turn off all notes Vypnout všechny noty - - Open VST-plugin - Otevřít jiný VST plugin - - - + DLL-files (*.dll) DLL soubory (*.dll) - + EXE-files (*.exe) EXE soubory (*.exe) - - No VST-plugin loaded + + No VST plugin loaded VST plugin není nahrán - + Preset Předvolba - + by od - + - VST plugin control – ovládání VST pluginu - - VisualizationWidget - - - click to enable/disable visualization of master-output - klepněte pro zapnutí/vypnutí vizualizace hlavního výstupu - - - - Click to enable - Klepněte pro zapnutí - - VstEffectControlDialog @@ -9244,63 +13840,37 @@ Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslu - Control VST-plugin from LMMS host + Control VST plugin from LMMS host Ovládání VST pluginu hostitelským programem LMMS - - Click here, if you want to control VST-plugin from host. - Klepněte sem, pokud chcete ovládat VST plugin hostitelským programem. + + Open VST plugin preset + Otevřít předvolby VST pluginu - - Open VST-plugin preset - Otevřít předvolbu VST pluginu - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klepněte sem, chcete-li otevřít jinou *.fxp, *.fxb předvolbu VST pluginu. - - - + Previous (-) Předchozí (-) - - - Click here, if you want to switch to another VST-plugin preset program. - Klepněte sem, chcete-li přepnout na jiný přednastavený VST program. - - - + Next (+) Další (+) - - Click here to select presets that are currently loaded in VST. - Klepněte sem, chcete-li vybrat předvolby, které jsou aktuálně nahrány ve VST. - - - + Save preset Uložit předvolbu - - Click here, if you want to save current VST-plugin preset program. - Klepněte sem, chcete-li uložit aktuální předvolbu programu VST pluginu. - - - - + + Effect by: Efekt od: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -9308,59 +13878,49 @@ Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslu 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 @@ -9378,147 +13938,147 @@ Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslu 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 @@ -9526,3361 +14086,2249 @@ Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslu 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 with output of A2 + + Modulate amplitude of A1 by output of A2 Modulovat amplitudu A1 výstupem A2 - - Ring-modulate A1 and A2 + + Ring modulate A1 and A2 Kruhově modulovat A1 a A2 - - Modulate phase of A1 with output of 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 with output of B2 + + Modulate amplitude of B1 by output of B2 Modulovat amplitudu B1 výstupem B2 - - Ring-modulate B1 and B2 + + Ring modulate B1 and B2 Kruhově modulovat B1 a B2 - - Modulate phase of B1 with output of 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 - - Click to load a waveform from a sample file - Klepněte pro načtení vlny ze souboru samplů + + Load a waveform from a sample file + Načíst vlnu ze souboru samplů - + Phase left Fáze vlevo - - Click to shift phase by -15 degrees - Klepněte pro posun fáze o -15 stupňů + + Shift phase by -15 degrees + Posunout fázi o -15 stupňů - + Phase right Fáze vpravo - - Click to shift phase by +15 degrees - Klepněte pro posun fáze o +15 stupňů + + Shift phase by +15 degrees + Posunout fázi o +15 stupňů - + + Normalize Normalizovat - - Click to normalize - Klepněte pro normalizaci - - - + + Invert Převrátit - - Click to invert - Klepněte pro převrácení - - - + + Smooth Uhladit - - Click to smooth - Klepněte pro vyhlazení - - - + + Sine wave Sinusová vlna - - Click for sine wave - Klepněte pro sinusovou vlnu - - - - + + + Triangle wave Trojúhelníková vlna - - Click for triangle wave - Klepněte pro trojúhelníkovou vlnu + + Saw wave + Pilovitá vlna - - Click for saw wave - Klepněte pro pilovitou vlnu + + + 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 + + + Draw your own waveform here by dragging your mouse on this graph. + Kreslení vlastní křivky tahem myši na tomto grafu. + + + + Select oscillator W1 + Vybrat oscilátor W1 + + + + Select oscillator W2 + Vybrat oscilátor W2 + + + + Select oscillator W3 + Vybrat oscilátor W3 + + + + Select output O1 + Vybrat výstup O1 + + + + Select output O2 + Vybrat výstup O2 + + + + Open help window + Otevřít okno nápovědy + + + + + Sine wave + Sinusová vlna + + + + + Moog-saw wave + Pilovitá vlna typu Moog + + + + + Exponential wave + Exponenciální vlna + + + + + Saw wave + Pilovitá vlna + + + + + User-defined wave + Uživatelem definovaná vlna + + + + + Triangle wave + Trojúhelníková vlna + + + + Square wave Pravoúhlá vlna - - Click for square wave - Klepněte pro pravoúhlou vlnu + + + 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 + + Filter frequency Frekvence filtru - - Filter Resonance + + Filter resonance Rezonance filtru - + Bandwidth Šířka pásma - - FM Gain + + FM gain Zesílení FM - - Resonance Center Frequency + + Resonance center frequency Střední frekvence rezonance - - Resonance Bandwidth + + Resonance bandwidth Šířka pásma rezonance - - Forward MIDI Control Change Events - Odesílat události MIDI Control Change + + Forward MIDI control change events + Odesílat události MIDI control change ZynAddSubFxView - + Portamento: Portamento: - + PORT PORT - - Filter Frequency: + + Filter frequency: Frekvence filtru: - + FREQ FREKV - - Filter Resonance: + + Filter resonance: Rezonance filtru: - + RES REZ - + Bandwidth: Šířka pásma: - + BW ŠP - - FM Gain: + + 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 MIDI Control Change + + Forward MIDI control changes + Odesílat události MIDI control change - + Show GUI - Ukázar grafické rozhraní - - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Klepněte sem pro zobrazení nebo skrytí grafického uživatelského rozhraní (GUI) ZynAddSubFX. + Ukázat grafické rozhraní - audioFileProcessor + 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 + BitInvader - - Samplelength + + Sample length Délka samplu - bitInvaderView + BitInvaderView - - Sample Length + + 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 - - Click for a sine-wave. - Klepněte sem pro sinusovou vlnu. - - - + + Triangle wave Trojúhelníková vlna - - Click here for a triangle-wave. - Klepněte sem pro trojúhelníkovou vlnu. - - - + + Saw wave Pilovitá vlna - - Click here for a saw-wave. - Klepněte sem pro pilovitou vlnu. - - - + + Square wave Pravoúhlá vlna - - Click here for a square-wave. - Klepněte sem pro pravoúhlou vlnu. - - - - White noise wave + + + White noise Bílý šum - - Click here for white-noise. - Klepněte sem pro bílý šum. + + + User-defined wave + Uživatelem definovaná vlna - - User defined wave - Vlna definovaná uživatelem + + + Smooth waveform + Vyhlazení vlny - - Click here for a user-defined shape. - Klepněte sem pro uživatelem definovaný tvar. - - - - Smooth - Vyhladit - - - - Click here to smooth waveform. - Klepněte sem pro vyhlazení vlny. - - - + Interpolation Interpolovat - + Normalize Normalizovat - dynProcControlDialog + 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 - UVOLNĚNÍ + DOZNĚNÍ - + Peak release time: - Délka uvolnění špičky: + Délka doznění špičky: - - Reset waveform - Obnovení vlny + + + Reset wavegraph + Vynulovat křivku - - Click here to reset the wavegraph back to default - Klepněte sem pro obnovení zobrazení křivky zpět do výchozího stavu + + + Smooth wavegraph + Vyhladit křivku - - Smooth waveform - Vyhlazení vlny - - - - Click here to apply smoothing to wavegraph - Klepněte sem pro vyhlazení křivky - - - - Increase wavegraph amplitude by 1dB + + + Increase wavegraph amplitude by 1 dB Zvýšení amplitudy křivky o 1 dB - - Click here to increase wavegraph amplitude by 1dB - Klepněte sem pro zvýšení amplitudy křivky o 1 dB - - - - Decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB Snížení amplitudy křivky o 1 dB - - Click here to decrease wavegraph amplitude by 1dB - Klepněte sem pro snížení amplitudy křivky o 1 dB + + Stereo mode: maximum + Režim sterea: maximální - - Stereomode Maximum - Režim maximálního sterea - - - + Process based on the maximum of both stereo channels Zpracování vycházející z maxima obou stereo kanálů - - Stereomode Average - Režim průměru sterea + + 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ů - - Stereomode Unlinked - Režim nepropojeného sterea + + Stereo mode: unlinked + Režim sterea: nepropojené - + Process each stereo channel independently Zpracování každého stereo kanálu zvlášť - dynProcControls + 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 - - fxLineLcdSpinBox - - - Assign to: - Přiřadit k: - - - - New FX Channel - Nový efektový kanál - - graphModel - + Graph Graf - kickerInstrument + KickerInstrument - + Start frequency Počáteční frekvence - + End frequency Konečná frekvence - + Length Délka - - Distortion Start + + Start distortion Začátek zkreslení - - Distortion End + + End distortion Konec zkreslení - + Gain Zisk - - Envelope Slope - Sklon frekvence + + Envelope slope + Sklon obálky - + Noise Šum - + Click Klik - - Frequency Slope + + Frequency slope Sklon frekvence - + Start from note Začít od noty - + End to note Skončit na notě - kickerInstrumentView + KickerInstrumentView - + Start frequency: Počáteční frekvence: - + End frequency: Konečná frekvence: - - Frequency Slope: + + Frequency slope: Sklon frekvence: - + Gain: Zisk: - - Envelope Length: + + Envelope length: Délka obálky: - - Envelope Slope: + + Envelope slope: Sklon obálky: - + Click: Klik: - + Noise: Šum: - - Distortion Start: + + Start distortion: Začátek zkreslení: - - Distortion End: + + End distortion: Konec zkreslení: - ladspaBrowserView + LadspaBrowserView - - + + Available Effects Dostupné efekty - - + + Unavailable Effects Nedostupné efekty - - + + Instruments Nástroje - - + + Analysis Tools Analyzační nástroje - - + + Don't know Neznámé - - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Toto dialogové okno zobrazuje informace o všech LADSPA pluginech, které bylo LMMS schopno nalézt. Zásuvné moduly jsou rozděleny do pěti kategorií podle portů a názvů. - - -K dispozici jsou ty efekty, které mohou být použity v LMMS. Aby v LMMS bylo možné užít efektu, musí se o efekt skutečně jednat, to znamená, že musí mít oba vstupní a výstupní kanály. LMMS identifikuje vstupní kanál jako audio podle "n" v názvu. Výstupní kanály jsou identifikovány pole označení písmeny "out". Kromě toho efekt musí mít stejný počet vstupů a výstupů a být real time kompatibilní. - -Nedostupné efekty jsou ty, které byly identifikovány jako efekty, ale buď nemají stejný počet vstupních a výstupních kanálů nebo nejsou real time kompatibilní. - -Nástroje jsou pluginy u kterých byly identifikovány pouze výstupní kanály. - -Analyzační nástroje jsou pluginy u kterých byly identifikovány pouze vstupní kanály. - -Neznámé jsou pluginy, pro které nebyly identifikovány žádné vstupní nebo výstupní kanály. - -Poklepáním na kterýkoliv modul se zobrazí informace o portech. - - - + Type: Typ: - ladspaDescription + LadspaDescription - + Plugins Pluginy - + Description Popis - ladspaPortDialog + 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 + Lb302Synth - + VCF Cutoff Frequency VCF frekvence vypnutí - + VCF Resonance VCF rezonance - + VCF Envelope Mod VCF modulace obálky - + VCF Envelope Decay - VCF útlum obálky + VCF pokles obálky - + Distortion Zkreslení - + Waveform Vlna - + Slide Decay - Útlum sklouznutí + Pokles sklouznutí - + Slide Sklouznutí - + Accent Důraz - + Dead Dead - + 24dB/oct Filter Filtr 24dB/okt - lb302SynthView + Lb302SynthView - + Cutoff Freq: Frekvence odstřihnutí: - + Resonance: Rezonance: - + Env Mod: Modulace obálky: - + Decay: - Útlum: + Pokles: - + 303-es-que, 24dB/octave, 3 pole filter 3pólový filtr 303-es-que, 24dB/okt - + Slide Decay: - Útlum sklouznutí: + 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 + MalletsInstrument - + Hardness Tvrdost - + Position Pozice - - Vibrato Gain - Zisk vibráta + + Vibrato gain + Zesílení vibráta - - Vibrato Freq + + Vibrato frequency Frekvence vibráta - - Stick Mix + + Stick mix Mix paliček - + Modulator Modulátor - + Crossfade Prolínání (crossfade) - - LFO Speed - LFO Rychlost + + LFO speed + Rychlost LFO - - LFO Depth - LFO Hloubka + + LFO depth + Hloubka LFO - + ADSR ADSR - + Pressure Tlak - + Motion Pohyb - + Speed Rychlost - + Bowed Smyčcem - + Spread Šíře - + Marimba Marimba - + Vibraphone Vibrafon - + Agogo Agogo - - Wood1 - Dřevo1 + + Wood 1 + Dřevěné 1 - + Reso Rezo - - Wood2 - Dřevo2 + + Wood 2 + Dřevěné 2 - + Beats Údery - - Two Fixed - Dvě spojené + + Two fixed + Dvojité - + Clump Svazek - - Tubular Bells + + Tubular bells Trubicové zvony - - Uniform Bar + + Uniform bar Obyčejná tyč - - Tuned Bar + + Tuned bar Laděná tyč - + Glass Sklo - - Tibetan Bowl - Tibetská zpívající mísa + + Tibetan bowl + Tibetská mísa - malletsInstrumentView + 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: - - Vib Gain - Vib zisk + + Vibrato gain + Zesílení vibráta - - Vib Gain: - Vib zisk: + + Vibrato gain: + Zesílení vibráta: - - Vib Freq - Vib frekv + + Vibrato frequency + Frekvence vibráta - - Vib Freq: - Vib frekv: + + Vibrato frequency: + Frekvence vibráta: - - Stick Mix + + Stick mix Mix paliček - - Stick Mix: + + Stick mix: Mix paliček: - + Modulator Modulátor - + Modulator: Modulátor: - + Crossfade Prolínání (crossfade) - + Crossfade: Prolínání (crossfade): - - LFO Speed - LFO Rychlost + + LFO speed + Rychlost LFO - - LFO Speed: - LFO Rychlost: + + LFO speed: + Rychlost LFO: - - LFO Depth - LFO Hloubka + + LFO depth + Hloubka LFO - - LFO Depth: - LFO Hloubka: + + LFO depth: + Hloubka LFO: - + ADSR ADSR - + ADSR: ADSR: - + Pressure Tlak - + Pressure: Tlak: - + Speed Rychlost - + Speed: Rychlost: - manageVSTEffectView + ManageVSTEffectView - + - VST parameter control - řízení parametrů VST - - VST Sync + + VST sync VST synch - - Click here if you want to synchronize all parameters with VST plugin. - Klepněte sem, chcete-li synchronizovat všechny parametry s VST pluginem. - - - - + + Automated Automaticky - - Click here if you want to display automated parameters only. - Klepněte sem, pokud chcete pouze zobrazit parametry automatizace. - - - + Close Zavřít - - - Close VST effect knob-controller window. - Zavřít okno otočných ovladačů VST efektu. - - manageVestigeInstrumentView + ManageVestigeInstrumentView - - + + - VST plugin control - ovládání VST pluginu - + VST Sync VST synch - - Click here if you want to synchronize all parameters with VST plugin. - Klepněte sem, chcete-li synchronizovat všechny parametry s VST pluginem. - - - - + + Automated Automaticky - - Click here if you want to display automated parameters only. - Klepněte sem, pokud chcete pouze zobrazit parametry automatizace. - - - + Close Zavřít - - - Close VST plugin knob-controller window. - Zavřít okno otočných ovladačů VST pluginu. - - opl2instrument + OrganicInstrument - - Patch - Patch - - - - Op 1 Attack - Op 1 náběh - - - - Op 1 Decay - Op 1 útlum - - - - Op 1 Sustain - Op 1 vydržení - - - - Op 1 Release - Op 1 uvolnění - - - - Op 1 Level - Op 1 úroveň - - - - Op 1 Level Scaling - Op 1 škálování úrovně - - - - Op 1 Frequency Multiple - 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 vlna - - - - Op 2 Attack - Op 2 náběh - - - - Op 2 Decay - Op 2 útlum - - - - Op 2 Sustain - Op 2 vydržení - - - - Op 2 Release - Op 2 uvolnění - - - - Op 2 Level - Op 2 úroveň - - - - Op 2 Level Scaling - Op 2 škálování úrovně - - - - Op 2 Frequency Multiple - 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 tvar vlny - - - - FM - FM - - - - Vibrato Depth - Hloubka vibráta - - - - Tremolo Depth - Hloubka tremola - - - - opl2instrumentView - - - - Attack - Náběh - - - - - Decay - Útlum - - - - - Release - Doznění - - - - - Frequency multiplier - Násobič frekvence - - - - organicInstrument - - + Distortion Zkreslení - + Volume Hlasitost - organicInstrumentView + OrganicInstrumentView - + Distortion: Zkreslení: - - The distortion knob adds distortion to the output of the instrument. - Otočný ovladač zkreslení přidá zkreslení k výstupu nástroje. - - - + Volume: Hlasitost: - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - Otočný ovladač hlasitosti ovládá hlasitost výstupu nástroje. Sčítá se s ovládáním hlasitosti okna nástroje. - - - + Randomise Nastavit náhodně - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - Tlačítko Randomize náhodně nastaví všechny ovladače kromě ovladače harmonických, hlavní hlasitosti a zkreslení. - - - - + + 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é: - FreeBoyInstrument + PatchesDialog - - Sweep time - Trvání sweepu - - - - Sweep direction - Směr sweepu - - - - Sweep RtShift amount - Úroveň pro změnu frekvence sweepu - - - - - Wave Pattern Duty - Pracovní cyklus vlnového patternu - - - - 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 - - - - The amount of increase or decrease in frequency - Množství zvýšení nebo snížení frekvence - - - - Sweep RtShift amount: - Úroveň pro změnu frekvence sweepu: - - - - Sweep RtShift amount - Úroveň pro změnu frekvence sweepu - - - - The rate at which increase or decrease in frequency occurs - Úroveň, při které dojde ke zvýšení nebo snížení frekvence - - - - - Wave pattern duty: - Pracovní cyklus vlnového patternu: - - - - Wave Pattern Duty - Pracovní cyklus vlnového patternu - - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - Pracovní cyklus je poměr mezi dobou trvání (časem), kdy je signál zapnut, a celkovou délkou signálu. - - - - - 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 - - - - - - The delay between step change - Zpoždění mezi změnou kroku - - - - Wave pattern duty - Pracovní cyklus vlnového patternu - - - - Square Channel 2 Volume: - Hlasitost pulzního kanálu 2: - - - - - Square Channel 2 Volume - Hlasitost pulzního kanálu 2 - - - - Wave Channel Volume: - Hlasitost vlnového kanálu: - - - - - Wave Channel Volume - Hlasitost vlnového kanálu - - - - 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 - - - - Channel1 to SO1 (Right) - Kanál 1 do SO1 (pravý) - - - - Channel2 to SO1 (Right) - Kanál 2 do SO1 (pravý) - - - - Channel3 to SO1 (Right) - Kanál 3 do SO1 (pravý) - - - - Channel4 to SO1 (Right) - Kanál 4 do SO1 (pravý) - - - - Channel1 to SO2 (Left) - Kanál 1 do SO2 (levý) - - - - Channel2 to SO2 (Left) - Kanál 2 do SO2 (levý) - - - - Channel3 to SO2 (Left) - Kanál 3 do SO2 (levý) - - - - Channel4 to SO2 (Left) - Kanál 4 do SO2 (levý) - - - - Wave Pattern - Vlnový pattern - - - - Draw the wave here - Nakreslete vlnu zde - - - - 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 - pluginBrowser + Sf2Instrument - - 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 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 - - - - 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 tb303 - Nekompletní monofonní imitace tb303 - - - - 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 - - - - Emulation of GameBoy (TM) APU - Emulace APU GameBoye (TM) - - - - 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. - - - - Graphical spectrum analyzer plugin - Plugin pro grafickou analýzu 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 - - - - 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 - - - - Embedded ZynAddSubFX - Vestavěný ZynAddSubFX - - - Mathematical expression parser - Parser matematických výrazů - - - - sf2Instrument - - + Bank Banka - + Patch Patch - + Gain Zisk - + Reverb Dozvuk - - Reverb Roomsize - Velikost dozvukového prostoru + + Reverb room size + Velikost místnosti - - Reverb Damping + + Reverb damping Útlum dozvuku - - Reverb Width + + Reverb width Délka dozvuku - - Reverb Level + + Reverb level Úroveň dozvuku - + Chorus Chorus - - Chorus Lines - Počet linií chorusu + + Chorus voices + Počet hlasů chorusu - - Chorus Level + + Chorus level Úroveň chorusu - - Chorus Speed + + Chorus speed Rychlost chorusu - - Chorus Depth + + Chorus depth Hloubka chorusu - + A soundfont %1 could not be loaded. Soundfont %1 nelze načíst. - sf2InstrumentView + Sf2InstrumentView - - Open other SoundFont file - Otevřít jiný SoundFont soubor - - - - Click here to open another SF2 file - Klepněte sem pro otevření jiného SF2 souboru - - - - Choose the patch - Vybrat patch - - - - Gain - Zesílení - - - - Apply reverb (if supported) - Použít dozvuk (je-li podporován) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Tímto tlačítkem zapnete efekt dozvuk (reverb). Ten lze použít pro výborné efekty, ale funguje pouze se soubory, které jej podporují. - - - - Reverb Roomsize: - Velikost dozvukového prostoru: - - - - Reverb Damping: - Útlum dozvuku: - - - - Reverb Width: - Délka dozvuku: - - - - Reverb Level: - Úroveň dozvuku: - - - - Apply chorus (if supported) - Použít chorus (je-li podporován) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Tímto tlačítkem zapnete efekt chorus. Ten lze použít pro výborné echo efekty, ale funguje pouze se soubory, které jej podporují. - - - - Chorus Lines: - Počet linií chorusu: - - - - Chorus Level: - Úroveň chorusu: - - - - Chorus Speed: - Rychlost chorusu: - - - - Chorus Depth: - Hloubka chorusu: - - - + + Open SoundFont file Otevřít SoundFont soubor - - SoundFont2 Files (*.sf2) - Soubory SoundFont2 (*.sf2) + + 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 + SfxrInstrument - - Wave Form + + Wave Vlna - sidInstrument + StereoEnhancerControlDialog - - Cutoff - Oříznutí - - - - Resonance - Rezonance - - - - Filter type - Typ filtru - - - - Voice 3 off - Vypnout hlas 3 - - - - Volume - Hlasitost - - - - Chip model - Model čipu - - - - sidInstrumentView - - - Volume: - Hlasitost: - - - - Resonance: - Rezonance: - - - - - Cutoff frequency: - Frekvence oříznutí: - - - - High-Pass filter - Filtr typu horní propust - - - - Band-Pass filter - Filtr typu pásmová propust - - - - Low-Pass filter - Filtr typu dolní propust - - - - Voice3 Off - Vypnout hlas 3 - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Náběh: - - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Rychlost náběhu určuje, jak rychle výstup hlasu %1 stoupne z nuly na špičkovou amplitudu. - - - - - Decay: - Útlum: - - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - Rychlost útlumu (decay) určuje, jak rychle poklesne výstup ze špičky na zvolenou úroveň vydržení (sustain). - - - - Sustain: - Vydržení: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - Výstup hlasu %1 zůstane na zvolené úrovni Vydržení po celou dobu, kdy bude nota držena. - - - - - Release: - Uvolnění: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - Výstup hlasu %1 poklesne z úrovně vydržení (sustain) na nulovou amplitudu zvolenou rychlostí uvolnění (release). - - - - - Pulse Width: - Délka pulzu: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - Rozlišení šířky pulsu umožňuje plynulé vyhlazení šířky, aby nebylo rozeznatelné krokování. Pulzní vlna na oscilátoru %1 musí být zvolena tak, aby měla slyšitelný efekt. - - - - Coarse: - Ladění: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - Hrubé rozladění umožní rozladit hlas %1 až o jednu oktávu nahoru nebo dolů. - - - - Pulse Wave - Pulzní vlna - - - - Triangle Wave - Trojúhelníková vlna - - - - SawTooth - Pilovitá vlna - - - - Noise - Šum - - - - Sync - Synch - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Synchronizace synchronizuje základní frekvenci oscilátoru %1 se základní frekvencí oscilátoru %2 pomocí efektu pevné (Hard Sync) synchronizace. - - - - Ring-Mod - Kruhová modulace - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Kruhová modulace nahradí výstup trojúhelníkové vlny na oscilátoru %1 "kruhově modulovanou" kombinací oscilátorů %1 a %2. - - - - Filtered - Filtrování - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Pokud je zapnuto filtrování, hlas %1 bude zpracován filtrem. Pokud je filtrování vypnuto, hlas %1 se objeví přímo na výstupu a filtr na něj nebude mít žádný efekt. - - - - Test - Test - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Test, když je nastaven, resetuje a zablokuje oscilátor %1 na nule, dokud se test nevypne. - - - - stereoEnhancerControlDialog - - - WIDE + + WIDTH ŠÍŘKA - + Width: Šířka: - stereoEnhancerControls + StereoEnhancerControls - + Width Šířka - stereoMatrixControlDialog + 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 + 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 + VestigeInstrument - + Loading plugin Načítám plugin - - Please wait while loading VST-plugin... + + Please wait while loading the VST plugin... Počkejte prosím, než se načte VST plugin... - vibed + 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 - - Pan %1 - Pan %1 + + String %1 panning + Struna %1 panoráma - - Detune %1 - Rozladění %1 + + String %1 detune + Struna %1 rozladění - - Fuzziness %1 - Roztřepení %1 + + String %1 fuzziness + Struna %1 roztřepení - - Length %1 - Délka %1 + + String %1 length + Struna %1 délka - + Impulse %1 Impulz %1 - - Octave %1 - Oktáva %1 + + String %1 + Struna %1 - vibedView + VibedView - - Volume: - Hlasitost: + + String volume: + Hlasitost struny: - - The 'V' knob sets the volume of the selected string. - Otočný ovladač "V" nastavuje hlasitost vybrané struny. - - - + String stiffness: Tvrdost struny: - - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - Otočný ovladač "S" nastavuje tvrdost vybrané struny. Tvrdost struny ovlivňuje délku doznívání struny. Čím nižší hodnota, tím déle bude struna znít. - - - + Pick position: Místo drnknutí: - - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - Otočný ovladač "P" nastavuje místo, ve kterém se na vybrané struně drnkne. Nižší nastavení znamená drnknutí blíže ke kobylce. - - - + Pickup position: Pozice snímače: - - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - Otočný ovladač "PU" nastavuje umístění snímače pro vybranou strunu. Nižší nastavení znamená snímač blíže u kobylky. + + String panning: + Panoráma struny: - - Pan: - Panoráma: + + String detune: + Rozladění struny: - - The Pan knob determines the location of the selected string in the stereo field. - Otočný ovladač "Pan" určuje pozici vybrané struny ve stereo prostoru. + + String fuzziness: + Roztřepení struny: - - Detune: - Rozladění: + + String length: + Délka struny: - - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - Otočný ovladač "Detune" mění ladění vybrané struny. Hodnoty nižší než nula způsobí plochý zvuk, hodnoty vyšší než nula způsobí ostřejší zvuk. + + Impulse + Impulz - - Fuzziness: - Roztřepení: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - Otočný ovladač "Slap" přidává ke zvuku vybrané struny jemné roztřepení, které je nejvíce patrné při náběhu tónu, ačkoliv lze také použít pro vytvoření více "kovového" zvuku struny. - - - - Length: - Délka: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - Otočný ovladač "Lenght" nastavuje délku vybrané struny. Delší struny budou znít déle a jasněji, nicméně však spotřebují více CPU cyklů. - - - - Impulse or initial state - Impulz nebo výchozí stav - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - Přepínač "IMP" určuje, zda vlna v grafu bude považována za impulz přenášený na strunu drnknutím nebo za počáteční stav struny. - - - + Octave Oktáva - - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - Volič "Octave" se používá k výběru harmonického tónu, na kterém bude struna znít. Například "-2" znamená, že struna bude znít dvě oktávy pod základním tónem, "F" znamená, že zní základní tón a "6" znamená, že struna bude znít šest oktáv nad základním tónem. - - - + Impulse Editor Editor impulzu - - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - Editor vlny poskytuje kontrolu nad výchozím stavem nebo impulzem, který je použit k rozvibrování struny. Tlačítka na pravé straně grafu inicializují vlnový průběh vybraného typu. Tlačítko "?" načte vlnu ze souboru – bude načteno pouze prvních 128 vzorků. - -Vlna může být také nakreslena v grafu. - -Tlačítko "S" vyhladí vlnu. - -Tlačítko "N" normalizuje vlnu. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Vibed simuluje až devět nezávisle vibrujících strun. Volič "String" vám umožní vybrat, kterou strunu budete upravovat. Pomocí voliče "Imp" vyberete, jestli graf představuje impulz nebo výchozí stav struny. Voličem "Octave" vyberete, na kterém harmonickém tónu má struna vibrovat. - -Graf vám umožňuje řízení výchozího stavu nebo impulzu použitého pro nastavení pohybu struny. - -Otočný ovladač "V" řídí hlasitost. Ovladač "S" nastavuje tvrdost struny. Ovladač "P" určuje pozici drnknutí. Ovladač "PU" nastavuje pozici snímače. - -"Pan" a "Detune" snad není třeba vysvětlovat. Ovladač "Slap" přidá ke zvuku struny jemné rozostření. - -Ovladač "Lenght" určuje délku struny. - -LED v pravém dolním rohu editoru vlny určuje, jestli bude struna v aktuálním nástroji aktivní. - - - + Enable waveform Zapnout vlnu - - Click here to enable/disable waveform. - Klepněte sem pro zapnutí/vypnutí vlny. + + Enable/disable string + Zapnout/vypnout strunu - + String Struna - - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - Volič strun se užívá k výběru struny, které bude upravována. Nástroj Vibed může obsahovat maximálně devět nezávisle vibrujících strun. LED v pravém dolním rohu editoru tvaru vlny indikuje, zda je vybraná struna aktivní. - - - + + Sine wave Sinusová vlna - - Use a sine-wave for current oscillator. - Použít sinusovou vlnu pro aktuální oscilátor. - - - + + Triangle wave Trojúhelníková vlna - - Use a triangle-wave for current oscillator. - Použít trojúhelníkovou vlnu pro aktuální oscilátor. - - - + + Saw wave Pilovitá vlna - - Use a saw-wave for current oscillator. - Použít pilovitou vlnu pro aktuální oscilátor. - - - + + Square wave Pravoúhlá vlna - - Use a square-wave for current oscillator. - Použít pravoúhlou vlnu pro aktuální oscilátor. - - - - White noise wave + + + White noise Bílý šum - - Use white-noise for current oscillator. - Použít bílý šum pro aktuální oscilátor. + + + User-defined wave + Uživatelem definovaná vlna - - User defined wave - Vlna definovaná uživatelem + + + Smooth waveform + Vyhlazení vlny - - Use a user-defined waveform for current oscillator. - Použít vlastní vlnu pro aktuální oscilátor. - - - - Smooth - Vyhladit - - - - Click here to smooth waveform. - Klepněte sem pro vyhlazení vlny. - - - - Normalize - Normalizovat - - - - Click here to normalize waveform. - Klepněte sem pro normalizaci vlny. + + + Normalize waveform + Normalizovat vlnu - voiceObject + VoiceObject - + Voice %1 pulse width Hlas %1 šířka pulzu - + Voice %1 attack Hlas %1 náběh - + Voice %1 decay - Hlas %1 útlum + Hlas %1 pokles - + Voice %1 sustain - Hlas %1 vydržení + Hlas %1 držení - + Voice %1 release - Hlas %1 uvolnění + Hlas %1 doznění - + Voice %1 coarse detuning Hlas %1 hrubé ladění - + Voice %1 wave shape Hlas %1 tvar vlny - + 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 - waveShaperControlDialog + WaveShaperControlDialog - + INPUT VSTUP - + Input gain: Zesílení vstupu: - + OUTPUT VÝSTUP - + Output gain: Zesílení výstupu: - - Reset waveform - Obnovení vlny + + + Reset wavegraph + Vynulovat křivku - - Click here to reset the wavegraph back to default - Klepněte sem pro obnovení zobrazení křivky zpět do výchozího stavu + + + Smooth wavegraph + Vyhladit křivku - - Smooth waveform - Vyhlazení vlny + + + Increase wavegraph amplitude by 1 dB + Zvýšení amplitudy křivky o 1 dB - - Click here to apply smoothing to wavegraph - Klepněte sem pro vyhlazení křivky + + + Decrease wavegraph amplitude by 1 dB + Snížení amplitudy křivky o 1 dB - - Increase graph amplitude by 1dB - Zvýši amplitudu grafu o 1dB - - - - Click here to increase wavegraph amplitude by 1dB - Klepněte sem pro zvýšení amplitudy křivky o 1 dB - - - - Decrease graph amplitude by 1dB - Snížit amplitudu grafu o 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - Klepněte sem pro snížení amplitudy křivky o 1 dB - - - + Clip input Ořezat vstup - - Clip input signal to 0dB - Vstupní úroveň klipu 0dB + + Clip input signal to 0 dB + Ořezat vstupní signál na 0 dB - waveShaperControls + WaveShaperControls - + Input gain Zesílení vstupu - + Output gain Zesílení výstupu diff --git a/data/locale/de.ts b/data/locale/de.ts index d3957edf3..51ca7d562 100644 --- a/data/locale/de.ts +++ b/data/locale/de.ts @@ -2,93 +2,111 @@ AboutDialog + About LMMS Über LMMS - Version %1 (%2/%3, Qt %4, %5) - Version %1 (%2/%3, Qt %4, %5) - - - About - Über - - - LMMS - easy music production for everyone - LMMS - Musikproduktion für jedermann - - - Authors - Autoren - - - Translation - Übersetzung - - - 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! - Deutsche Übersetzung von Tobias Doerffel und Daniel Winzen. - -Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder eine bereits existierende Übersetzung verbessern möchten, können Sie uns gerne helfen! Kontaktieren Sie einfach den Betreiber! - - - License - Lizenz - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + Version %1 (%2/%3, Qt %4, %5). + + + + About + Über + + + + LMMS - easy music production for everyone. + LMMS - Muskproduktion für jedermann + + + + Copyright © %1. + Copyright © %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> + + + + Authors + Autoren + + + Involved Beteiligt + Contributors ordered by number of commits: Mitwirkende sortiert nach der Anzahl an Einreichungen: - Copyright © %1 - Copyright © %1 + + Translation + Übersetzung - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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! + + + License + Lizenz + AmplifierControlDialog + VOL VOL + Volume: Lautstärke: + PAN PAN + Panning: Balance: + LEFT LINKS + Left gain: Linke Verstärkung: + RIGHT RECHTS + Right gain: Rechte Verstärkung: @@ -96,18 +114,22 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder AmplifierControls + Volume Lautstärke + Panning Balance + Left gain Linke Verstärkung + Right gain Rechte Verstärkung @@ -115,10 +137,12 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder AudioAlsaSetupWidget + DEVICE GERÄT + CHANNELS KANÄLE @@ -126,85 +150,60 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder AudioFileProcessorView - Open other sample - Anderes Sample öffnen - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Klicken Sie hier, um eine andere Audio-Datei zu öffnen. Danach erscheint ein Dialog, in dem Sie Ihre Datei wählen können. Einstellungen wie Wiederhol-Modus, Start- und Endpunkt sowie Verstärkung werden nicht zurückgesetzt, weshalb die Datei möglicherweise nicht wie das Original klingt. + + Open sample + Sample öffnen + Reverse sample Sample umkehren - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Wenn Sie diesen Knopf aktivieren, wird das gesamte Sample umgekehrt. Das kann nützlich für coole Effekte sein, wie z.B. eine umgekehrte Crash. - - - Amplify: - Verstärkung: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Mit diesem Regler können Sie die Verstärkungsrate festlegen. Wenn Sie einen Wert von 100% setzen, wird das Sample nicht geändert. Ansonsten wird es hoch oder runter verstärkt (Ihre Audio-Datei wird dabei nicht verändert!) - - - Startpoint: - Startpunkt: - - - Endpoint: - Endpunkt: - - - Continue sample playback across notes - Samplewiedergabe über Noten fortsetzen - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Wenn Sie diese Option aktivieren, wird das Sample über verschiedene Noten weitergespielt. Wenn Sie die Tonhöhe ändern oder die Note endet, bevor das Ende des Samples erreicht ist, dann fängt die nächste Note da an, wo aufgehört wurde. Um die Wiedergabe an den Anfang des Samples zurückzusetzen, fügen Sie eine Note am unteren Ende des Keyboards ein (< 20Hz) - - + Disable loop Wiederholung deaktivieren - This button disables looping. The sample plays only once from start to end. - Dieser Regler deaktiviert Wiederholung. Das Sample wird nur einmal vom Anfang bis zum Ende wiedergegeben . - - + Enable loop Wiederholung aktivieren - This button enables forwards-looping. The sample loops between the end point and the loop point. - Dieser Knopf aktiviert Vorwärts-Wiederholung. Das Sample wird zwischen dem Endpunkt und dem Loop-Punkt wiederholt. + + Enable ping-pong loop + Ping Pong Loop aktivieren - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Dieser Knopf aktiviert Ping-Pong-Wiederholung. Das Sample wird zwischen dem Endpunkt und dem Loop-Punkt rückwärts und vorwärts wiederholt. + + Continue sample playback across notes + Samplewiedergabe über Noten fortsetzen - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Mit diesem Regler können Sie festlegen, wo AudioFileProcessor anfangen soll, Ihr Sample zu spielen. + + Amplify: + Verstärkung: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Mit diesem Regler können Sie festlegen, wo AudioFileProcessor aufhören soll, Ihr Sample zu spielen. + + Start point: + Anfangspunkt: + + End point: + Endpunkt: + + + Loopback point: Wiederholungspunkt: - - With this knob you can set the point where the loop starts. - Mit diesem Regler können Sie festlegen, wo die Wiederholung beginnt. - AudioFileProcessorWaveView + Sample length: Samplelänge: @@ -212,447 +211,469 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder 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 - CLIENT-NAME + + Client name + - CHANNELS - KANÄLE + + Channels + Kanäle - AudioOss::setupWidget + AudioOss - DEVICE - GERÄT + + Device + Gerät - CHANNELS - KANÄLE + + Channels + Kanäle AudioPortAudio::setupWidget - BACKEND - BACKEND + + Backend + - DEVICE - GERÄT + + Device + Gerät - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - GERÄT + + Device + Gerät - CHANNELS - KANÄLE + + Channels + Kanäle AudioSdl::setupWidget - DEVICE - GERÄT + + Device + Gerät - AudioSndio::setupWidget + AudioSndio - DEVICE - GERÄT + + Device + Gerät - CHANNELS - KANÄLE + + Channels + Kanäle AudioSoundIo::setupWidget - BACKEND - BACKEND + + Backend + - DEVICE - GERÄT + + Device + Gerät AutomatableModel + &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 + + + + Edit song-global automation Song-globale Automation editieren - 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... - - + Remove song-global automation Song-globale Automation entfernen + Remove all linked controls - Alle verknüpften Controller entfernen + 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 - Please open an automation pattern with the context menu of a control! + + 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! - - Values copied - Werte kopiert - - - All selected values were copied to the clipboard. - Alle ausgewählten Werte wurden in die Zwischenablage kopiert. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) Aktuelles Pattern abspielen/pausieren (Leertaste) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Klicken Sie hier, wenn Sie das aktuelle Pattern spielen wollen. Das ist nützlich beim Bearbeiten. Das Pattern wird automatisch wiederholt, wenn das Ende erreicht ist. - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Abspielen des aktuellen Patterns stoppen (Leertaste) - Click here if you want to stop playing of the current pattern. - Klicken Sie hier, wenn Sie das Abspielen des aktuellen Patterns stoppen wollen. - - - Draw mode (Shift+D) - Zeichnenmodus (Umschalt+D) - - - Erase mode (Shift+E) - Radiermodus (Umschalt+E) - - - Flip vertically - Vertikal spiegeln - - - Flip horizontally - Horizontal spiegeln - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Klicke hier und das Pattern wird invertiert. Die Punkte werden in Y Richtung umgekehrt. - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Klicke hier und das Pattern wird umgekehrt. Die Punkte werden in X Richtung umgekehrt. - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Klicken Sie hier, um den Zeichnenmodus zu aktivieren. In diesem Modus können Sie einzelne Werte hinzufügen und verschieben. Das ist der Standard-Modus, der meistens benutzt wird. Sie können auch »Umschalt+D« auf Ihrer Tastatur drücken, um in diesen Modus zu gelangen. - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Klicken Sie hier, um den Radiermodus zu aktivieren. In diesem Modus können Sie einzelne Werte löschen. Sie können auch »Umschalt+E« auf Ihrer Tastatur drücken, um diesen Modus zu aktivieren. - - - Discrete progression - Diskretes Fortschreiten - - - Linear progression - Lineares Fortschreiten - - - Cubic Hermite progression - Kubisches, hermetisches Fortschreiten - - - Tension value for spline - Spannungswert für Spline - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Ein höherer Spannungswert erzeugt vielleicht eine glattere Kurve aber schießt teilweise über. Ein niederer Spannungswert wird die Kurve über jeden Kontrollpunkt legen. - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Klicken Sie hier, um diskretes Fortschreiten als Automationsmuster auszuwählen. Der Wert des verbundenen Objekts bleibt konstant zwischen den Kontrollpunkten und wird sofort auf den neuen Wert gesetzt, wenn ein Kontrollpunkt erreicht wird. - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Klicken Sie hier, um lineares Fortschreiten als Automationsmuster auszuwählen. Der Wert des verbundenen Objekts wird über die Zeit kontinuierlich zwischen Kontrollpunkten auf den korrekten Wert am jeweiligen Kontrollpunkt geändert, ohne plötzliche Änderungen. - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Klicken Sie hier, um kubisches, hermetisches Fortschreiten als Automationsmuster auszuwählen. Der Wert des verbundenen Objekts wird in einer nahtlosen Kurve geändert und in Spitzen und Täler übergehen. - - - Cut selected values (%1+X) - Ausgewählte Werte ausschneiden (%1+X) - - - Copy selected values (%1+C) - Ausgewählte Werte ausschneiden (%1+X) - - - Paste values from clipboard (%1+V) - Werte aus Zwischenablage einfügen (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klicken Sie hier, um die markierten Werte auszuschneiden und in die Zwischenablage zu kopieren. Sie können diese dann überall, auch in einem anderen Pattern, wieder einfügen, indem Sie auf den Einfügen-Knopf klicken. - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klicken Sie hier, um die markierten Werte in die Zwischenablage zu kopieren. Sie können diese dann überall, auch in einem anderen Pattern, wieder einfügen, indem Sie auf den Einfügen-Knopf klicken. - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Klicken Sie hier, um die Werte in der Zwischenablage im ersten sichtbaren Takt einzufügen. - - - Tension: - Spannung: - - - Automation Editor - no pattern - Automation-Editor - Kein Pattern - - - Automation Editor - %1 - Automation-Editor - %1 - - + 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 - Timeline controls - Zeitlinien 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 - Model is already connected to this pattern. - Model ist bereits mit diesem Pattern verbunden. - - + Quantization Quantisierung - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - + + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> - Ein Steuerelement mit <%1> hier her ziehen + Ein Steuerelement mit <Strg> hier her ziehen - AutomationPatternView + AutomationClipView + Open in Automation editor Im Automation-Editor öffnen + Clear Zurücksetzen + Reset name Name zurücksetzen + Change name Name ändern - %1 Connections - %1 Verbindungen - - - Disconnect "%1" - »%1« trennen - - + Set/clear record Aufnahme setzen/löschen + Flip Vertically (Visible) Vertikal spiegeln (Sichtbar) + Flip Horizontally (Visible) Horizontal spiegeln (Sichtbar) - Model is already connected to this pattern. + + %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 - BBEditor + PatternEditor + Beat+Bassline Editor - Zeige/verstecke 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) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Klicken Sie hier, um den aktuelle Beat/Bassline abzuspielen. Der Beat/Bassline wird am Ende automatisch wiederholt. - - - Click here to stop playing of current beat/bassline. - Klicken Sie hier, um das Abspielen des aktuellen Beats/Bassline zu stoppen. - - - Add beat/bassline - Beat/Bassline hinzufügen - - - Add automation-track - Automation-Spur hinzufügen - - - Remove steps - Schritte entfernen - - - Add steps - Schritte hinzufügen - - + Beat selector - + Beat Wähler + Track and step actions - Clone Steps - Schritte Klonen + + 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 + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor Im Beat+Bassline-Editor öffnen + Reset name Name zurücksetzen + Change name Name ändern - - Change color - Farbe ändern - - - Reset color to default - Farbe auf Standard zurücksetzen - - BBTrack + PatternTrack + Beat/Bassline %1 Beat/Bassline %1 + Clone of %1 Klon von %1 @@ -660,26 +681,32 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder BassBoosterControlDialog + FREQ FREQ + Frequency: Frequenz: + GAIN GAIN + Gain: Verstärkung: + RATIO RATIO + Ratio: Verhältnis: @@ -687,14 +714,17 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder BassBoosterControls + Frequency Frequenz + Gain Verstärkung + Ratio Verhältnis @@ -702,107 +732,2345 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder BitcrushControlDialog + IN IN + OUT OUT + + GAIN GAIN - Input Gain: + + Input gain: Eingangsverstärkung: - Input Noise: - Eingangsrauschen: - - - Output Gain: - Ausgabeverstärkung: - - - CLIP - CLIP - - - Output Clip: - - - - Rate Enabled - - - - Enable samplerate-crushing - - - - Depth Enabled - Tiefe eingeschalten - - - Enable bitdepth-crushing - - - - Sample rate: - Sample Rate: - - - Stereo difference: - Stereo Unterschied: - - - Levels: - Stärke: - - + 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 - 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 + + + About Carla + + + + + About + Über + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) - CaptionMenu + CarlaHostW + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Datei + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help &Hilfe - Help (not available) - Hilfe (nicht verfügbar) + + toolBar + + + + + 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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - Klicken Sie hier, um die grafische Oberfläche von Carla anzuzeigen bzw. auszublenden. + + Settings + Einstellungen + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + Pfade + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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: + 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 @@ -810,58 +3078,73 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder 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 - BENUTZERDEFINIERTER CONTROLLER + BENUTZERDEFINIETER CONTROLLER + MAPPING FUNCTION ABBILDUNGS-FUNKTION + OK OK + Cancel Abbrechen + LMMS LMMS + Cycle Detected. Schleife erkannt. @@ -869,135 +3152,181 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder 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 - Controllers are able to automate the value of a knob, slider, and other controls. - Mit Controller können Sie den Wert eines Reglers, Schiebereglers und anderer Steuerelemente automatisieren. - - + 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 - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: + + Band 1/2 crossover: + Band 1/2 Crossover: + + + + Band 2/3 crossover: + Band 2/3 Crossover: + + + + Band 3/4 crossover: - Band 2/3 Crossover: + + Band 1 gain - Band 3/4 Crossover: + + 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 4 Gain: - Band 4 Gain: + + Band 3 gain: + - Band 1 Mute - Band 1 Mute + + Band 4 gain + - Mute Band 1 - Mute Band 1 + + Band 4 gain: + - Band 2 Mute - Band 2 Mute + + Band 1 mute + - Mute Band 2 - Mute Band 2 + + Mute band 1 + - Band 3 Mute - Band 3 Mute + + Band 2 mute + - Mute Band 3 - Mute Band 3 + + Mute band 2 + - Band 4 Mute - Band 4 Mute + + Band 3 mute + - Mute Band 4 - Mute Band 4 + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + DelayControls - Delay Samples - Samples verzögern + + Delay samples + + Feedback Rückkopplung - Lfo Frequency - LFO-Frequenz + + LFO frequency + LFO Frequenz - Lfo Amount - LFO-Stärke + + LFO amount + + Output gain Ausgabeverstärkung @@ -1005,270 +3334,584 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder DelayControlsDialog - Lfo Amt - LFO-Stärke + + DELAY + VERZÖGERUNG - Delay Time - Verzögerungszeit - - - Feedback Amount - Rückkopplungsstärke - - - Lfo - LFO - - - Out Gain + + Delay time - Gain - Verstärkung - - - DELAY - DELAY - - + 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 + + + + + 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 + Wert setzen + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + + + + + Buffer size: + + + + + Sample rate: + Sample Rate: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + + DualFilterControlDialog - Filter 1 enabled - Filter 1 aktiviert - - - Filter 2 enabled - Filter 2 aktiviert - - - Click to enable/disable Filter 1 - Klicken Sie, um Filter 1 zu aktivieren/deaktivieren - - - Click to enable/disable Filter 2 - Klicken Sie, um Filter 2 zu aktivieren/deaktivieren - - + + 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 1 frequency - Kennfrequenz 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 2 frequency - Kennfrequenz 2 + + Cutoff frequency 2 + + Q/Resonance 2 Q/Resonanz 2 + Gain 2 Verstärkung 2 - LowPass - Tiefpass + + + Low-pass + - HiPass - Hochpass + + + Hi-pass + - BandPass csg - Bandpass csg + + + Band-pass csg + - BandPass czpg - Bandpass czpg + + + Band-pass czpg + + + Notch Notch - Allpass - Allpass + + + All-pass + + + Moog Moog - 2x LowPass - 2x Tiefpass + + + 2x Low-pass + - RC LowPass 12dB - RC-Tiefpass 12dB + + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC-Bandpass 12dB + + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC-Hochpass 12dB + + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC-Tiefpass 24dB + + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC-Bandpass 24dB + + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC-Hochpass 24dB + + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Vokalformant-Filter + + + Vocal Formant + + + 2x Moog 2x Moog - SV LowPass + + + SV Low-pass - SV BandPass + + + SV Band-pass - SV HighPass + + + 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 - Transport controls + + Toggle Step Recording Effect + Effect enabled - Effekt eingeschaltet + Effekt aktiviert + Wet/Dry mix Wet/Dry-Mix + Gate Gate + Decay Abfallzeit @@ -1276,6 +3919,7 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder EffectChain + Effects enabled Effekte aktiviert @@ -1283,10 +3927,12 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder EffectRackView + EFFECTS CHAIN EFFEKT-KETTE + Add effect Effekt hinzufügen @@ -1294,22 +3940,28 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder EffectSelectDialog + Add effect Effekt hinzufügen + + Name Name + Type Typ + Description Beschreibung + Author Verfasser @@ -1317,90 +3969,57 @@ Wenn Sie daran interessiert sind LMMS in eine andere Sprache zu übersetzen oder EffectView - Toggles the effect on or off. - Schaltet den Effekt an oder aus. - - + On/Off An/aus + W/D W/D + Wet Level: Wet-Level: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - Der Wet/Dry-Regler legt das Verhältnis zwischen Eingangssignal und vom Effekt bearbeiteten Signal im Ausgang fest. - - + DECAY DECAY + Time: Zeit: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - Der Abfallzeit-Regler legt fest, wie viele Puffer mit Stille durchgelaufen sein müssen, bis der Effekt mit der Verarbeitung stoppt. Kleinere Werte reduzieren die CPU-Last, können jedoch unter Umständen das Ende von Delay-Effekten o.ä. abschneiden. - - + GATE GATE + Gate: Gate: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - Der Gate-Regler legt die Stärke des Signals fest, welches als »Stille« angesehen wird, um zu entscheiden, wann das Plugin mit der Verarbeitung aufhören soll. - - + Controls Regler - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Effektplugins funktionieren als eine Aneinanderreihung von Effekten, wo das Signal von oben nach unter verarbeitet wird. - -Der Ein-/Ausschalter ermöglicht es Ihnen ein Plugin jeder Zeit zu umgehen. - -Der Wet/Dry-Regler legt das Verhältnis zwischen Eingangssignal und vom Effekt bearbeiteten Signal im Ausgang fest. Der Eingag dieses Effekts ist der Ausgang des vorherigen Effekts. Somit enthält das »dry«-Signal, für Effekte weiter unten in der Kette, alle vorherigen Effekte. - -Der Abfallzeit-Regler legt fest, wie lange das Signal weiterverarbeitet werden soll, nachdem die Noten losgelassen wurde. Der Effekt hört auf Signale zu verarbeiten, wenn die Lautstärke eines Signals für eine festgelegte Zeit unter einen festgelegten Schwellwert gefallen ist. Dieser Regler legt die »festgelegte Zeit« fest. Längere Zeiten brauchen mehr Rechenleistung, deshalb sollte diese Zahl für die meisten Effekte niedrig sein. Es muss für Effekte, die über längere Zeit Stille erzeugen, z.B. Verzögerungen, erhöht werden. - -Der Gate-Regler kontrolliert den »festgelegten Schwellwert« für das automatische Ausschalten des Effekts. Die Uhr für die »festgelegte Zeit« beginnt sobald der Pegel des verarbeiteten Signals unter den mit diesem Knopf festgelegten Pegel fällt. - -Der Regler-Knopf öffnet einen Dialog zum Bearbeiten der Parameter des Effekts. - -Ein Recktsklick öffnet ein Kontextmenü, in dem Sie die Reihenfolge der Effekte ändern oder einen Effekt entfernen können. - - + Move &up Nach &oben verschieben + Move &down Nach &unten verschieben + &Remove this plugin Plugin entfe&rnen @@ -1408,408 +4027,409 @@ Ein Recktsklick öffnet ein Kontextmenü, in dem Sie die Reihenfolge der Effekte EnvelopeAndLfoParameters - Predelay - Verzögerung (predelay) + + Env pre-delay + - Attack - Anschwellzeit (attack) + + Env attack + - Hold - Haltezeit (hold) + + Env hold + - Decay - Abfallzeit + + Env decay + - Sustain - Haltepegel (sustain) + + Env sustain + - Release - Ausklingzeit (release) + + Env release + - Modulation - Modulation + + Env mod amount + - LFO Predelay - LFO-Verzögerung + + LFO pre-delay + - LFO Attack - LFO-Anschwellzeit (LFO-attack) + + LFO attack + - LFO speed - LFO-Geschwindigkeit + + LFO frequency + LFO Frequenz - LFO Modulation - LFO Modulation + + LFO mod amount + - LFO Wave Shape - LFO-Wellenform + + LFO wave shape + - Freq x 100 - Freq x 100 + + LFO frequency x 100 + - Modulate Env-Amount - Hüllkurve modulieren + + Modulate env amount + EnvelopeAndLfoView + + DEL DEL - Predelay: - Verzögerung (predelay): - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Benutzen Sie diesen Regler, um die Verzögerung (predelay) für die aktuelle Hüllkurven einzustellen. Je größer dieser Wert, desto länger dauert es, bis die eigentliche Hüllkurve beginnt. + + + Pre-delay: + + + ATT ATT + + Attack: Anschwellzeit (attack): - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Benutzen Sie diesen Regler, um die Anschwellzeit (attack) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto länger braucht die Hüllkurve, um bis zum Anschwellpegel (attack-level) zu steigen. Wählen Sie einen kleinen Wert für Instrumente wie Klavier und einen großen Wert für Streichinstrumente. - - + HOLD HOLD + Hold: Haltezeit (hold): - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Benutzen Sie diesen Regler, um die Haltezeit (hold) der aktuellen Hüllkurve zu setzen. Je größer der Wert, desto länger hält die Hüllkurve den Anschwellpegel, bevor sie zum Haltepegel (sustain-level) abfällt. - - + DEC DEC + Decay: Abfallzeit (decay): - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Benutzen Sie diesen Regler, um die Abfallzeit (decay) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto länger braucht die Hüllkurve, um vom Anschwellpegel (attack-level) zum Dauerpegel (sustain-level) abzufallen. Wählen Sie einen kleinen Wert für Instrumente wie Klavier. - - + SUST SUST + Sustain: Dauerpegel (sustain): - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Benutzen Sie diesen Regler, um den Dauerpegel (sustain-level) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto höher der Pegel, den die Hüllkurve hält, bevor sie auf Null abfällt. - - + REL REL + Release: Ausklingzeit (release): - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Benutzen Sie diesen Regler, um die Ausklingzeit der aktuellen Hüllkurve einzustellen. Je größer der Wert, desto länger braucht die Hüllkurve um vom Dauerpegel (sustain-level) auf Null abzufallen. Wählen Sie einen großen Wert für weiche Instrumente, wie z.B. Streicher. - - + + AMT AMT + + Modulation amount: Modulationsintensität: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Benutzen Sie diesen Regler, um die Modulationsintensität für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto mehr wird die gewählte Größe (z.B. Lautstärke oder Cutoff-Frequenz) von der Hüllkurve beeinflusst. - - - LFO predelay: - LFO-Verzögerung: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Benutzen Sie diesen Regler, um die Verzögerungszeit für den aktuellen LFO einzustellen. Je größer dieser Wert, desto länger die Zeit, bis der LFO anfängt zu schwingen. - - - LFO- attack: - LFO-Anschwellzeit (LFO-attack): - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Benutzen Sie diesen Regler, um die Anschwellzeit für den aktuellen LFO einzustellen. Je größer dieser Wert, desto länger dauert es, bis die Amplitude des LFOs bis zum Maximum angestiegen ist. - - + SPD SPD - LFO speed: - LFO-Geschwindigkeit: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Benutzen Sie diesen Regler, um die Geschwindigkeit für den aktuellen LFO einzustellen. Je größer der Wert, desto schneller schwingt der LFO und desto schneller ist der entsprechende Effekt. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Benutzen Sie diesen Regler, um die Modulationsintensität des aktuellen LFOs einzustellen. Je größer der Wert, desto mehr wird die gewählte Größe (z.B. Lautstärke oder Cutoff-Frequenz) von diesem LFO beeinflusst. - - - Click here for a sine-wave. - Klick für eine Sinuswelle. - - - Click here for a triangle-wave. - Klick für eine Dreieckwelle. - - - Click here for a saw-wave for current. - Klick für eine Sägezahnwelle. - - - Click here for a square-wave. - Klick für eine Rechteckwelle. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Hier klicken für eine benutzerdefinierte Wellenform. Danach eine entsprechende Sampledatei auf den LFO-Graphen ziehen. + + Frequency: + Frequenz: + FREQ x 100 FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Hier klicken, wenn die Frequenz des LFOs mit 100 multipliziert werden soll. + + Multiply LFO frequency by 100 + - multiply LFO-frequency by 100 - LFO-Frequenz mit 100 multiplizieren + + MODULATE ENV AMOUNT + - MODULATE ENV-AMOUNT - HÜLLK. MODULIEREN - - - Click here to make the envelope-amount controlled by this LFO. - Klicken Sie hier, um die Hüllkurvenintensität durch diesen LFO kontrollieren zu lassen. - - - control envelope-amount by this LFO - Hüllkurvenintensität durch diesen LFO kontrollieren + + Control envelope amount by this LFO + + ms/LFO: ms/LFO: + Hint Tipp - Drag a sample from somewhere and drop it in this window. - Ziehen Sie ein Sample von irgendwo und lassen es in diesem Fenster fallen. - - - Click here for random wave. - Klick für eine zufällige Welle. + + Drag and drop a sample into this window. + EqControls + Input gain Eingangsverstärkung + Output gain Ausgabeverstärkung - Low shelf gain + + 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 + + High-shelf gain + HP res HP res - Low Shelf 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 + + High-shelf res + LP res LP res + HP freq + HP Freq + + + + Low-shelf freq - Low Shelf freq - - - + Peak 1 freq + Peak 2 freq + Peak 3 freq + Peak 4 freq - High shelf freq + + High-shelf freq + LP freq - + TP Freq + HP active - Low shelf 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 + + 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 - Tiefpass Art + + Low-pass type + - high pass type - Hochpass Art + + High-pass type + + Analyse IN Analyse IN + Analyse OUT Analyse OUT @@ -1817,85 +4437,108 @@ Ein Recktsklick öffnet ein Kontextmenü, in dem Sie die Reihenfolge der Effekte EqControlsDialog + HP HP - Low Shelf + + Low-shelf + Peak 1 Peak 1 + Peak 2 Peak 2 + Peak 3 Peak 3 + Peak 4 Peak 4 - High Shelf + + High-shelf + LP LP - In Gain - + + Input gain + Eingangsverstärkung + + + Gain Verstärkung - Out Gain - + + Output gain + Ausgabeverstärkung + Bandwidth: Bandbreite: + + Octave + Octave + + + Resonance : Resonanz: + Frequency: Frequenz: - lp grp + + LP group - hp grp + + HP group - - Octave - Octave - EqHandle + Reso: Reso: + BW: + + Freq: Freq: @@ -1903,253 +4546,271 @@ Ein Recktsklick öffnet ein Kontextmenü, in dem Sie die Reihenfolge der Effekte ExportProjectDialog + Export project Projekt exportieren - Output - Ausgabe - - - File format: - Dateiformat: - - - Samplerate: - Abtastrate: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Bitrate: - - - 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 - - - Depth: - Genauigkeit: - - - 16 Bit Integer - 16 Bit Ganzzahlen - - - 32 Bit Float - 32-Bit-Gleitkommazahlen - - - Quality settings - Qualitätseinstellungen - - - Interpolation: - Interpolation: - - - Zero Order Hold - Zero Order Hold - - - Sinc Fastest - Sinc - am schnellsten - - - Sinc Medium (recommended) - Sinc - Normal (empfohlen) - - - Sinc Best (very slow!) - Sinc - am besten (sehr langsam!) - - - Oversampling (use with care!): - Überabtastung (oversampling) (mit Vorsicht nutzen!): - - - 1x (None) - 1x (keine) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Start - - - Cancel - Abbrechen - - - Export as loop (remove end silence) - Als Schleife exportieren (Stille am Ende entfernen) + + Export as loop (remove extra bar) + + Export between loop markers Export zwischen den Loop markierungen - Could not open file - Konnte Datei nicht öffnen - - - Export project to %1 - Projekt nach %1 exportieren - - - 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% - - - 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! + + Render Looped Section: - 24 Bit Integer + + time(s) - Use variable bitrate + + File format settings + + File format: + Dateiformat: + + + + 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: - - - - Stereo - - - - Joint Stereo - + Stereo Modus: + Mono + Mono + + + + Stereo + Stereo + + + + Joint stereo + Compression level: - (fastest) + + Bitrate: + Bitrate: + + + + 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 + Verwende variable Bitrate + + + + Quality settings + Qualitätseinstellungen + + + + Interpolation: + Interpolation: + + + + Zero order hold - (default) + + Sinc worst (fastest) - (smallest) - - - - - Expressive - - Selected graph - Ausgewählter Graph - - - A1 + + Sinc medium (recommended) - A2 + + Sinc best (slowest) - A3 + + Oversampling: - W1 smoothing - + + 1x (None) + 1x (keine) - W2 smoothing - + + 2x + 2x - W3 smoothing - + + 4x + 4x - PAN1 - + + 8x + 8x - PAN2 - + + Start + Start - REL TRANS - + + 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: @@ -2157,14 +4818,27 @@ Please make sure you have write permission to the file and the directory contain FileBrowser + + User content + + + + + Factory content + + + + Browser Browser + Search + Refresh list @@ -2172,65 +4846,105 @@ Please make sure you have write permission to the file and the directory contain FileBrowserTreeWidget + Send to active instrument-track An aktive Instrumentspur senden - Open in new instrument-track/B+B Editor - In neuer Instrumentspur im B+B-Editor öffnen + + 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… - --- Factory files --- - --- Mitgelieferte Dateien --- - - - Open in new instrument-track/Song Editor - - - + Error Fehler - does not appear to be a valid + + %1 does not appear to be a valid %2 file - file - Datei + + --- Factory files --- + --- Mitgelieferte Dateien --- FlangerControls - Delay Samples - Samples verzögern + + Delay samples + - Lfo Frequency - LFO-Frequenz + + LFO frequency + LFO Frequenz + Seconds Sekunde + + Stereo phase + + + + Regen + Noise Rauschen + Invert Invertieren @@ -2238,146 +4952,516 @@ Please make sure you have write permission to the file and the directory contain FlangerControlsDialog - Delay Time: - Verzögerungszeit: - - - Feedback Amount: - Rückkopplungsstärke: - - - White Noise Amount: - Weißes Rauschen Stärke: - - + DELAY - 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 - Period: + + 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 - FxLine + MixerLine + Channel send amount Kanal Sendemenge - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Der FX Kanal erhält von ein oder mehr Instrumentenspuren Eingabesignale. - Er kann wiederum durch mehrere andere FX Kanäle gesendet werden. LMMS verhindert Endlosschleifen automatisch für Sie und erlaubt es nicht eine Verbindung zu erstellen, die in einer Endlosschleife resultiert. - -Um den Kanal an einen anderen Kanal zu senden, wählen Sie den FX Kanal aus und klicken Sie auf den »Senden« Knopf in dem Kananl, an den Sie den Kanal senden möchten. Der Knopf unter dem Sendeknopf kontrolliert die Stärke des gesendeten Signals. - -Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch einen Rechtsklick auf dem FX Kanal aufgerufen wird. - - - + 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 - - - FxMixer - Master - Master + + Set channel color + - FX %1 - FX %1 + + Remove channel color + - Volume - Lautstärke - - - Mute - Stumm - - - Solo - Solo - - - - FxMixerView - - FX-Mixer - FX-Mixer - - - FX Fader %1 - FX Schieber %1 - - - Mute - Stumm - - - Mute this FX channel - Diesen FX-Kanal stummschalten - - - Solo - Solo - - - Solo FX channel + + Pick random channel color - FxRoute + MixerLineLcdSpinBox + + 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 @@ -2385,14 +5469,17 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch GigInstrument + Bank Bank + Patch Patch + Gain Verstärkung @@ -2400,89 +5487,76 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch GigInstrumentView - Open other GIG file - + + + Open GIG file + GIG Datei öffnen - Click here to open another GIG file - - - - Choose the patch + + Choose patch Patch wählen - Click here to change which patch of the GIG file to use - - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - - - - Gain - Verstärkung - - - Factor to multiply samples by - - - - Open GIG file - + + 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 @@ -2490,650 +5564,798 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch InstrumentFunctionArpeggio + Arpeggio Arpeggio + Arpeggio type Arpeggiotyp + Arpeggio range Arpeggio-Bereich - Arpeggio time - Arpeggio-Zeit + + Note repeats + - Arpeggio gate - Arpeggio-Gate - - - Arpeggio direction - Arpeggio-Richtung - - - Arpeggio mode - Arpeggio-Modus - - - Up - Hoch - - - Down - Runter - - - Up and down - Hoch und runter - - - Random - Zufällig - - - Free - Frei - - - Sort - Sortiert - - - Sync - Synchron - - - Down and up - Hoch und runter + + Cycle steps + + Skip rate + Miss rate - Cycle steps - + + 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 - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Ein Arpeggio ist eine Art, (vor allem gezupfte) Instrumente zu spielen, die die Musik viel lebendiger macht. Die Seiten von solchen Instrumenten (z.B. Harfen) werden wie Akkorde gezupft, der einzige Unterschied besteht darin, dass dies nacheinander geschieht. Die Noten werden also nicht zur gleichen Zeit gespielt. Typische Arpeggios sind Dur- oder Moll-Dreiklänge, aber es gibt noch viele andere Akkorde, die Sie auswählen können. - - + RANGE RANGE + Arpeggio range: Arpeggio-Bereich: + octave(s) Oktave(n) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Benutzen Sie diesen Regler, um den Arpeggio-Bereich in Oktaven zu setzen. Das gewählte Arpeggio wird innerhalb der angegebenen Anzahl von Oktaven abgespielt. - - - TIME - ZEIT - - - Arpeggio time: - Arpeggio-Zeit: - - - ms - ms - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Benutzen Sie diesen Regler, um die Arpeggio-Zeit in Millisekunden zu setzen. Die Arpeggio-Zeit gibt an, wie lange jeder einzelne Arpeggio-Ton gespielt werden soll. - - - GATE - GATE - - - Arpeggio gate: - Arpeggio-Gate: - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Benutzen Sie diesen Regler, um das Arpeggio-Gate zu setzen. Das Arpeggio-Gate gibt an, wie viel Prozent eines ganzen Arpeggio-Tons gespielt werden sollen. Damit können Sie coole Staccato-Arpeggios erzeugen. - - - Chord: - Akkord: - - - Direction: - Richtung: - - - Mode: - Modus: - - - SKIP - SKIP - - - Skip rate: + + REP - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. + + Note repeats: - MISS - MISS - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. + + time(s) + CYCLE CYCLE + Cycle notes: + note(s) Notizen - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + 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 - Phrygolydian + + Phrygian Phrygisch + Lydian Lydisch + Mixolydian Mixolydisch + Aeolian Äolisch + Locrian Locrisch - Chords - Akkorde - - - Chord type - Akkordtyp - - - Chord range - Akkord-Bereich - - + 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 - RANGE - RANGE - - - Chord range: - Akkord-Bereich: - - - octave(s) - Oktave(n) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Benutzen Sie diesen Regler, um den Akkord-Bereich in Oktaven zu setzen. Der gewählte Akkord wird innerhalb der angegebenen Anzahl von Oktaven abgespielt. - - + STACKING STACKING + Chord: Akkord: + + + RANGE + RANGE + + + + Chord range: + Akkord-Bereich: + + + + octave(s) + Oktave(n) + InstrumentMidiIOView + ENABLE MIDI INPUT MIDI-EINGANG AKTIVIEREN - CHANNEL - KANAL - - - VELOCITY - LAUTSTÄRKE - - + ENABLE MIDI OUTPUT MIDI-AUSGANG AKTIVIEREN - PROGRAM - PROGRAMM + + + 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 - NOTE - NOTE - - + CUSTOM BASE VELOCITY BENUTZERDEFINIERTE GRUNDLAUTSTÄRKE - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - Geben Sie die Lautstärken-Normalisationsbasis für MIDI-basierende Instrumente bei einer Notenlautstärke von 100% an + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + + BASE VELOCITY GRUNDLAUTSTÄRKE @@ -3141,188 +6363,214 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch InstrumentMiscView + MASTER PITCH - Enables the use of 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 - LowPass - Tiefpass + + Low-pass + - HiPass - Hochpass + + Hi-pass + - BandPass csg - Bandpass csg + + Band-pass csg + - BandPass czpg - Bandpass czpg + + Band-pass czpg + + Notch Notch - Allpass - Allpass + + All-pass + + Moog Moog - 2x LowPass - 2x Tiefpass + + 2x Low-pass + - RC LowPass 12dB - RC-Tiefpass 12dB + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC-Bandpass 12dB + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC-Hochpass 12dB + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC-Tiefpass 24dB + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC-Bandpass 24dB + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC-Hochpass 24dB + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Vokalformant-Filter + + Vocal Formant + + 2x Moog 2x Moog - SV LowPass + + SV Low-pass - SV BandPass + + SV Band-pass - SV HighPass + + SV High-pass + SV Notch + Fast Formant + Tripole - + Tripol InstrumentSoundShapingView + TARGET ZIEL - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Diese Tabs enthalten Hüllkurven. Diese sind sehr wichtig, um einen Klang zu verändern, insbesondere bei der substraktiven Synthese. Wenn Sie zum Beispiel eine Lautstärke-Hüllkurve haben, können Sie festlegen, wann der Klang welchen Lautstärke-Pegel haben soll. Vielleicht wollen Sie ein weiches Streichinstrument erstellen. Dann muss ihr Sound sehr sanft ein- und ausgeblendet werden. Das kann man ganz einfach erreichen, indem man eine große Anschwell(attack)- und Ausklingzeit (release) einstellt. Mit anderen Hüllkurven, wie Balance, Kennfrequenz des benutzten Filters usw., ist es genau das Gleiche. Probieren Sie einfach ein bisschen herum! Mit ein paar Hüllkurven kann man aus einer Sägezahnwelle wirklich coole Klänge machen...! - - + FILTER FILTER - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Hier können Sie den eingebauten Filter wählen, den Sie in dieser Instrument-Spur nutzen wollen. Filter sind sehr wichtig, um die Charakteristik eines Klangs zu verändern. - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Benutzen Sie diesen Regler, um die Kennfrequenz (cutoff-frequency) für den gewählten Filter einzustellen. Die Kennfrequenz wird vom Filter zum Beschneiden des Signals verwendet. Zum Beispiel filtert ein Tiefpass-Filter alle Frequenzen oberhalb der Kennfrequenz heraus. Ein Hochpass-Filter filtert alle Frequenzen unterhalb der Kennfrequenz heraus usw... - - - RESO - RESO - - - Resonance: - Resonanz: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Benutzen Sie diesen Regler, um Q/die Resonanz für den gewählten Filter einzustellen. Q/Resonanz teilt dem Filter mit, wie stark er die Frequenzen in der Nähe der Cutoff-Frequenz verstärken soll. - - + FREQ FREQ - cutoff frequency: + + Cutoff frequency: Kennfrequenz: + + Hz + Hz + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. Hüllkurven, LFOs und Filter sind vom aktuellen Instrument nicht unterstützt. @@ -3330,222 +6578,345 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch InstrumentTrack + + unnamed_track Unbenannter_Kanal - Volume - Lautstärke - - - Panning - Balance - - - Pitch - Tonhöhe - - - FX channel - FX-Kanal - - - Default preset - Standard-Preset - - - With this knob you can set the volume of the opened channel. - Mit diesem Regler können Sie die Lautstärke des geöffneten Kanals ändern. - - + Base note Grundton + + First note + + + + + Last note + Letzte Note + + + + Volume + Lautstärke + + + + Panning + Balance + + + + Pitch + Tonhöhe + + + Pitch range Tonhöhenbereich - Master Pitch + + Mixer channel + FX-Kanal + + + + Master pitch + Master-Tonhöhe + + + + Enable/Disable MIDI CC + + + CC Controller %1 + + + + + + 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 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS GRUNDLEGENDE EINSTELLUNGEN - Instrument volume - Instrument-Lautstärke + + Volume + Lautstärke + Volume: Lautstärke: + VOL VOL + Panning Balance + Panning: Balance: + PAN PAN + Pitch Tonhöhe + Pitch: Tonhöhe: + cents Cent + PITCH PITCH - FX channel - FX-Kanal - - - FX - FX - - - Save preset - Preset speichern - - - XML preset file (*.xpf) - XML Preset Datei (*.xpf) - - + 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-Einstellungen in einer Presetdatei speichern - - - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Klicken Sie hier, wenn Sie die aktuellen Instrumentenspur-Einstellungen in einer Presetdatei speichern möchten. Sie können dieses Preset später durch Doppelklicken auf die Datei im Preset-Browser öffnen. - - - Use these controls to view and edit the next/previous track in the song editor. - + Aktuelle Instrumentenspur-Einstelungen in einer Presetdatei speichern + SAVE SPEICHERN + Envelope, filter & LFO + Chord stacking & arpeggio + Effects - + Effekte - MIDI settings - MIDI-Einstellungen + + MIDI + MIDI + Miscellaneous + Verschiedenes + + + + Save preset + Preset speichern + + + + XML preset file (*.xpf) + XML Preset Datei (*.xpf) + + + + Plugin + Plugin + + + + JackApplicationW + + + NSM applications cannot use abstract or absolute paths - Plugin + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + 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 - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: + + + 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 @@ -3553,10 +6924,12 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch LadspaControlDialog + Link Channels Kanäle verbinden + Channel Kanal @@ -3564,28 +6937,46 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch LadspaControlView + Link channels Kanäle verbinden + Value: Wert: - - Sorry, no help available. - Sorry, keine Hilfe verfügbar. - 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: @@ -3593,18 +6984,26 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch LeftRightNav + + + Previous Vorheriges + + + Next Nächstes + Previous (%1) Vorheriges (%1) + Next (%1) Nächstes (%1) @@ -3612,30 +7011,37 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch 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 @@ -3643,115 +7049,131 @@ Sie können FX Kanäle im Kontextmenü entfernen und verschieben, welches durch LfoControllerDialog + LFO LFO - LFO Controller - LFO-Controller - - + BASE BASE - Base amount: - Grundstärke: + + Base: + Basis - todo - Zu erledigen + + FREQ + FREQ - SPD - SPD + + LFO frequency: + LFO Frequenz: - LFO-speed: - LFO-Geschwindigkeit: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Benutzen Sie diesen Regler, um die Geschwindigkeit des LFOs einzustellen. Je größer der Wert, desto schneller schwingt der LFO und desto schneller ist der entsprechende Effekt. + + AMNT + AMNT + Modulation amount: Modulationsintensität: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Benutzen Sie diesen Regler, um die Modulationsintensität des LFOs einzustellen. Je größer der Wert, desto mehr wird die gewählte Größe (z.B. Lautstärke oder Cutoff-Frequenz) von diesem LFO beeinflusst. - - + PHS PHS + Phase offset: Phasenverschiebung: - degrees + + degrees Grad - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Mit diesem Regler können Sie die Phasenverschiebung des LFOs einstellen. Das heißt, Sie können den Punkt innerhalb einer Schwingung verschieben, an dem der Oszillator anfangen soll zu schwingen. Wenn Sie zum Beispiel eine Sinuswelle haben und eine Phasenverschiebung von 180 Grad einstellen, wird die Welle zu erst runter gehen. Das gleiche trifft auch bei einer Rechteckwelle zu. + + Sine wave + Sinuswelle - Click here for a sine-wave. - Klick für eine Sinuswelle. + + Triangle wave + Dreieckwelle - Click here for a triangle-wave. - Klick für eine Dreieckwelle. + + Saw wave + Sägezahnwelle - Click here for a saw-wave. - Klick für eine Sägezahnwelle. + + Square wave + Rechteckwelle - Click here for a square-wave. - Klick für eine Rechteckwelle. + + Moog saw wave + Moog-Sägezahnwelle - Click here for an exponential wave. - Klick für eine exponentielle Welle. + + Exponential wave + Exponentielle Welle - Click here for white-noise. - Klick für weißes Rauschen. + + White noise + Weißes Rauschen - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Klicken Sie hier für eine benutzerdefinierte From. -Doppelklicken Sie, um eine Datei auszuwählen. + - Click here for a moog saw-wave. - Klick für eine Moog-Sägezahnwelle. + + Mutliply modulation frequency by 1 + Multipliziere Modulationsfrequenz mit 1 - AMNT - AMNT + + Mutliply modulation frequency by 100 + Multipliziere Modulationsfrequenz mit 100 + + + + Divide modulation frequency by 100 + Dividiere Modulationsfrequenz mit 100 - LmmsCore + Engine + Generating wavetables - + Wellenformtabllen erzeugen + Initializing data structures - + Datenstrukturen initialisieren + Opening audio and midi devices - + Audio und MIDI-Geräte öffnen + Launching mixer threads @@ -3759,400 +7181,509 @@ Doppelklicken Sie, um eine Datei auszuwählen. 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 - What's this? - Was ist das? - - + 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 - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Mit diesem Knopf können Sie den Song-Editor zeigen oder verstecken. Mit Hilfe des Song-Editors können Sie die Song-Playliste bearbeiten und angeben, wann welche Spur abgespielt werden soll. Außerdem können Sie Samples (z.B. Rap samples) direkt in die Playliste einfügen und verschieben. - - + + Beat+Bassline Editor Zeige/verstecke Beat+Bassline Editor - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Mit diesem Knopf können Sie den Beat+Bassline-Editor zeigen oder verstecken. Mit dem Beat+Bassline-Editor kann man Beats erstellen, Bassline-Patterns bearbeiten uvm. - - + + Piano Roll Zeige/verstecke Piano-Roll - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Hier klicken, um das Piano-Roll zu zeigen oder verstecken. Mit Hilfe des Piano-Rolls können Sie Melodien auf einfache Art und Weise bearbeiten. - - + + Automation Editor Zeige/Verstecke Automation-Editor - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Hier klicken, um den Automation-Editor zu zeigen oder verstecken. Mit Hilfe des Automation-Editors können Sie Automation-Patterns auf einfache Art und Weise bearbeiten. + + + Mixer + Zeige/verstecke Mixer - FX Mixer - Zeige/verstecke FX-Mixer + + Show/hide controller rack + Zeige/Verstecke Kontroller Rack - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Hier klicken, um den FX-Mixer zu zeigen oder verstecken. Der FX-Mixer ist ein leistungsfähiges Werkzeug, um Effekte für Ihren Song zu verwalten. Sie können verschiedene Effekte in unterschiedliche Effekt-Kanäle einfügen. - - - Project Notes - Zeige/verstecke Projekt-Notizen - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Hier klicken, um die Projektnotizen zu zeigen oder verstecken. - - - Controller Rack - Zeige/verstecke Controller-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. - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) + + Controller Rack + Zeige/verstecke Controller-Rack - Version %1 - Version %1 + + Project Notes + Zeige/verstecke Projekt-Notizen - Configuration file - Konfigurationsdatei - - - Error while parsing configuration file at line %1:%2: %3 - Fehler beim Parsen der Konfigurationsdatei in Zeile %1:%2: %3 - - - Volumes - Volumes - - - Undo - Rückgängig - - - Redo - Wiederholen - - - My Projects - Meine Projekte - - - My Samples - Meine Samples - - - My Presets - Meine Presets - - - My Home - Mein Home - - - My Computer - Mein Computer - - - &File - &Datei - - - &Recently Opened Projects - &Zuletzt geöffnete Projekte - - - Save as New &Version - Speichern als neue &Version - - - E&xport Tracks... - Tracks e&xportieren... - - - Export &MIDI... - &MIDI exportieren... - - - Online Help - Online Hilfe - - - What's This? - Was ist das? - - - Open Project - Projekt öffnen - - - Save Project - Projekt speichern - - - Project recovery - Projekt 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? - - - - Recover - Wiederherstellen - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - - - - Discard - Verwerfen - - - Launch a default session and delete the restored files. This is not reversible. - - - - Preparing plugin browser - Plugin Browser vorbereiten - - - Preparing file browsers - Dateimanager vorbereiten - - - Root directory - Grundverzeichnis - - - Loading background artwork - - - - New from template - Neu von Vorlage - - - Save as default template - Speichere als Standard Vorlage - - - &View - &Ansicht - - - Toggle metronome - Metronom umschalten - - - Show/hide Song-Editor - Zeige/Verstecke Song-Editor - - - Show/hide Beat+Bassline Editor - Zeige/Verstecke Beat+Basslinien Editor - - - Show/hide Piano-Roll - Zeige/Verstecke Keyboard - - - Show/hide Automation Editor - Zeige/Verstecke Automations Editor - - - Show/hide FX Mixer - Zeige/Verstecke FX Mixer - - - Show/hide project notes - Zeige/Verstecke Projekt Notizen - - - Show/hide controller rack - Zeige/Verstecke Kontroller Rack - - - Recover session. Please save your work! - Session Wiederherstellung. Bitte speichere Deine Arbeit! - - - 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? - - - - LMMS Project - LMMS Projekt - - - LMMS Project Template - LMMS Projektvorlage - - - Overwrite default template? - Standard Vorlage überschreiben? - - - This will overwrite your current default template. - - - - Smooth scroll - - - - Enable note labels in piano roll - Notenbeschriftung in Piano-Roll aktivieren - - - Save project template + + Fullscreen + Volume as dBFS - Could not open file - Konnte Datei nicht öffnen + + Smooth scroll + Sanftes Scrollen - 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! + + 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... - Export &MIDI... - + + 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 @@ -4160,21 +7691,44 @@ Please make sure you have write permission to the file and the directory contain 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 @@ -4182,560 +7736,956 @@ Please make sure you have write permission to the file and the directory contain MidiImport + + Setup incomplete Unvollständige Einrichtung - You do not have 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. - Sie haben keine Standard-Soundfont im Einstellungsdialog (Bearbeiten->Einstellungen) festgelegt. Aus diesem Grund werden Sie nach dem Import der MIDI-Datei während der Wiedergabe nichts hören. Sie sollten eine General-MIDI-Soundfont herunterladen, diese im Einstellungsdialog angeben und es erneut versuchen. + + 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. - Track + + 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 + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Datei + + + + &Edit + &Bearbeiten + + + + &Quit + &Beenden + + + + &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 - Output MIDI program - Ausgangs-MIDI-Programm - - - Receive MIDI-events - MIDI-Ereignisse empfangen - - - Send MIDI-events - MIDI-Ereignisse senden - - + 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 + + Device + Gerät MonstroInstrument - Osc 1 Volume - Oszillator 1 Lautstärke + + Osc 1 volume + Oszilator 1 Lautstärke - Osc 1 Panning + + Osc 1 panning Oszillator 1 Balance - Osc 1 Coarse detune - Oszillator 1 Grob-Verstimmung + + Osc 1 coarse detune + - Osc 1 Fine detune left - Oszillator 1 Fein-Verstimmung links + + Osc 1 fine detune left + - Osc 1 Fine detune right - Oszillator 1 Fein-Verstimmung rechts + + Osc 1 fine detune right + - Osc 1 Stereo phase offset - Oszillator 1 Stereo Phasenverschiebung + + Osc 1 stereo phase offset + - Osc 1 Pulse width - Oszillator 1 Pulsweite + + Osc 1 pulse width + - Osc 1 Sync send on rise - Oszillator 1 Sync beim Steigen senden + + Osc 1 sync send on rise + - Osc 1 Sync send on fall - Oszillator 2 Sync beim Abfallen senden + + Osc 1 sync send on fall + - Osc 2 Volume - Oszillator 2 Lautstärke + + Osc 2 volume + - Osc 2 Panning - Oszillator 2 Balance + + Osc 2 panning + - Osc 2 Coarse detune - Oszillator 2 Grob-Verstimmung + + Osc 2 coarse detune + - Osc 2 Fine detune left - Oszillator 2 Fein-Verstimmung links + + Osc 2 fine detune left + - Osc 2 Fine detune right - Oszillator 2 Fein-Verstimmung rechts + + Osc 2 fine detune right + - Osc 2 Stereo phase offset - Oszillator 2 Stereo Phasenverschiebung + + Osc 2 stereo phase offset + - Osc 2 Waveform - Oszillator 2 Wellenform + + Osc 2 waveform + - Osc 2 Sync Hard - Oszillator 2 hart synchronisieren + + Osc 2 sync hard + - Osc 2 Sync Reverse - Oszillator 2 rückwärts synchronisieren + + Osc 2 sync reverse + - Osc 3 Volume - Oszillator 3 Lautstärke + + Osc 3 volume + - Osc 3 Panning - Oszillator 3 Balance + + Osc 3 panning + - Osc 3 Coarse detune - Oszillator 3 Grob-Verstimmung + + Osc 3 coarse detune + + Osc 3 Stereo phase offset Oszillator 3 Stereo Phasenverschiebung - Osc 3 Sub-oscillator mix - Oszillator 3 Unter-Oszillator Mischung + + Osc 3 sub-oscillator mix + - Osc 3 Waveform 1 - Oszillator 3 Wellenform 1 + + Osc 3 waveform 1 + - Osc 3 Waveform 2 - Oszillator 3 Wellenform 2 + + Osc 3 waveform 2 + - Osc 3 Sync Hard - Oszillator 2 hart synchronisieren + + Osc 3 sync hard + - Osc 3 Sync Reverse - Oszillator 2 rückwärts synchronisieren + + Osc 3 Sync reverse + - LFO 1 Waveform - LFO 1 Wellenform + + LFO 1 waveform + - LFO 1 Attack - LFO 1 Anschwellzeit + + LFO 1 attack + - LFO 1 Rate - LFO 1 Rate + + LFO 1 rate + - LFO 1 Phase - LFO 1 Phase + + LFO 1 phase + - LFO 2 Waveform - LFO 2 Wellenform + + LFO 2 waveform + - LFO 2 Attack - LFO 2 Anschwellzeit + + LFO 2 attack + - LFO 2 Rate - LFO 2 Rate + + LFO 2 rate + - LFO 2 Phase - Hüllkurve 2 Phase + + LFO 2 phase + - Env 1 Pre-delay - Hüllkurve 1 Verzögerung + + Env 1 pre-delay + - Env 1 Attack - Hüllkurve 1 Anschwellzeit + + Env 1 attack + - Env 1 Hold - Hüllkurve 1 Haltezeit + + Env 1 hold + - Env 1 Decay - Hüllkurve 1 Abfallzeit + + Env 1 decay + - Env 1 Sustain - Hüllkurve 1 Dauerpegel + + Env 1 sustain + - Env 1 Release - Hüllkurve 1 Ausklingzeit + + Env 1 release + - Env 1 Slope - Hüllkurve 1 Neigung + + Env 1 slope + - Env 2 Pre-delay - Hüllkurve 2 Verzögerung + + Env 2 pre-delay + - Env 2 Attack - Hüllkurve 2 Anschwellzeit + + Env 2 attack + - Env 2 Hold - Hüllkurve 2 Haltezeit + + Env 2 hold + - Env 2 Decay - Hüllkurve 2 Abfallzeit + + Env 2 decay + - Env 2 Sustain - Hüllkurve 2 Dauerpegel + + Env 2 sustain + - Env 2 Release - Hüllkurve 2 Ausklingzeit + + Env 2 release + - Env 2 Slope - Hüllkurve 2 Neigung + + Env 2 slope + - Osc2-3 modulation - Oszillator2-3 Modulation + + Osc 2+3 modulation + + Selected view Ausgewählte Ansicht - Vol1-Env1 - Vol1-Env1 - - - Vol1-Env2 - Vol1-Env2 - - - Vol1-LFO1 - Vol1-LFO1 - - - Vol1-LFO2 - Vol1-LFO2 - - - Vol2-Env1 - Vol2-Env1 - - - Vol2-Env2 - Vol2-Env2 - - - Vol2-LFO1 - Vol2-LFO1 - - - Vol2-LFO2 - Vol2-LFO2 - - - Vol3-Env1 - Vol3-Env1 - - - Vol3-Env2 - Vol3-Env2 - - - Vol3-LFO1 - Vol3-LFO1 - - - Vol3-LFO2 - Vol3-LFO2 - - - Phs1-Env1 - Phs1-Env1 - - - Phs1-Env2 - Phs1-Env2 - - - Phs1-LFO1 - Phs1-LFO1 - - - Phs1-LFO2 - Phs1-LFO2 - - - Phs2-Env1 - Phs2-Env1 - - - Phs2-Env2 - Phs2-Env2 - - - Phs2-LFO1 - Phs2-LFO1 - - - Phs2-LFO2 - Phs2-LFO2 - - - Phs3-Env1 - Phs3-Env1 - - - Phs3-Env2 + + Osc 1 - Vol env 1 - Phs3-LFO1 - Phs3-LFO1 + + Osc 1 - Vol env 2 + - Phs3-LFO2 - Phs3-LFO2 + + Osc 1 - Vol LFO 1 + - Pit1-Env1 - Pit1-Env1 + + Osc 1 - Vol LFO 2 + - Pit1-Env2 - Pit1-Env2 + + Osc 2 - Vol env 1 + - Pit1-LFO1 - Pit1-LFO1 + + Osc 2 - Vol env 2 + - Pit1-LFO2 - Pit1-LFO2 + + Osc 2 - Vol LFO 1 + - Pit2-Env1 - Pit2-Env1 + + Osc 2 - Vol LFO 2 + - Pit2-Env2 - Pit2-Env2 + + Osc 3 - Vol env 1 + - Pit2-LFO1 - Pit2-LFO1 + + Osc 3 - Vol env 2 + - Pit2-LFO2 - Pit2-LFO2 + + Osc 3 - Vol LFO 1 + - Pit3-Env1 - Pit3-Env1 + + Osc 3 - Vol LFO 2 + - Pit3-Env2 - Pit3-Env2 + + Osc 1 - Phs env 1 + - Pit3-LFO1 - Pit3-LFO1 + + Osc 1 - Phs env 2 + - Pit3-LFO2 - Pit3-LFO2 + + Osc 1 - Phs LFO 1 + - PW1-Env1 - PW1-Env1 + + Osc 1 - Phs LFO 2 + - PW1-Env2 - PW1-Env2 + + Osc 2 - Phs env 1 + - PW1-LFO1 - PW1-LFO1 + + Osc 2 - Phs env 2 + - PW1-LFO2 - PW1-LFO2 + + Osc 2 - Phs LFO 1 + - Sub3-Env1 - Sub3-Env1 + + Osc 2 - Phs LFO 2 + - Sub3-Env2 - Sub3-Env2 + + Osc 3 - Phs env 1 + - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Phs env 2 + - Sub3-LFO2 - Sub3-LFO2 + + 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 - Bandlimitierte Dreieckwelle + 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 @@ -4743,294 +8693,240 @@ Please make sure you have write permission to the file and the directory contain MonstroView + Operators view Operator-Ansicht - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - Die Operator-Ansicht enthält alle Operatoren. Diese beinhalten beide, hörbare Operatoren (Oszillatoren) und nicht hörbare Operatoren oder Modulatoren: Niedrig-Frequenz-Oszillatoren und Hüllkurven. - -Regler und andere Dinge in der Operator-Ansicht haben ihren eigenen »Was ist das?« Texte, sodass Sie auf diese Weise spezifischere Hilfe für diese bekommen können. - - + Matrix view Matrix-Ansicht - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - Die Matrix-Ansicht enthält die Modulationsmatrix. Hier können Sie die Modulationsverhältnisse zwischen den verschiedenen Operatoren definieren: Jeder hörbare Oberator (Oszillatorern 1-3) hat 3-4 Einstellungen, die durch jeden der Modulatoren moduliert werden können. Mehr Modulation braucht mehr Rechenleistung. - -Die Ansicht ist in Modulationsziele, gruppiert nach dem Zieloszillator, eingeteilt. Verfügbare Ziele sind Lautstärke, Tonhöhe, Phase, Pulsweite und Unter-Oszillator Rate. Hinweis: einige Ziele sind speziell für einen Oszillator. - -Jedes Modulationsziel hat 4 Regler, einen für jeden Modulator. Standardmäßig sind alle Regler bei 0, was keine Modulation bedeutet. Wenn der Regler auf 1 gestellt wird, wird das Modulationsziel vom Modulator so viel wie möglich beeinflusst. Wenn er auf -1 gestellt wird, passiert das gleiche, aber die Modulation ist invertiert. - - - Mix Osc2 with Osc3 - Oszillator 2 mit Oszillator 3 Mischen - - - Modulate amplitude of Osc3 with Osc2 - Amplitude von Oszillator 3 mit Oszillator 2 modulieren - - - Modulate frequency of Osc3 with Osc2 - Frequenz von Oszillator 3 mit Oszillator 2 modulieren - - - Modulate phase of Osc3 with Osc2 - Phase von Oszillator 3 mit Oszillator 2 modulieren - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - Der CRS Regler ändert die Stimmung des Oszillators 1 in Halbtonschritten. - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - Der CRS Regler ändert die Stimmung des Oszillators 2 in Halbtonschritten. - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - Der CRS Regler ändert die Stimmung des Oszillators 3 in Halbtonschritten. - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL und FTR ändern die Feinabstimmung des Oszillators jeweils für den linken und rechten Kanal. Diese können Stereoverstimmug zum Oszillator hinzufügen, was das Stereobild weitet und eine Illusion von Raum erzeugt. - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - Der SPO Regler ändert die Phasendifferenz zwischen dem linken und rechten Kanal. Höhere Differenz erzeugt ein breiteres Stereobild. - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - Der PW Regler kontrolliert die Pulsweite, auch bekannt als Tastgrad, von Oszillator 1. Oszillator 1 ist ein digitaler Pulswellen Oszillator, es erzeugt keine bandbegrenzte Ausgabe, was bedeutet, dass Sie es als einen hörbaren Oszillator einsetzen können, aber es wird Aliasing verursachen. Sie können es auch als eine nicht hörbare Quelle für ein sync Signal benutzen, dass benutzt werden kann, um die Oszillatoren 2 und 3 zu synchronisieren. - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Sync beim Ansteigen senden: Wenn aktiviert, wird das Sync-Signal jedes Mal gesendet, wenn sich der Zustand von Oszillator 1 von niedrig nach hoch ändert, z.B. wenn sich die Amplitude von -1 nach 1 ändert. Die Tonhöhe, Phase und Pulsweite von Oszillator 1 können das Timing von Syncs beeinflussen, aber die Lautstärke hat keinen Effekt darauf. Sync-Signale werden unabhängig vom linken und rechten Kanal gesendet. - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Sync beim Absteigen senden: Wenn aktiviert, wird das Sync-Signal jedes Mal gesendet, wenn sich der Zustand von Oszillator 1 von hoch nach niedrig ändert, z.B. wenn sich die Amplitude von 1 nach -1 ändert. Die Tonhöhe, Phase und Pulsweite von Oszillator 1 können das Timing von Syncs beeinflussen, aber die Lautstärke hat keinen Effekt darauf. Sync-Signale werden unabhängig vom linken und rechten Kanal gesendet. - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Hard sync: Jedes Mal, wenn der Oszillator ein sync-Signal von Oszillator 1 empfängt, wird die Phase auf 0 zurückgesetzt, egal was die Phasendifferenz ist. - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Reverse sync: Jedes Mal, wenn der Oszillator ein sync-Signal von Oszillator 1 empfängt, wird die Amplitude des Oszillators invertiert. - - - Choose waveform for oscillator 2. - Wellenform für Oszillator 2 auswählen. - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Wellenform für den ersten Unter-Oszillator von Oszillator 3 auswählen. Oszillator 3 kann gleitend zwischen zwei verschiedenen Wellenformen interpolieren. - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Wellenform für den zweiten Unter-Oszillator von Oszillator 3 auswählen. Oszillator 3 kann gleitend zwischen zwei verschiedenen Wellenformen interpolieren. - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - Der SUB Regler ändert das Mischverhältnis der beiden Unter-Oszillatoren von Oszillator 3. Jeder Unter-Oszillator kann auf eine andere Wellenform eingestellt werden und Oszillator 3 kann zwischen diesen gleitend interpolieren. Alle eingehenden Modulationen zu Oszillator 3 werden auf beide Unter-Oszillator/Wellenformen auf gleiche Weise angewandt. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - Zusätzlich zu fest zugeordneten Modulatoren, ermöglicht Monstro es Oszillator 3 mit der Ausgabe von Oszillator 2 zu modulieren. - -Mix-Modus bedeutet keine Modulation: Die Ausgaben der Oszillatoren werden einfach zusammengemischt. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - Zusätzlich zu fest zugeordneten Modulatoren, ermöglicht Monstro es Oszillator 3 mit der Ausgabe von Oszillator 2 zu modulieren. - -AM bedeutet Amplituden-Modulation: Die Amplitude (Lautstärke) von Oszillator 3 wird durch Oszillator 2 moduliert. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - Zusätzlich zu fest zugeordneten Modulatoren, ermöglicht Monstro es Oszillator 3 mit der Ausgabe von Oszillator 2 zu modulieren. - -FM bedeutet Frequenz-Modulation: Die Frequenz (Tonhöhe) von Oszillator 3 wird durch Oszillator 2 Moduliert. Die Frequenz-Modulation ist als Phasen-Modulation implementiert, was eine stabielere Gesamttonhöhe erzeugt, als »reine« Frequenz-Modulation. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - Zusätzlich zu fest zugeordneten Modulatoren, ermöglicht Monstro es Oszillator 3 mit der Ausgabe von Oszillator 2 zu modulieren. - -PM bedeutet Phasen-Modulation: Die Phase von Oszillator 3 wird durch Oszillator 2 moduliert. Es unterscheidet sich von der Frequenz-Modulation dadurch, dass die Phasenänderungen nicht zunehmend sind. - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Die Wellenform für LFO 1 auswählen. -»Zufällig« und »Zufällig gleitend« sind spzielle Wellenformen: Sie erzeugen zufällige Ausgabe, wobei die Rate des LFO kontrolliert, wie oft sich der Zustand des LFO ändert. Die gleitende Version intrpoliert zwischen diesen Zuständen mit Cosinus-Interpolation. Diese zufälligen Modi können benutzt werden um Ihren Presets »Leben« zu geben - Etwas von der analogen Unberechenbarkeit hinzuzufügen… - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Die Wellenform für LFO 2 auswählen. -»Zufällig« und »Zufällig gleitend« sind spzielle Wellenformen: Sie erzeugen zufällige Ausgabe, wobei die Rate des LFO kontrolliert, wie oft sich der Zustand des LFO ändert. Die gleitende Version intrpoliert zwischen diesen Zuständen mit Cosinus-Interpolation. Diese zufälligen Modi können benutzt werden um Ihren Presets »Leben« zu geben - Etwas von der analogen Unberechenbarkeit hinzuzufügen… - - - Attack causes the LFO to come on gradually from the start of the note. - Anschwellzeit verursacht, dass der LFO allmählich vom Anfang der Note angeht. - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - Rate setzt die Geschwindigkeit des LFO, in Millisekunden pro Durchlauf gemessen. Kann zum Tempo synchronisiert werden. - - - PHS controls the phase offset of the LFO. - PHS kontrolliert die Phasenverschiebung des LFO. - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE, oder Vor-Verzögerung, verzögert den Beginn der Hüllkurve vom Anfang der Note. 0 bedeutet keine Verzögerung. - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - ATT, oder Anschwellzeit, kontrolliert wie schnell die Hüllkurve am Anfang steigt, in Millisekunden gemessen. Ein Wert von 0 bedeutet sofort. - - - HOLD controls how long the envelope stays at peak after the attack phase. - HOLD kontrolliert, wie lange die Hüllkurve nach der Anschwellphase an der Spitze bleibt. - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - DEC, oder Abschwellzeit, kontrolliert, wie schnell die Hüllkurve von ihrer Spitze auf Null abfällt, in Millisekunden gemessen. Die tatsächliche Abschwellzeit ist möglicherweise kürzer, wenn Dauerpegel benutzt wird. - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - SUS, oder Dauerpegel, kontrolliert den Dauerpegel der Hüllkurve. Die Abfall-Phase geht nicht unter diesen Pegel, solange die Note gehalten wird. - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - REL, oder Ausklingzeit, kontrolliert, wie lange die Ausklingzeit für die Note von ihrer Spitze auf Null ist, gemessen in Millisekunden. Die tatsächliche Ausklingzeit ist möglicherweise kürzer, abhängig davon, in welcher Phase die Note losgelassen wird. - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - Der Neigung-Regler kontrolliert die Kurve oder Form der Hüllkurve. Ein Wert von 0 erzeugt einen direkten Anstieg und Abfall. Negative Werte erzeugen Kurven, die langsam starten, schnell die Spitze erreichen und wieder langsam abfallen. Positive Werte erzeugen Kurven, die schnell starten und enden und länger in der Nähe der Spitze bleiben. - - + + + Volume Lautstärke + + + Panning Balance + + + Coarse detune + + + semitones + Halbtöne + + + + + Fine tune left - Finetune left - - - + + + + cents + Cent + + + + + Fine tune right - Finetune 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 @@ -5038,117 +8934,145 @@ PM bedeutet Phasen-Modulation: Die Phase von Oszillator 3 wird durch Oszillator MultitapEchoControlDialog + Length Länge + Step length: + Dry + Trocken + + + + Dry gain: - Dry Gain: - - - + Stages + Stufen + + + + Low-pass stages: - Lowpass stages: - - - + Swap inputs - + Eingänge vertauschen - Swap left and right input channel for reflections + + Swap left and right input channels for reflections NesInstrument - Channel 1 Coarse detune - Kanal 1 Grob-Verstimmung + + Channel 1 coarse detune + - Channel 1 Volume + + Channel 1 volume Kanal 1 Lautstärke - Channel 1 Envelope length - Kanal 1 Hüllkurvenlänge + + Channel 1 envelope length + - Channel 1 Duty cycle - Kanal 1 Tastgrad + + Channel 1 duty cycle + - Channel 1 Sweep amount - Kanal 1 Streichmenge + + Channel 1 sweep amount + - Channel 1 Sweep rate - Kanal 1 Streichrate + + Channel 1 sweep rate + + Channel 2 Coarse detune Kanal 2 Grob-Verstimmung + Channel 2 Volume Kanal 2 Lautstärke - Channel 2 Envelope length - Kanal 2 Hüllkurvenlänge + + Channel 2 envelope length + - Channel 2 Duty cycle - Kanal 2 Tastgrad + + Channel 2 duty cycle + - Channel 2 Sweep amount - Kanal 2 Streichmenge + + Channel 2 sweep amount + - Channel 2 Sweep rate - Kanal 2 Streichrate + + Channel 2 sweep rate + - Channel 3 Coarse detune - Kanal 3 Grob-Verstimmung + + Channel 3 coarse detune + - Channel 3 Volume + + Channel 3 volume Kanal 3 Lautstärke - Channel 4 Volume + + Channel 4 volume Kanal 4 Lautstärke - Channel 4 Envelope length - Kanal 4 Hüllkurvenlänge + + Channel 4 envelope length + - Channel 4 Noise frequency - Kanal 4 Rauschfrequenz + + Channel 4 noise frequency + - Channel 4 Noise frequency sweep - Kanal 4 Rauschfrequenz-Streichen + + Channel 4 noise frequency sweep + + Master volume Master-Lautstärke + Vibrato Vibrato @@ -5156,196 +9080,447 @@ PM bedeutet Phasen-Modulation: Die Phase von Oszillator 3 wird durch Oszillator 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 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 volume - Oszillator %1 Lautstärke - - - Osc %1 panning - Oszillator %1 Balance - - - Osc %1 coarse detuning - Oszillator %1 Grob-Verstimmung - - - Osc %1 fine detuning left - Oszillator %1 Fein-Verstimmung links - - - 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 - - + 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 @@ -5353,77 +9528,85 @@ PM bedeutet Phasen-Modulation: Die Phase von Oszillator 3 wird durch Oszillator PatmanView - Open other patch - Andere Patch-Datei öffnen - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Klicken Sie hier, um eine andere Patch-Datei zu laden. Wiederholungs- und Stimmungseinstellungen werden nicht zurückgesetzt. + + Open patch + + Loop Wiederholen + Loop mode Modus beim Wiederholen - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Hier können Sie den Wiederholen-Modus (de-)aktivieren. Wenn aktiviert, verwendet PatMan die in der Datei verfügbaren Informationen zum Wiederholen. - - + Tune Stimmung + Tune mode Stimmungsmodus - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Hier können Sie den Stimmungs-Modus (de-)aktivieren. Wenn aktiviert, wird der Klang automatisch an die Frequenz der Note angepasst. - - + No file selected Keine Datei ausgewählt + Open patch file Patch-Datei öffnen + Patch-Files (*.pat) Patch-Dateien (*.pat) - PatternView + 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 @@ -5431,25 +9614,30 @@ PM bedeutet Phasen-Modulation: Die Phase von Oszillator 3 wird durch Oszillator 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. - Aufgrund 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. + 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 @@ -5457,327 +9645,519 @@ PM bedeutet Phasen-Modulation: Die Phase von Oszillator 3 wird durch Oszillator PeakControllerEffectControlDialog + BASE BASE - Base amount: - Grundstärke: - - - Modulation amount: - Modulationsintensität: - - - Attack: - Anschwellzeit (attack): - - - Release: - Ausklingzeit (release): + + Base: + Basis + AMNT AMNT + + Modulation amount: + Modulationsintensität: + + + MULT MULT - Amount Multiplicator: - Stärkenmultiplikator: + + Amount multiplicator: + + ATCK ATCK + + Attack: + Anschwellzeit (attack): + + + DCAY DCAY + + Release: + Ausklingzeit (release): + + + + TRSH + + + + Treshold: Schwellwert: - TRSH + + Mute output + Ausgang stummschalten + + + + Absolute value PeakControllerEffectControls + Base value Grundwert + Modulation amount Modulationsintensität - Mute output - Ausgang stummschalten - - + Attack Anschwellzeit (attack) + Release Ausklingzeit (release) - Abs Value - Absoluter Wert - - - Amount Multiplicator - Stärkenmultiplikator - - + Treshold Schwellwert + + + Mute output + Ausgang stummschalten + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - Bitte öffnen Sie einen Pattern, indem Sie ihn doppelklicken! - - - Last note - Letzte Note - - - Note lock - Notenraster - - + Note Velocity Noten-Lautstärke + Note Panning Noten-Balance + Mark/unmark current semitone Aktuellen Halbton markieren/demarkieren - Mark current scale - Aktuelle Tonleiter markieren - - - Mark current chord - Aktuellen Akkord markieren - - - Unmark all - Alles Markierungen entfernen - - - No scale - Keine Tonleiter - - - No chord - Kein Akkord - - - Velocity: %1% - Lautstärke: %1% - - - Panning: %1% left - Balance: %1% links - - - Panning: %1% right - Balance: %1% rechts - - - Panning: center - Balance: mittig - - - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - + 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 pattern (Space) + + 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 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) Abspielen des aktuellen Patterns stoppen (Leertaste) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - Klicken Sie hier, um die Wiedergabe des aktuellen Patterns zu stoppen. - - - Draw mode (Shift+D) - Zeichnenmodus (Umschalt+D) - - - Erase mode (Shift+E) - Radiermodus (Umschalt+E) - - - Select mode (Shift+S) - Auswahl-Modus (Umschalt+S) - - - Detune mode (Shift+T) - Verstimmungsmodus (Umschalt+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - Ausgewählte Noten ausschneiden (%1+X) - - - Copy selected notes (%1+C) - Ausgewählte Noten kopieren (%1+C) - - - Paste notes from clipboard (%1+V) - Noten aus Zwischenablage einfügen (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Klicken Sie hier, um die Noten aus der Zwischenablage im ersten sichtbaren Takt einzufügen. - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Dies kontrolliert die Vergrößerung einer Axe. Es kann hilfreich für bestimmte Aufgaben sein, eine Vergrößerung auszuwählen. Für normales Bearbeiten, sollte die Vergrößerung an Ihre kleinsten Noten angepasst sein. - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - - - + 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 - Timeline controls - Zeitlinien Regler + + 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 pattern + + + Piano-Roll - no clip - Quantize - Quantisiere + + + 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! @@ -5785,221 +10165,1293 @@ Grund: »%2« 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. - Instrument Plugins + + 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 + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + Steuerung + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Einstellungen + + + + 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: + Typ: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: PluginFactory + Plugin not found. Plugin nicht gefunden + 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 + Schließen + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + An/aus + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - 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... - - + 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-File (*.wav) - WAV-Datei (*.wav) + + WAV (*.wav) + WAV (*.wav) - Compressed OGG-File (*.ogg) - Komprimierte OGG-Datei (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin - Compressed MP3-File (*.mp3) - + + Show GUI + GUI anzeigen + + + + Help + Hilfe 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 - File: %1 - Datei: %1 + + &Recently Opened Projects + &Zuletzt geöffnete Projekte RenameDialog + Rename... Umbenennen... @@ -6007,714 +11459,1605 @@ Grund: »%2« ReverbSCControlDialog + Input Eingang - Input Gain: + + Input gain: Eingangsverstärkung: + Size Größe + Size: Größe: + Color Farbe + Color: Farbe: + Output Ausgang - Output Gain: + + Output gain: Ausgabeverstärkung: ReverbSCControls - Input Gain + + Input gain Eingangsverstärkung + Size Größe + Color Farbe - Output Gain + + Output gain + Ausgabeverstärkung + + + + SaControls + + + Pause + + + + + 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 + Bass + + + + Mids + Mitten + + + + High + Höhen + + + + Extended + + + + + Loud + Laut + + + + Silent + Leise + + + + (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 + 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 SampleBuffer - Open audio file - Audiodatei öffnen - - - 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) - - - 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) - - + Fail to open file Konnte Datei nicht öffnen + Audio files are limited to %1 MB in size and %2 minutes of playing time - - - SampleTCOView - double-click to select sample - Doppelklick, um Sample zu wählen + + 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 (<%1> + Mittelklick) + Stumm/Laut schalten (<Strg> + Mittelklick) + + + + Mute/unmute selection (<%1> + middle click) + + + + + Reverse sample + Sample umkehren + + + + Set clip color + + + + + Use track color + SampleTrack - Sample track - Samplespur - - + 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 - Setup LMMS - Einrichtung von LMMS + + Reset to default value + - General settings - Allgemeine Einstellungen + + Use built-in NaN handler + - BUFFER SIZE - PUFFERGRÖSSE + + Settings + Einstellungen - Reset to default-value - Auf Standardwert zurücksetzen + + + General + - MISC - VERSCHIEDENES + + Graphical user interface (GUI) + + + Display volume as dBFS + + + + Enable tooltips Tooltips aktivieren - Show restart warning after changing settings + + Enable master oscilloscope by default - Compress project files per default - Projektfiles - - - One instrument track window mode + + Enable all note labels in piano roll - HQ-mode for output audio-device + + Enable compact track buttons - Compact track buttons - Kompakte Spur-Knöpfe + + 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 - Enable note labels in piano roll - Notenbeschriftung in Piano-Roll aktivieren - - - Enable waveform display by default - - - + Keep effects running even without input - Create backup file when saving a project + + + Audio + Audio + + + + Audio interface - LANGUAGE - SPRACHE + + HQ mode for output audio device + - Paths - Pfade + + Buffer size + + + + MIDI + MIDI + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + LMMS working directory LMMS-Arbeitsverzeichnis - VST-plugin directory - VST-Plugin-Verzeichnis + + VST plugins directory + + + LADSPA plugins directories + + + + + SF2 directory + SF2 Verzeichniss + + + + Default SF2 + + + + + GIG directory + GIG Verzeichniss + + + + Theme directory + + + + Background artwork - STK rawwave directory - STK RawWave-Verzeichnis - - - Default Soundfont File + + Some changes require restarting. - Performance settings - Performance-Einstellungen - - - UI effects vs. performance - UI-Effekte vs. Performance - - - Smooth scroll in Song Editor + + Autosave interval: %1 - Show playback cursor in AudioFileProcessor - + + Choose the LMMS working directory + LMMS-Arbeitsverzeichnis wählen - Audio settings - Audio-Einstellungen + + Choose your VST plugins directory + Wählen Sie Ihr VST-Plugin-Verzeichnis - AUDIO INTERFACE - AUDIO-SCHNITTSTELLE + + Choose your LADSPA plugins directory + Wählen Sie Ihr LADSPA-Plugin-Verzeichnis - MIDI settings - MIDI-Einstellungen + + Choose your default SF2 + Wählen Sie Ihr Standard SF2 - MIDI INTERFACE - MIDI-SCHNITTSTELLE + + 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 - Restart LMMS - LMMS neustarten - - - Please note that most changes won't take effect until you restart LMMS! - - - + Frames: %1 Latency: %2 ms Frames: %1 Latenz: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - LMMS-Arbeitsverzeichnis wählen - - - Choose your VST-plugin directory - Wählen Sie Ihre VST-Plugin-Verzeichnis - - - Choose artwork-theme directory - Artwork-Verzeichnis wählen - - - Choose LADSPA plugin directory - Wählen Sie Ihr LADSPA-Plugin-Verzeichnis - - - Choose STK rawwave directory - Wählen Sie Ihr STK-RawWave-Verzeichnis - - - Choose default SoundFont - Standard-Soundfont wählen - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - Zuletzt geöffnetes Projekt automatisch öffnen - - - Directories - Verzeichnisse - - - Themes directory - Themen Verzeichnis - - - GIG directory - GIG Verzeichnis - - - SF2 directory - SF2 Verzeichnis - - - LADSPA plugin directories - LADSPA Plugin Verzeichnisse - - - Auto save - Automatisch Speichern - - + 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 - Display volume as dBFS - - - - Enable auto-save - Automatisches Speichern aktivieren - - - Allow auto-save while playing - - - + Disabled Deaktiviert + + + SidInstrument - Auto-save interval: %1 + + Cutoff frequency + Kennfrequenz + + + + Resonance + Resonanz + + + + 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 - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + 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 + + + Close + Schließen + Song + Tempo Tempo + Master volume Master-Lautstärke + Master pitch Master-Tonhöhe - 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 + + Aborting project load - Hydrogen projects + + Project file contains local paths to plugins, which could be used to run malicious code. - All file types - Alle Dateitypen - - - Empty project - Leeres Projekt - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - - - - Select directory for writing exported tracks... - - - - untitled - Unbenannt - - - Select file for project-export... - Datei für Projekt-Export wählen... - - - The following errors occured while loading: - Die folgenden Fehler traten während dem laden auf: - - - MIDI File (*.mid) + + Can't load project: Project file contains local paths to plugins. + LMMS Error report - Save project + + (repeated %1 times) + + + + + The following errors occurred while loading: SongEditor + Could not open file Konnte Datei nicht öffnen - Could not write file - Konnte Datei nicht schreiben - - + 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. + + + + + This %1 was created with LMMS %2 + + + + Error in file Fehler in Datei + 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. - Tempo - Tempo - - - TEMPO/BPM - TEMPO/BPM - - - tempo of song - Geschwindigkeit des Songs - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - Das Tempo eines Liedes wird in Beats pro Minute (BPM) angegeben. Wenn Sie das Tempo Ihres Songs ändern wollen, ändern Sie diesen Wert. Jeder Takt hat vier Schläge (Beats); das Tempo gibt also an, wie viele Takte / 4 innerhalb einer Minute gespielt werden sollen (bzw. wie viele Takte innerhalb von vier Minuten gespielt werden sollen). - - - High quality mode - High-Quality-Modus - - - Master volume - Master-Lautstärke - - - master volume - Master-Lautstärke - - - Master pitch - Master-Tonhöhe - - - master pitch - Master-Tonhöhe - - - Value: %1% - Wert: %1% - - - Value: %1 semitones - Wert: %1 Halbtöne - - - 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. - Konnte %1 nicht zum Schreiben öffnen. Sie sind wahrscheinlich nicht dazu berechtigt in diese Datei zu schreiben. Bitte stellen Sie sicher, dass Sie Schreibrechte für diese Datei haben und versuchen Sie es erneut. + + Version difference + Versionsunterschiede + template Vorlage + project Projekt - Version difference + + Tempo + Tempo + + + + TEMPO - This %1 was created with LMMS %2. + + Tempo in BPM + + + High quality mode + High-Quality-Modus + + + + + + Master volume + Master-Lautstärke + + + + + + Master pitch + Master-Tonhöhe + + + + Value: %1% + Wert: %1% + + + + Value: %1 semitones + Wert: %1 Halbtöne + 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 + Stop song (Space) - - - - Add beat/bassline - Beat/Bassline hinzufügen - - - Add sample-track - Sample Spur hinzufügen - - - Add automation-track - Automation-Spur hinzufügen - - - Draw mode - Zeichenmodus - - - Edit mode (select and move) - - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - + Song anhalten (Leertaste) + Track actions + + Add beat/bassline + Beat/Bassline hinzufügen + + + + Add sample-track + Sample Spur hinzufügen + + + + Add automation-track + Automation-Spur hinzufügen + + + Edit actions Aktionen bearbeiten - Timeline controls - Zeitlinien Regler + + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum - Lineares Spektrum + + Horizontal zooming + Horizontales Zoomen - Linear Y axis - Lineare Y-Achse + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - Lineares Spektrum + + Hint + Tipp - Linear Y axis - Lineare Y-Achse - - - Channel mode - Kanalmodus + + Move recording curser using <Left/Right> arrows + SubWindow + Close Schließen + Maximize Maximieren + Restore Wiederherstellen @@ -6722,81 +13065,110 @@ Remember to also save your project manually. You can choose to disable saving wh TabWidget + + Settings for %1 Einstellungen für %1 + + TemplatesMenu + + + New from template + Neu von Vorlage + + TempoSyncKnob + + Tempo Sync Tempo-Synchronisation + No Sync Keine Synchronisation + Eight beats Acht Schläge + Whole note Ganze Note + Half note Halbe Note + Quarter note Viertelnote + 8th note Achtelnote + 16th note 16tel 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 Half Note Mit halber Note synchronisiert + Synced to Quarter Note Mit Viertelnote synchronisiert + Synced to 8th Note Mit Achtelnote synchronisiert + Synced to 16th Note Mit 16tel Note synchronisiert + Synced to 32nd Note Mit 32tel Note synchronisiert @@ -6804,30 +13176,37 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units - Klicken Sie hier, um die Zeiteinheit zu ändern + + Time units + + MIN MIN + SEC SEC + MSEC MSEC + BAR BAR + BEAT BEAT + TICK TICK @@ -6835,45 +13214,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - Enable/disable auto-scrolling - Automatisches Scrollen aktivieren/deaktivieren - - - Enable/disable loop-points + + Auto scrolling - After stopping go back to begin + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Halten Sie <Umschalt>, um den Anfangs-Loop-Punkt zu verschieben; Drücken Sie <%1>, um magnetische Loop-Punkte zu deaktivieren. - Track + Mute Stumm + Solo Solo @@ -6881,462 +13265,610 @@ Remember to also save your project manually. You can choose to disable saving wh 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… - Importing MIDI-file... - Importiere MIDI-Datei… + + Loading cancelled + Laden abgebrochen + + Project loading was cancelled. + + + + Loading Track %1 (%2/Total %3) + + + Importing MIDI-file... + Importiere MIDI-Datei… + - TrackContentObject + Clip + Mute Stumm - TrackContentObjectView + ClipView + Current position Aktuelle Position - Hint - Tipp - - - Press <%1> and drag to make a copy. - <%1> drücken und ziehen, um eine Kopie zu erstellen. - - + Current length Aktuelle Länge - Press <%1> for free resizing. - Drücken Sie <%1> für freie Größenänderung. - - + + %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 (<%1> + Mittelklick) + Stumm/Laut schalten (<Strg> + Mittelklick) + + + + Mute/unmute selection (<%1> + middle click) + + + + + Set clip color + + + + + Use track color + + + + + TrackContentWidget + + + Paste + Einfügen TrackOperationsWidget - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Drücken Sie <%1> während des Klicks auf den Verschiebe-Griff, um eine neue Klicken und Ziehen-Aktion zu beginnen. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + - Actions for this track - Aktionen für diese Spur + + Actions + + + Mute Stumm + + Solo Solo - Mute this track - Diese Spur stummschalten + + 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 Diese Spur leeren - FX %1: %2 + + 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 - Assign to new FX Channel + + Change color + Farbe ändern + + + + Reset color to default + Farbe auf Standard zurücksetzen + + + + Set random color + + + + + Clear clip colors TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - Phasenmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulieren + + Modulate phase of oscillator 1 by oscillator 2 + - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Amplitudenmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulieren + + Modulate amplitude of oscillator 1 by oscillator 2 + - Mix output of oscillator 1 & 2 - Mische Ausgang von Oszillator 1 & 2 + + Mix output of oscillators 1 & 2 + + Synchronize oscillator 1 with oscillator 2 Synchronisiere Oszillator 1 mit Oszillator 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Frequenzmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulieren + + Modulate frequency of oscillator 1 by oscillator 2 + - Use phase modulation for modulating oscillator 2 with oscillator 3 - Phasenmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulieren + + Modulate phase of oscillator 2 by oscillator 3 + - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Amplitudenmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulieren + + Modulate amplitude of oscillator 2 by oscillator 3 + - Mix output of oscillator 2 & 3 - Mische Ausgang von Oszillator 2 & 3 + + Mix output of oscillators 2 & 3 + + Synchronize oscillator 2 with oscillator 3 Synchronisiere Oszillator 2 mit Oszillator 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Frequenzmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulieren + + Modulate frequency of oscillator 2 by oscillator 3 + + Osc %1 volume: Oszillator %1 Lautstärke: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Mit diesem Regler können Sie die Lautstärke von Oszillator %1 setzen. Wenn Sie einen Wert von 0 setzen, wird der Oszillator ausgeschaltet. Ansonsten können Sie ihn so laut hören, wie Sie es hier einstellen. - - + Osc %1 panning: Oszillator %1 Balance: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Mit diesem Regler können Sie die Balance von Oszillator %1 setzen. Ein Wert von -100 heißt 100% links und ein Wert von 100 verschiebt den Oszillator-Ausgang nach rechts. - - + Osc %1 coarse detuning: Oszillator %1 Grob-Verstimmung: + semitones Halbtöne - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Mit diesem Regler können Sie die grobe Verstimmung von Oszillator %1 setzen. Sie können den Oszillator 24 Halbtöne (2 Oktaven) nach oben und unten verstimmen. Das ist nützlich, wenn Sie einen Sound mit einem Akkord erstellen möchten. - - + Osc %1 fine detuning left: Oszillator %1 Fein-Verstimmung links: + + cents Cent - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Mit diesem Regler können Sie die Fein-Verstimmung von Oszillator %1 für den linken Kanal einstellen. Die Fein-Verstimmung liegt zwischen -100 Cent und +100 Cent. Das ist nützlich, um »fette« Sounds zu erzeugen. - - + Osc %1 fine detuning right: Oszillator %1 Fein-Verstimmung rechts: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Mit diesem Regler können Sie die Fein-Verstimmung von Oszillator %1 für den rechten Kanal einstellen. Die Fein-Verstimmung liegt zwischen -100 Cent und +100 Cent. Das ist nützlich, um »fette« Sounds zu erzeugen. - - + Osc %1 phase-offset: Oszillator %1 Phasenverschiebung: + + degrees Grad - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Mit diesem Regler können Sie die Phasenverschiebung von Oszillator %1 setzen. Das heißt, Sie können den Punkt innerhalb einer Schwingung verschieben, an dem der Oszillator anfangen soll zu schwingen. Wenn Sie zum Beispiel eine Sinuswelle haben und eine Phasenverschiebung von 180 Grad einstellen, wird die Welle zu erst runter gehen. Das gleiche trifft auch bei einer Rechteckwelle zu. - - + Osc %1 stereo phase-detuning: Oszillator %1 Stereo Phasenverschiebung: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Mit diesem Regler können Sie die Stereo Phasenverschiebung von Oszillator %1 setzen. Die Stereo Phasenverschiebung gibt die Differenz zwischen den Phasenverschiebungen zwischen dem linken und rechten Kanal an. Dies eignet sich gut, um großräumig-klingende Stereo-Klänge zu erzeugen. + + Sine wave + Sinuswelle - Use a sine-wave for current oscillator. - Sinuswelle für aktuellen Oszillator nutzen. + + Triangle wave + Dreieckwelle - Use a triangle-wave for current oscillator. - Dreieckwelle für aktuellen Oszillator nutzen. + + Saw wave + Sägezahnwelle - Use a saw-wave for current oscillator. - Sägezahnwelle für aktuellen Oszillator nutzen. + + Square wave + Rechteckwelle - Use a square-wave for current oscillator. - Rechteckwelle für aktuellen Oszillator nutzen. + + Moog-like saw wave + - Use a moog-like saw-wave for current oscillator. - Moog-ähnliche Sägezahnwelle für aktuellen Oszillator nutzen. + + Exponential wave + Exponentielle Welle - Use an exponential wave for current oscillator. - Exponentielle Welle für aktuellen Oszillator nutzen. + + White noise + Weißes Rauschen - Use white-noise for current oscillator. - Weißes Rauschen für aktuellen Oszillator nutzen. + + User-defined wave + Benutzerdefinierte Welle + + + + VecControls + + + Display persistence amount + - Use a user-defined waveform for current oscillator. - Benutzerdefinierte Wellenform für aktuellen Oszillator nutzen. + + 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 Versionsnummer erhöhen + Decrement version number Versionsnummer vermindern - already exists. Do you want to replace it? + + Save Options + + + already exists. Do you want to replace it? + existiert bereits. Möchten Sie es ersetzen? + VestigeInstrumentView - Open other VST-plugin - Anderes VST-Plugin laden + + + Open VST plugin + - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Klicken Sie hier, um ein anderes VST-Plugin zu öffnen. Nachdem Sie auf diesen Knopf geklickt haben, erscheint ein Datei-öffnen-Dialog und Sie können Ihre Datei wählen. + + Control VST plugin from LMMS host + - Show/hide GUI - GUI zeigen/verstecken - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Klicken Sie hier, um die grafische Oberfläche (GUI) Ihres VST-Plugins anzuzeigen bzw. zu verstecken. - - - Turn off all notes - Alle Noten ausschalten - - - Open VST-plugin - VST-Plugin öffnen - - - DLL-files (*.dll) - DLL-Dateien (*.dll) - - - EXE-files (*.exe) - EXE-Dateien (*.exe) - - - No VST-plugin loaded - Kein VST-Plugin geladen - - - Control VST-plugin from LMMS host - VST-Plugin von LMMS fernsteuern - - - Click here, if you want to control VST-plugin from host. - Klicken Sie hier, um das VST-Plugin von LMMS aus fernzusteuern. - - - Open VST-plugin preset - VST-Plugin-Preset öffnen - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klicken Sie hier, um eine andere *.fxp, *.fxb-Preset-Datei für das VST-Plugin zu laden. + + Open VST plugin preset + + Previous (-) Vorheriges (-) - Click here, if you want to switch to another VST-plugin preset program. - Klicken Sie hier, um zu einem anderen VST-Plugin-Presetprogramm zu wechseln. - - + Save preset Preset speichern - Click here, if you want to save current VST-plugin preset program. - Klicken Sie hier, um das aktuelle VST-Plugin-Presetprogramm zu speichern. - - + Next (+) Nächstes (+) - Click here to select presets that are currently loaded in VST. - Klicken Sie hier, um aktuell geladene VST-Presets auszuwählen. + + 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) + + + + No VST plugin loaded + + + + Preset Preset + by von + - VST plugin control - VST Plugin Controller - - VisualizationWidget - - click to enable/disable visualization of master-output - - - - Click to enable - - - VstEffectControlDialog + Show/hide Anzeigen/ausblenden - Control VST-plugin from LMMS host - VST-Plugin von LMMS fernsteuern + + Control VST plugin from LMMS host + - Click here, if you want to control VST-plugin from host. - Klicken Sie hier, um das VST-Plugin von LMMS aus fernzusteuern. - - - Open VST-plugin preset - VST-Plugin-Preset öffnen - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klicken Sie hier, um eine andere *.fxp, *.fxb-Preset-Datei für das VST-Plugin zu laden. + + Open VST plugin preset + + Previous (-) Vorheriges (-) - Click here, if you want to switch to another VST-plugin preset program. - Klicken Sie hier, um zu einem anderen VST-Plugin-Presetprogramm zu wechseln. - - + Next (+) Nächstes (+) - Click here to select presets that are currently loaded in VST. - Klicken Sie hier, um aktuell geladene VST-Presets auszuwählen. - - + Save preset Preset speichern - Click here, if you want to save current VST-plugin preset program. - Klicken Sie hier, um das aktuelle VST-Plugin-Presetprogramm zu speichern. - - + + Effect by: Effekt von: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7344,173 +13876,207 @@ Bitte stellen Sie sicher, dass Sie Leserechte auf diese Datei sowie das Verzeich VstPlugin - Loading plugin - Lade Plugin + + + The VST plugin %1 could not be loaded. + Das VST Plugin %1 konnte nicht geladen werden. + 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 - Please wait while loading VST plugin... - Bitte warten, während das VST-Plugin geladen wird… + + Loading plugin + Lade Plugin - The VST plugin %1 could not be loaded. - + + 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 @@ -7518,2800 +14084,2249 @@ Bitte stellen Sie sicher, dass Sie Leserechte auf diese Datei sowie das Verzeich WatsynView - Select oscillator A1 - Oszillator A1 auswählen - - - Select oscillator A2 - Oszillator A2 auswählen - - - Select oscillator B1 - Oszillator B1 auswählen - - - Select oscillator B2 - Oszillator B2 auswählen - - - Mix output of A2 to A1 - Mische Ausgang von A2 zu A1 - - - Modulate amplitude of A1 with output of A2 - Amplitude von A1 mit der Ausgabe von A2 modulieren - - - Ring-modulate A1 and A2 - A1 und A2 ringmodulieren - - - Modulate phase of A1 with output of A2 - Phase von A1 mit der Ausgabe von A2 modulieren - - - Mix output of B2 to B1 - Mische Ausgang von B2 zu B1 - - - Modulate amplitude of B1 with output of B2 - Amplitude von B1 mit der Ausgabe von B2 modulieren - - - Ring-modulate B1 and B2 - B1 und B2 ringmodulieren - - - Modulate phase of B1 with output of B2 - Phase von B1 mit der Ausgabe von B2 modulieren - - - 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 - - - Click to load a waveform from a sample file - Klicken Sie hier, um eine Wellenform aus einer Sampledatei zu laden - - - Phase left - Nach links verschieben - - - Click to shift phase by -15 degrees - Klicken Sie hier, um die Phase um -15 Grad zu verscheiben - - - Phase right - Nach rechts verschieben - - - Click to shift phase by +15 degrees - Klicken Sie hier, um die Phase um +15 Grad zu verscheiben - - - Normalize - Normalisieren - - - Click to normalize - Klicken zum Normalisieren - - - Invert - Invertieren - - - Click to invert - Klicken zum Invertieren - - - Smooth - Glätten - - - Click to smooth - Klicken zum Glätten - - - Sine wave - Sinuswelle - - - Click for sine wave - Klicken für Sinuswelle - - - Triangle wave - Dreieckwelle - - - Click for triangle wave - Klicken für Dreieckwelle - - - Click for saw wave - Klicken für Sägezahnwelle - - - Square wave - Rechteckwelle - - - Click for square wave - Klicken für Rechteckwelle - - + + + + Volume Lautstärke + + + + 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 + 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 + + + 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 + + + + + Square wave + Rechteckwelle + + + + + White noise + Weißes Rauschen + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + ZynAddSubFxInstrument + Portamento Portamento - Filter Frequency - Filterfrequenz + + Filter frequency + - Filter Resonance - Filterresonanz + + Filter resonance + Filter Resonanz + Bandwidth Bandbreite - FM Gain - FM-Verstärkung + + FM gain + FM Gain - Resonance Center Frequency - Zentrale Resonanzfrequenz + + Resonance center frequency + Resonanz Mittelfrequenz - Resonance Bandwidth - Resonanzbandbreite + + Resonance bandwidth + Resonanz Bandbreite - Forward MIDI Control Change Events - MIDI-Control-Change-Ereignisse weiterleiten + + Forward MIDI control change events + ZynAddSubFxView - Show GUI - GUI anzeigen - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Klicken Sie hier, um die grafische Oberfläche von ZynAddSubFX anzuzeigen bzw. auszublenden. - - + Portamento: Portamento: + PORT PORT - Filter Frequency: - Filterfrequenz: + + Filter frequency: + Filter Frequenz: + FREQ FREQ - Filter Resonance: - Filterresonanz: + + Filter resonance: + + RES RES + Bandwidth: Bandbreite: + BW BW - FM Gain: - FM-Verstärkung: + + FM gain: + + FM GAIN FM GAIN + Resonance center frequency: Zentrale Resonanzfrequenz: + RES CF RES CF + Resonance bandwidth: Resonanzbandbreite: + RES BW RES BW - Forward MIDI Control Changes - MIDI-Control-Änderungen weiterleiten + + Forward MIDI control changes + + + + + Show GUI + GUI anzeigen - audioFileProcessor + AudioFileProcessor + Amplify Verstärkung + Start of sample Sample-Anfang + End of sample Sample-Ende - Reverse sample - Sample umkehren - - - Stutter - Stottern - - + 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 + BitInvader - Samplelength - Sample-Länge + + Sample length + - bitInvaderView + BitInvaderView - Sample Length - Sample-Länge - - - Sine wave - Sinuswelle - - - Triangle wave - Dreieckwelle - - - Saw wave - Sägezahnwelle - - - Square wave - Rechteckwelle - - - White noise wave - Weißes Rauschen - - - User defined wave - Benutzerdefinierte Welle - - - Smooth - Glätten - - - Click here to smooth waveform. - Klicken Sie hier, um die Wellenform zu glätten. - - - Interpolation - Interpolation - - - Normalize - Normalisieren + + 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. - Click for a sine-wave. - Klick für eine Sinuswelle. + + + Sine wave + Sinuswelle - Click here for a triangle-wave. - Klick für eine Dreieckwelle. + + + Triangle wave + Dreieckwelle - Click here for a saw-wave. - Klick für eine Sägezahnwelle. + + + Saw wave + Sägezahnwelle - Click here for a square-wave. - Klick für eine Rechteckwelle. + + + Square wave + Rechteckwelle - Click here for white-noise. - Klick für weißes Rauschen. + + + White noise + Weißes Rauschen - Click here for a user-defined shape. - Klick für eine benutzerdefinierte Wellenform. - - - - 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 waveform - Wellenform zurücksetzen - - - Click here to reset the wavegraph back to default - Klicken Sie hier, um den Wellengraph zum Standard zurückzusetzen + + + User-defined wave + Benutzerdefinierte Welle + + Smooth waveform Wellenform glätten - Click here to apply smoothing to wavegraph - Klicken Sie hier, um den Wellengraph zu glätten + + Interpolation + Interpolation - Increase wavegraph amplitude by 1dB - Die Amplitude des Wellengraphs um 1dB erhöhen + + Normalize + Normalisieren + + + + DynProcControlDialog + + + INPUT + INPUT - Click here to increase wavegraph amplitude by 1dB - Klicken Sie hier, um die Amplitude des Wellengraphs um 1dB zu erhöhen + + Input gain: + Eingangsverstärkung: - Decrease wavegraph amplitude by 1dB - Die Amplitude des Wellengraphs um 1dB vermindern + + OUTPUT + OUTPUT - Click here to decrease wavegraph amplitude by 1dB - Klicken Sie hier, um die Amplitude des Wellengraphs um 1dB zu vermindern + + Output gain: + Ausgabeverstärkung: - Stereomode Maximum - Stereomodus Maximum + + 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 - Stereomode Average - Stereomodus Durchschnitt + + Stereo mode: average + + Process based on the average of both stereo channels Basierend auf dem Durchschnitt beider Stereokanäle verarbeiten - Stereomode Unlinked - Stereomodus Unverknüpft + + Stereo mode: unlinked + + Process each stereo channel independently Jeden Stereokanal unabhängig verarbeiten - dynProcControls + DynProcControls + Input gain Eingangsverstärkung + Output gain Ausgabeverstärkung + Attack time Anschwellzeit + Release time Ausklingzeit + Stereo mode Stereomodus - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - - - - Sine wave - Sinuswelle - - - Click for a sine-wave. - Klick für eine Sinuswelle. - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - Exponentielle Welle - - - Click for an exponential wave. - - - - Saw wave - Sägezahnwelle - - - Click here for a saw-wave. - Klick für eine Sägezahnwelle. - - - User defined wave - Benutzerdefinierte Welle - - - Click here for a user-defined shape. - Klick für eine benutzerdefinierte Wellenform. - - - 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. - - - White noise wave - Weißes Rauschen - - - Click here for white-noise. - Klick für weißes Rauschen. - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - - - - O2 panning: - - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - Assign to: - - - - New FX Channel - - - graphModel + Graph Graph - kickerInstrument + KickerInstrument + Start frequency Startfrequenz + End frequency Endfrequenz - Gain - Gain - - + Length Länge - Distortion Start - Verzerrungsanfang + + Start distortion + - Distortion End - Verzerrungsende + + End distortion + - Envelope Slope - Hüllkurvenneigung + + Gain + Gain + + Envelope slope + + + + Noise Rauschen + Click Klick - Frequency Slope - Frequenzabfall + + Frequency slope + + Start from note Starte bei Note + End to note Ende bei Note - kickerInstrumentView + KickerInstrumentView + Start frequency: Startfrequenz: + End frequency: Endfrequenz: + + Frequency slope: + + + + Gain: Gain: - Frequency Slope: - Frequenzabfall: + + Envelope length: + - Envelope Length: - Hüllkurvenlänge: - - - Envelope Slope: - Hüllkurvenneigung: + + Envelope slope: + + Click: Klick: + Noise: Rauschen: - Distortion Start: - Verzerrungsanfang: + + Start distortion: + - Distortion End: - Verzerrungsende: + + End distortion: + - ladspaBrowserView + LadspaBrowserView + + Available Effects Verfügbare Effekte + + Unavailable Effects Nicht verfügbare Effekte + + Instruments Instrumente + + Analysis Tools Analysewerkzeuge + + Don't know Weiß nicht - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Dieser Dialog zeigt Informationen zu allen LADSPA Plugins an, dieLMMS gefunden hat. Die Plugins werden in fünf Kategorien eingeteilt, basierend auf der Interpretation der Porttypen und Namen. - -Verfügbare Effekte sind die, die von LMMS benutzt werden können. Um in LMMS einen Effekt benutzen zu können, muss er vor allem ein Effekt sein, was bedeutet, dass er beides, Eingabe- und Ausgabekanäle, haben muss. LMMS identifiziert Eingabekanäle als einen Audioport, der »in« im Namen enthält. Ausgabekanäle werden durch die Buchstaben »out« identifizert. Des weiteren muss der Effekt die gleiche Anzahl an Ein- und Ausgängen besitzen und muss echtzeitfähig sein. - -Nicht verfügbare Effekte sind die, die als Effekt identifiziert wurden, aber entweder nicht die gleiche Anzahl an Ein- und Ausgabekanälen besizen oder nicht echtzeitfähig sind. - -Instrumente sind Plugins, für die nur Ausgabekanäle identifiziert wurden. - -Analysewerkzeuge sind Plugins, für die nur Eingabekanäle identifiziert wurden. - -Weiß nicht sind Plugins, für die kein Ein- oder Ausgabekanal identifiziert wurde. - -Doppelklicken auf eines der Plugins zeigt Informaitonen über die Ports an. - - + Type: Typ: - ladspaDescription + LadspaDescription + Plugins Plugins + Description Beschreibung - ladspaPortDialog + 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 + 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 + 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 - Bandlimitierte Dreieckwelle + 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 + MalletsInstrument + Hardness Härte + Position Position - Vibrato Gain - Vibrato Gain + + Vibrato gain + - Vibrato Freq - Vibrato-Freq + + Vibrato frequency + - Stick Mix - Stick Mix + + Stick mix + + Modulator Modulator + Crossfade Crossfade - LFO Speed + + LFO speed LFO-Geschwindigkeit - LFO Depth - LFO-Tiefe + + LFO depth + + ADSR ADSR + Pressure Druck + Motion Bewegung + Speed Geschwindigkeit + Bowed Gestrichen + Spread Weite + Marimba Marimba + Vibraphone Vibraphon + Agogo Agogo - Wood1 - Holz 1 + + Wood 1 + + Reso Reso - Wood2 - Holz 2 + + Wood 2 + + Beats Beats - Two Fixed - Two Fixed + + Two fixed + + Clump Clump - Tubular Bells - Glocken in Röhre + + Tubular bells + - Uniform Bar - Uniform Bar + + Uniform bar + - Tuned Bar - Tuned Bar + + Tuned bar + + Glass Glas - Tibetan Bowl - Tibetanische Schüssel + + Tibetan bowl + - malletsInstrumentView + 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: - Vib Gain - Vib Gain + + Vibrato gain + - Vib Gain: - Vib Gain: + + Vibrato gain: + - Vib Freq - Vib-Freq + + Vibrato frequency + - Vib Freq: - Vib-Freq: + + Vibrato frequency: + - Stick Mix - Stick Mix + + Stick mix + - Stick Mix: - Stick Mix: + + Stick mix: + + Modulator Modulator + Modulator: Modulator: + Crossfade Crossfade + Crossfade: Crossfade: - LFO Speed + + LFO speed LFO-Geschwindigkeit - LFO Speed: + + LFO speed: LFO-Geschwindigkeit: - LFO Depth - LFO-Tiefe + + LFO depth + - LFO Depth: - LFO-Tiefe: + + LFO depth: + + ADSR ADSR + ADSR: ADSR: + Pressure Druck + Pressure: Druck: + Speed Geschwindigkeit + Speed: Geschwindigkeit: - - Missing files - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - - - manageVSTEffectView + ManageVSTEffectView + - VST parameter control - VST Parameter Controller - VST Sync - VST-Sync - - - Click here if you want to synchronize all parameters with VST plugin. - Klicken Sie hier, um alle Parameter mit dem VST-Plugin zu synchronisieren. + + VST sync + + + Automated Automatisiert - Click here if you want to display automated parameters only. - Klicken Sie hier, wenn Sie nur automatisierte Parameter anzeigen möchten. - - + Close Schließen - - Close VST effect knob-controller window. - VST Effekt Regler-Controllerfenster schließen. - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - VST Plugin Controller + VST Sync VST-Sync - Click here if you want to synchronize all parameters with VST plugin. - Klicken Sie hier, um alle Parameter mit dem VST-Plugin zu synchronisieren. - - + + Automated Automatisiert - Click here if you want to display automated parameters only. - Klicken Sie hier, wenn Sie nur automatisierte Parameter anzeigen möchten. - - + Close Schließen - - Close VST plugin knob-controller window. - VST Effekt Regler-Controllerfenster schließen. - - opl2instrument - - Patch - Patch - - - Op 1 Attack - Op 1 Anschwellzeit - - - Op 1 Decay - Op 1-Abfallzeit - - - Op 1 Sustain - Op 1 Dauerpegel - - - Op 1 Release - Op 1 Ausklingzeit - - - Op 1 Level - Op 1 Stärke - - - Op 1 Level Scaling - Op 1 Stärkenskalierung - - - Op 1 Frequency Multiple - Op 1 Frequenzmultiplikator - - - Op 1 Feedback - Op 1 Rückkopplung - - - Op 1 Key Scaling Rate - Op 1 Tonart Skalierungsrate - - - Op 1 Percussive Envelope - - - - Op 1 Tremolo - Op 1 Tremolo - - - Op 1 Vibrato - Op 1 Vibrato - - - Op 1 Waveform - Op 1 Wellenform - - - Op 2 Attack - Op 2 Anschwellzeit - - - Op 2 Decay - Op 2-Abfallzeit - - - Op 2 Sustain - Op 2 Dauerpegel - - - Op 2 Release - Op 2 Ausklingzeit - - - Op 2 Level - Op 2 Stärke - - - Op 2 Level Scaling - Op 2 Stärkenskalierung - - - Op 2 Frequency Multiple - Op 2 Frequenzmultiplikator - - - Op 2 Key Scaling Rate - Op 2 Tonart Skalierungsrate - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - Op 2 Tremolo - - - Op 2 Vibrato - Op 2 Vibrato - - - Op 2 Waveform - Op 2 Wellenform - - - FM - FM - - - Vibrato Depth - Vibrato-Tiefe - - - Tremolo Depth - Tremolo-Tiefe - - - - opl2instrumentView - - Attack - Anschwellzeit (attack) - - - Decay - Abfallzeit - - - Release - Ausklingzeit (release) - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion Verzerrung + Volume Lautstärke - organicInstrumentView + 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: - cents - Cent - - - The distortion knob adds distortion to the output of the instrument. - Der Verzerrungsregler fügt Verzerrung zur Ausgabe des Instruments hinzu. - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - Der Lautstärkeregler kontrolliert die Lautstärke des Instruments. Er ist gleich dem Lautstärkeregler des Instrumentenfensters. - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - Der Zufallsknopf setzt alle Regler auf zufällige Werte, außer den Harmonien, der Hauptlautstärke und den Verzerrungsreglern. - - + Osc %1 stereo detuning Oszillator %1 Stereo Verstimmung + + cents + Cent + + + Osc %1 harmonic: Oszillator %1 Harmonie: - FreeBoyInstrument - - Sweep time - Streichzeit - - - Sweep direction - Streichrichtung - - - Sweep RtShift amount - - - - Wave Pattern Duty - - - - 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 - - - Right Output level - Rechter Ausgabelevel - - - Left Output level - Linker Ausgabelevel - - - 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 - - - Shift Register width - Schieberegister-Breite - - - - FreeBoyInstrumentView - - Sweep Time: - Streichzeit: - - - Sweep Time - Streichzeit - - - Sweep RtShift amount: - - - - Sweep RtShift amount - - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - Quadratkanal 1 Lautstärke: - - - Length of each step in sweep: - Länge jedes Schritts beim Streichen: - - - Length of each step in sweep - Länge jedes Schritts beim Streichen - - - Wave pattern duty - - - - Square Channel 2 Volume: - Quadratkanal 2 Lautstärke: - - - Square Channel 2 Volume - Quadratkanal 2 Lautstärke - - - Wave Channel Volume: - Wellenkanal Lautstärke: - - - Wave Channel Volume - Wellenkanal Lautstärke - - - Noise Channel Volume: - Rauschkanal Lautstärke: - - - Noise Channel Volume - Rauschkanal Lautstärke - - - SO1 Volume (Right): - SO1 Lautstärke (Rechts): - - - SO1 Volume (Right) - SO1 Lautstärke (Rechts) - - - SO2 Volume (Left): - SO2 Lautstärke (Links): - - - SO2 Volume (Left) - SO2 Lautstärke (Links) - - - Treble: - Höhe: - - - Treble - Höhe - - - Bass: - Bass: - - - Bass - Bass - - - Sweep Direction - Streichrichtung - - - Volume Sweep Direction - Lautstärken-Streichrichtung - - - Shift Register Width - Schieberegister-Breite - - - Channel1 to SO1 (Right) - Kanal1 zu SO1 (Rechts) - - - Channel2 to SO1 (Right) - Kanal2 zu SO1 (Rechts) - - - Channel3 to SO1 (Right) - Kanal3 zu SO1 (Rechts) - - - Channel4 to SO1 (Right) - Kanal4 zu SO1 (Rechts) - - - Channel1 to SO2 (Left) - Kanal1 zu SO2 (Links) - - - Channel2 to SO2 (Left) - Kanal2 zu SO2 (Links) - - - Channel3 to SO2 (Left) - Kanal3 zu SO2 (Links) - - - Channel4 to SO2 (Left) - Kanal4 zu SO2 (Links) - - - Wave Pattern - Wellenmuster - - - The amount of increase or decrease in frequency - Die Menge an Erhöhung oder Verminderung in der Frequenz - - - The rate at which increase or decrease in frequency occurs - Die Rate, mit der Erhöhung oder Verminderung in der Frequenz geschieht - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - Der Tastgrad ist das Verhältnis der Dauter (Zeit), in dem das Signal AN ist, im Gegensatz zur gesamten Periodendauer des Signals. - - - Square Channel 1 Volume - Quadratkanal 1 Lautstärke - - - The delay between step change - Die Verzögerung zwischen Schrittänderung - - - Draw the wave here - Die Welle hier zeichnen - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank Bank + Program selector Programmwähler + Patch Patch + Name Name + OK OK + Cancel Abbrechen - pluginBrowser - - no description - keine Beschreibung - - - Incomplete monophonic imitation tb303 - Unvollständiger monophonischer TB303-Klon - - - Plugin for freely manipulating stereo output - Plugin zur freien Manipulation der Stereoausgabe - - - Plugin for controlling knobs with sound peaks - Plugin zur Kontrolle von Knöpfen mit Hilfe von Klangspitzen - - - Plugin for enhancing stereo separation of a stereo input file - Plugin zur Erweiterung des Stereo-Klangeindrucks - - - List installed LADSPA plugins - Installierte LADSPA-Plugins auflisten - - - GUS-compatible patch instrument - GUS-kompatibles Patch-Instrument - - - Additive Synthesizer for organ-like sounds - Additiver Synthesizer für orgelähnliche Klänge - - - Tuneful things to bang on - Gegenstände, die nach etwas klingen, wenn man drauf rumkloppt - - - 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 LADSPA-effects inside LMMS. - Plugin, um beliebige LADSPA-Effekte in LMMS nutzen zu können. - - - Filter for importing MIDI-files into LMMS - Filter, um MIDI-Dateien in LMMS zu importieren - - - 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. - - - Player for SoundFont files - Wiedergabe von SoundFont-Dateien - - - Emulation of GameBoy (TM) APU - Emulation des GameBoy (TM) APU - - - Customizable wavetable synthesizer - Flexibler Wavetable-Synthesizer - - - Embedded ZynAddSubFX - Eingebettetes ZynAddSubFX-Plugin - - - 2-operator FM Synth - 2-Operator FM-Synth - - - Filter for importing Hydrogen files into LMMS - Filter zum importieren von Hydrogendateien in LMMS - - - LMMS port of sfxr - LMMS-Portierung von sfxr - - - Monstrous 3-oscillator synth with modulation matrix - Monströser 3-Oszillator Synth mit Modulationsmatrix - - - Three powerful oscillators you can modulate in several ways - Drei mächtige Oszillatoren, die Sie auf mehrere Weisen modulieren können - - - A native amplifier plugin - Ein natives Verstärker-Plugin - - - Carla Rack Instrument - Carla Rack Instrument - - - 4-oscillator modulatable wavetable synth - 4-Oszillator modulierbarer Wellenformtabellen Synth - - - plugin for waveshaping - Plugin für Wellenformen - - - Boost your bass the fast and simple way - Verstärken Sie Ihren Bass auf schnellen und einfachen Wege - - - Versatile drum synthesizer - Vielseitiger Trommel-Synthesizer - - - 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 - - - plugin for processing dynamics in a flexible way - Ein Plugin, um Dynamik auf Flexible Weise zu verarbeiten - - - Carla Patchbay Instrument - Carla Patchbay Instrument - - - plugin for using arbitrary VST effects inside LMMS. - Plugin um beliebige VST-Effekte in LMMS zu benutzen. - - - Graphical spectrum analyzer plugin - Graphisches Spektrumanalyzer Plugin - - - A NES-like synthesizer - Ein NES ähnlicher Synthesizer - - - A native delay plugin - Ein natives Verzögerung-Plugin - - - Player for GIG files - - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - Ein 4-Band Crossover Equalizer - - - A Dual filter plugin - Ein doppel Fliter Plugin - - - Filter for exporting MIDI-files from LMMS - - - - Reverb algorithm by Sean Costello - - - - Mathematical expression parser - - - - - sf2Instrument + Sf2Instrument + Bank Bank + Patch Patch + Gain Gain + Reverb Hall - Reverb Roomsize - Hall/Raumgröße + + Reverb room size + - Reverb Damping - Hall/Dämpfung + + Reverb damping + - Reverb Width - Hall/Weite + + Reverb width + - Reverb Level - Hall/Stärke + + Reverb level + + Chorus Chorus - Chorus Lines - Chorus/Anzahl - - - Chorus Level - Chorus/Stärke - - - Chorus Speed - Chorus/Geschwindigkeit - - - Chorus Depth - Chorus/Tiefe - - - A soundfont %1 could not be loaded. + + Chorus voices + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + Soundfont %1 konnte nicht geladen werden. + - sf2InstrumentView - - Open other SoundFont file - Eine andere SoundFont-Datei öffnen - - - Click here to open another SF2 file - Klicken Sie hier, um eine andere SF2-Datei zu öffnen - - - Choose the patch - Patch wählen - - - Gain - Gain - - - Apply reverb (if supported) - Hall anwenden (wenn unterstützt) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Dieser Knopf aktiviert den Hall-Effekt, welcher jedoch nur mit Dateien funktioniert, die dies unterstützen. - - - Reverb Roomsize: - Hall/Raumgröße: - - - Reverb Damping: - Hall/Dämpfung: - - - Reverb Width: - Hall/Weite: - - - Reverb Level: - Reverb/Stärke: - - - Apply chorus (if supported) - Chorus-Effekt anwenden (wenn unterstützt) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Dieser Knopf aktiviert den Chorus-Effekt. Das ist nützlich für Echo-Effekte, funktioniert jedoch nur mit Dateien, die dies unterstützen. - - - Chorus Lines: - Chorus/Anzahl: - - - Chorus Level: - Chorus/Stärke: - - - Chorus Speed: - Chorus/Geschwindigkeit: - - - Chorus Depth: - Chorus/Tiefe: - + Sf2InstrumentView + + Open SoundFont file SoundFont-Datei öffnen - SoundFont2 Files (*.sf2) - SoundFont2-Dateien (*.sf2) + + 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 + SfxrInstrument - Wave Form - Wellenform + + Wave + - sidInstrument + StereoEnhancerControlDialog - Cutoff - Kennfrequenz - - - Resonance - Resonanz - - - 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 - Hochpass-Filter - - - Band-Pass filter - Bandpass-Filter - - - Low-Pass filter - Tiefpass-Filter - - - Voice3 Off - Stimme 3 lautlos - - - MOS6581 SID - MOS6581 SID - - - MOS8580 SID - MOS8580 SID - - - Attack: - Anschwellzeit (attack): - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Anschwellzeit gibt an, wie schnell die Ausgabe von Stimme %1 von Null zur Spitzenamplitude anschwellt. - - - Decay: - Abfallzeit (decay): - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - Abfallzeit gibt an, wie schnell die Ausgabe von der Spitzenamplitude bis zum ausgewählten Dauerpegel fällt. - - - Sustain: - Dauerpegel (sustain): - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - Die Ausgabe von Stimme %1 wird solange bei dem ausgewählten Dauerpegel verbleiben, wie die Note gehalten wird. - - - Release: - Ausklingzeit (release): - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - Die Ausgabe von Stimme %1 wird vom Dauerpegel mit der ausgewählten Ausklingzeit auf Null abfallen. - - - Pulse Width: - Pulsweite: - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - Die Pulsweitenauflösung ermöglicht es die Weite gleitend, ohne erkennbare Schritte zu ändern. Die Puls-Wellenform von Oszillator %1 muss ausgewählt werden, um eine hörbaren Effekt zu haben. - - - Coarse: - Grob: - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - Die Grob-Verstimmung ermöglicht es die Stimme %1 um eine Oktave nach oben oder unten zu verstimmen. - - - Pulse Wave - Puls-Signal - - - Triangle Wave - Dreieckwelle - - - SawTooth - Sägezahnwelle - - - Noise - Rauschen - - - Sync - Synchron - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Sync synchronisiert die Grundfrequenz von Oszillator %1 mit der Grundfrequenz von Oszillator %2, was einen »Hard Sync« Effekt hervorruft. - - - Ring-Mod - Ringmodulation - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Ringmodus ersetzt die Dreieck-Wellenfrom-Ausgabe von Oszillator %1 mit einer ringmodulierten Kombination der Oszillatoren %1 und %2. - - - Filtered - Gefiltert - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Wenn gefilter an ist, wird Stimme %1 durch den Filter verarbeitet. Wenn gefiltert aus ist, wird Stimme %1 direkt an die Ausgabe weitergeleitet und der Filter hat keine Auswirkung darauf. - - - Test - Test - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Test, wenn aktiviert, wird Oszillator %1 zurückgesetzt und auf Null gesperrt, bis Test ausgeschaltet wird. - - - - stereoEnhancerControlDialog - - WIDE - WEITE + + WIDTH + + Width: Weite: - stereoEnhancerControls + StereoEnhancerControls + Width Weite - stereoMatrixControlDialog + 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 + 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 + VestigeInstrument + Loading plugin Lade Plugin - Please wait while loading VST-plugin... - Bitte warten, während das VST-Plugin geladen wird… + + Please wait while loading the VST plugin... + - vibed + 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 - Pan %1 - Balance %1 + + String %1 panning + - Detune %1 - Verstimmung %1 + + String %1 detune + - Fuzziness %1 - Unschärfe %1 + + String %1 fuzziness + - Length %1 - Länge %1 + + String %1 length + + Impulse %1 Impuls %1 - Octave %1 - Oktave %1 + + String %1 + - vibedView + VibedView - Volume: - Lautstärke: - - - The 'V' knob sets the volume of the selected string. - Der »V«-Regler setzt die Lautstärke der gewählten Saite. + + String volume: + + String stiffness: Härte der Saite: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - Der »S«-Regler setzt die Härte der gewählten Saite. Die Härte der Saite beeinflusst deren Ausklang-Dauer. Je kleiner die Einstellung, desto länger klingt die Saite aus. - - + Pick position: Zupf-Position: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - Der »P«-Regler bestimmt die Position, an der die Saite angezupft wird. Je kleiner die Einstellung, desto näher wird am Steg gezupft. - - + Pickup position: Abnehmer-Position: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - Der »PU«-Regler bestimmt die Position, an der die Schwingungen an der gewählten Saite abgenommen werden. Je kleiner die Einstellung, desto näher ist der Abnehmer am Steg. + + String panning: + - Pan: - Balance: + + String detune: + - The Pan knob determines the location of the selected string in the stereo field. - Der Balance-Regler bestimmt den Ort der gewählten Saite im Stereo-Raum. + + String fuzziness: + - Detune: - Verstimmung: + + String length: + - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - Der Verstimmungs-Regler verändert die Tonhöhe der gewählten Saite. Einstellungen kleiner als 0 lassen die Saite flacher klingen, während Werte über 0 zu einem eher scharfen Klang führen. - - - Fuzziness: - Unschärfe: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - Der Unschärfe-Regler fügt dem Klang der Saite etwas »Fuzz« hinzu, welcher hauptsächlich während des Anschlages zum Tragen kommt, wenngleich er auch genutzt werden kann, um den Klang etwas metallischer zu gestalten. - - - Length: - Länge: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - Der Länge-Regler bestimmt die Länge der gewählten Saite. Längere Saiten klingen länger und klingen heller, wobei sie gleichzeitig auch mehr CPU-Leistung fressen. - - - Impulse or initial state - Impuls oder Grundstellung - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - Mit dem »Imp«-Knopf legen Sie fest, ob die Wellenform in diesem Graph als Impuls zum Anzupfen der Saite oder als Grundstellung für die Saite genutzt werden soll. + + Impulse + Impuls + Octave - Oktave - - - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - Mit dem Oktaven-Wähler kann der Oktavenversatz gegenüber der Note verändert werden. So meint beispielsweise eine Einstellung von »-2«, dass die Saite zwei Oktaven unterhalb des Grundtons (»F«) schwingen wird und »6« dementsprechend 6 Oktaven über dem Grundton. + Okatve + Impulse Editor Impuls-Editor - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - Der Wellenform-Editor ermöglicht die Kontrolle über die Grundstellung oder den Impuls, der genutzt wird, um die Saite zum Schwingen zu bringen. Die Knöpfe rechts des Graphes initialisieren die Wellenform mit dem gewünschten Typ. Der »?«-Knopf lässt Sie eine Wellenform aus einer Datei laden - allerdings werden nur die ersten 128 Samples geladen. - -Die Wellenform kann ebenfalls in dem Graph gezeichnet werden. - -Der »S«-Knopf glättet die Wellenform. - -Der »N«-Knopf normalisiert die Wellenform. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Vibed modelliert bis zu 9 unabhängige schwingende Saiten. Der Saiten-Wähler ermöglicht die Wahl der gerade aktiven Saite. Der »Imp«-Knopf bestimmt, ob der Graph einen Impuls oder die Grundstellung der Saite repräsentiert. Der Oktaven-Wähler gibt den Oktavenversatz der Saite gegenüber dem Grundton an. - -Der Graph ermöglicht die Kontrolle über die Grundstellung der Saite oder den Impuls, der zum Anzupfen der Saite genutzt wird. - -Der »V«-Regler bestimmt die Lautstärke. Mit dem »S«-Regler wird die Härte der Saite eingestellt. Der »P«-Regler beeinflusst den Ort, an dem die Saite angezupft wird, während der »PU«-Regler die Position des Abnehmers bestimmt. - -»Balance« und »Verstimmung« bedürfen hoffentlich keiner Erklärung. Der Unschärfe-Regler fügt dem Klang der Saite etwas »Fuzz« hinzu. - -Der Länge-Regler bestimmt die Länge der Saite. - -Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist. - - + Enable waveform Wellenform aktivieren - Click here to enable/disable waveform. - Hier klicken, um die Wellenform zu aktivieren/deaktiveren. + + Enable/disable string + + String Saite - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - Der Saiten-Wähler bestimmt die derzeit bearbeitete Saite. Ein Vibed-Instrument kann aus bis zu neun voneinander unabhängig schwingenden Saiten bestehen. Die LED in der Ecke rechts unterhalb der Wellenform gibt an, ob die gewählte Saite aktiv ist. - - + + Sine wave Sinuswelle + + Triangle wave Dreieckwelle + + Saw wave Sägezahnwelle + + Square wave Rechteckwelle - White noise wave + + + White noise Weißes Rauschen - User defined wave + + + User-defined wave Benutzerdefinierte Welle - Smooth - Glätten + + + Smooth waveform + Wellenform glätten - Click here to smooth waveform. - Klicken Sie hier, um die Wellenform zu glätten. - - - Normalize - Normalisieren - - - Click here to normalize waveform. - Hier klicken, um die Wellenform zu normalisieren. - - - Use a sine-wave for current oscillator. - Sinuswelle für aktuellen Oszillator nutzen. - - - Use a triangle-wave for current oscillator. - Dreieckwelle für aktuellen Oszillator nutzen. - - - Use a saw-wave for current oscillator. - Sägezahnwelle für aktuellen Oszillator nutzen. - - - Use a square-wave for current oscillator. - Rechteckwelle für aktuellen Oszillator nutzen. - - - Use white-noise for current oscillator. - Weißes Rauschen für aktuellen Oszillator nutzen. - - - Use a user-defined waveform for current oscillator. - Benutzerdefinierte Wellenform für aktuellen Oszillator nutzen. + + + Normalize waveform + Wellenform normalisieren - voiceObject + 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 + WaveShaperControlDialog + INPUT INPUT + Input gain: Eingangsverstärkung: + OUTPUT OUTPUT + Output gain: Ausgabeverstärkung: - Reset waveform - Wellenform zurücksetzen + + + Reset wavegraph + - Click here to reset the wavegraph back to default - Klicken Sie hier, um den Wellengraph zum Standard zurückzusetzen + + + Smooth wavegraph + - Smooth waveform - Wellenform glätten + + + Increase wavegraph amplitude by 1 dB + Erhöhe wavegraph Amplitude um 1 dB - Click here to apply smoothing to wavegraph - Klicken Sie hier, um den Wellengraph zu glätten - - - Increase graph amplitude by 1dB - Die Amplitude des Wellengraphs um 1dB erhöhen - - - Click here to increase wavegraph amplitude by 1dB - Klicken Sie hier, um die Amplitude des Wellengraphs um 1dB zu erhöhen - - - Decrease graph amplitude by 1dB - Die Amplitude des Wellengraphs um 1dB vermindern - - - Click here to decrease wavegraph amplitude by 1dB - Klicken Sie hier, um die Amplitude des Wellengraphs um 1dB zu vermindern + + + Decrease wavegraph amplitude by 1 dB + Verringere wavegraph Amplitude um 1 dB + Clip input Eingang begrenzen - Clip input signal to 0dB - Eingangssignal auf 0dB begrenzen + + Clip input signal to 0 dB + Schneide das Eingangssignal bei 0 dB ab - waveShaperControls + WaveShaperControls + Input gain Eingangsverstärkung + Output gain Ausgabeverstärkung diff --git a/data/locale/el.ts b/data/locale/el.ts new file mode 100644 index 000000000..320a6657f --- /dev/null +++ b/data/locale/el.ts @@ -0,0 +1,16326 @@ + + + AboutDialog + + + About LMMS + Σχετικά με το LMMS + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + Έκδοση %1 (%2/%3, Qt %4, %5). + + + + About + Σχετικά + + + + LMMS - easy music production for everyone. + LMMS - εύκολη μουσική παραγωγή για όλους + + + + Copyright © %1. + Πνευματική ιδιοκτησία © %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> + + + + Authors + + + + + Involved + + + + + Contributors ordered by number of commits: + + + + + Translation + Μετάφραση + + + + 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! + + + + + License + Άδεια + + + + AmplifierControlDialog + + + 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 + + + + + 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) + + + + + &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 + + + + + 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 + + + + + CarlaAboutW + + + About Carla + + + + + About + Σχετικά + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Αρχείο + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + &βοήθεια + + + + toolBar + + + + + 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 + &Νέο + + + + Ctrl+N + + + + + &Open... + &Άνοιγμα... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + Ρυθμίσεις + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + + + + + 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 + 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: + + + + + 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 + + + + + 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 + + + + + + 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 + Απολαβή 1 + + + + Mix + Μείξη + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 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 + + + + + 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 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: + 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 + + + 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 + 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 + + + + + Quality settings + + + + + Interpolation: + + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + 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! + + + + + 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% + + + + + Fader + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + 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 + + + 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 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 + + + + + tri + + + + + 6 + 6 + + + + 6sus4 + + + + + 6add9 + + + + + m6 + + + + + m6add9 + + + + + 7 + 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 + 9 + + + + 9sus4 + + + + + add9 + + + + + 9#5 + + + + + 9b5 + + + + + 9#11 + + + + + 9b13 + + + + + Maj9 + + + + + Maj9sus4 + + + + + Maj9#5 + + + + + Maj9#11 + + + + + m9 + + + + + madd9 + + + + + m9b5 + + + + + m9-Maj7 + + + + + 11 + 11 + + + + 11b9 + + + + + Maj11 + Maj11 + + + + m11 + m11 + + + + m-Maj11 + + + + + 13 + 13 + + + + 13#9 + 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 + 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 + + + + + InstrumentMiscView + + + 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 + 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 + Ενταση + + + + Panning + + + + + Pitch + Τονικό ύψος + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + InstrumentTrackView + + + Volume + Ενταση + + + + Volume: + Ενταση: + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + PAN + + + + MIDI + MIDI + + + + Input + + + + + Output + Έξοδος + + + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 + FX %1: %2 + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + Volume + Ενταση + + + + Volume: + Ενταση: + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + 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 + + + + Miscellaneous + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + LeftRightNav + + + + + Previous + Προηγούμενος + + + + + + Next + Επόμενο + + + + Previous (%1) + Προηγούμενος (%1) + + + + Next (%1) + Επόμενο (%1) + + + + LfoController + + + LFO Controller + + + + + 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 + + + + + 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 + + + + + &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. + + + + + 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 + + + + 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) + + + + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 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 + + + 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 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 + Ονομα + + + + OK + OK + + + + Cancel + + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.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 + + + + + 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 + + + + + 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: + + + + + 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 + + + + + + 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 + + + + + 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 + + + + + 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 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 + 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 + + + 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 + Αρχείο: %1 + + + + File: + Αρχείο: + + + + RecentProjectsMenu + + + &Recently Opened Projects + + + + + 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 + + + + + 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 + Ενταση + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + PAN + + + + Channel %1: %2 + FX %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 + + + 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 + + + + + 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 + + + + + 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 + OK + + + + Cancel + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + λεπτά + + + + minute + λεπτό + + + + Disabled + Απενεργοποιημένο + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + 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 + + + + + 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 + + + + + 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 + + + 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 + έργο + + + + 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 + + + + + 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 + + + + + Maximize + + + + + Restore + + + + + 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 + Σίγαση + + + + 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. + + + + + 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 + + + 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 + FX %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 + + + + + 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 + + + + + + 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 + + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + WatsynInstrument + + + Volume A1 + Ενταση A1 + + + + Volume A2 + Ενταση A2 + + + + Volume B1 + Ενταση B1 + + + + Volume B2 + Ενταση 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 + Κανονικοποίηση + + + + + 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 + + + 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 + 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: + Απολαβή εξόδου: + + + + + 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 + Απολαβή εξόδου + + + diff --git a/data/locale/en.ts b/data/locale/en.ts index f20bfaac2..e52ae39ab 100644 --- a/data/locale/en.ts +++ b/data/locale/en.ts @@ -4,68 +4,68 @@ AboutDialog - + About LMMS - + LMMS - + Version %1 (%2/%3, Qt %4, %5). - + About - + LMMS - easy music production for everyone. - + Copyright © %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> - + Authors - + Involved - + Contributors ordered by number of commits: - + Translation - + 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! - + License @@ -152,52 +152,52 @@ If you're interested in translating LMMS in another language or want to imp 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: @@ -205,7 +205,7 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorWaveView - + Sample length: @@ -213,33 +213,33 @@ If you're interested in translating LMMS in another language or want to imp 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 + + Client name - - CHANNELS + + Channels @@ -247,12 +247,12 @@ If you're interested in translating LMMS in another language or want to imp AudioOss - DEVICE + Device - CHANNELS + Channels @@ -260,12 +260,12 @@ If you're interested in translating LMMS in another language or want to imp AudioPortAudio::setupWidget - BACKEND + Backend - DEVICE + Device @@ -273,20 +273,20 @@ If you're interested in translating LMMS in another language or want to imp AudioPulseAudio - DEVICE + Device - CHANNELS + Channels AudioSdl::setupWidget - - DEVICE + + Device @@ -294,87 +294,87 @@ If you're interested in translating LMMS in another language or want to imp AudioSndio - DEVICE + Device - CHANNELS + Channels AudioSoundIo::setupWidget - - BACKEND + + Backend - - DEVICE + + 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... @@ -382,310 +382,300 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditor - - Please open an automation pattern with the context menu of a control! + + Edit Value - - Values copied + + New outValue - - All selected values were copied to the clipboard. + + New inValue + + + + + Please open an automation clip with the context menu of a control! AutomationEditorWindow - - Play/pause current pattern (Space) + + Play/pause current clip (Space) - - Stop playing of current pattern (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: - - Cut selected values (%1+X) - - - - - Copy selected values (%1+C) - - - - - Paste values from clipboard (%1+V) - - - - + Zoom controls - + Horizontal zooming - + Vertical zooming - + Quantization controls - + Quantization - - - Automation Editor - no pattern + + + Automation Editor - no clip - - + + Automation Editor - %1 - - Model is already connected to this pattern. + + Model is already connected to this clip. - AutomationPattern + AutomationClip - + Drag a control while pressing <%1> - AutomationPatternView + 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 pattern. + + Model is already connected to this clip. AutomationTrack - + Automation track - BBEditor + 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 - BBTCOView + PatternClipView - + Open in Beat+Bassline-Editor - + Reset name - + Change name - - - Change color - - - - - Reset color to default - - - BBTrack + PatternTrack - + Beat/Bassline %1 - + Clone of %1 @@ -790,52 +780,52 @@ If you're interested in translating LMMS in another language or want to imp - + Rate enabled - + Enable sample-rate crushing - + Depth enabled - + Enable bit-depth crushing - + FREQ - + Sample rate: - + STEREO - + Stereo difference: - + QUANT - + Levels: @@ -888,14 +878,2196 @@ If you're interested in translating LMMS in another language or want to imp + + CarlaAboutW + + + About Carla + + + + + About + + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + + + + + toolBar + + + + + 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 + + + + + Ctrl+N + + + + + &Open... + + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 @@ -907,73 +3079,73 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -981,22 +3153,22 @@ If you're interested in translating LMMS in another language or want to imp ControllerRackView - + Controller Rack - + Add - + Confirm Delete - + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. @@ -1004,32 +3176,32 @@ If you're interested in translating LMMS in another language or want to imp ControllerView - + Controls - + Rename controller - + Enter the new name for this controller - + LFO - + &Remove this controller - + Re&name this controller @@ -1213,6 +3385,223 @@ If you're interested in translating LMMS in another language or want to imp + + 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 + + + + + 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 @@ -1285,189 +3674,189 @@ If you're interested in translating LMMS in another language or want to imp 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 + + - 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 - Vocal Formant + 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 - Fast Formant - - - - - Tripole @@ -1475,32 +3864,32 @@ If you're interested in translating LMMS in another language or want to imp Editor - + Transport controls - + Play (Space) - + Stop (Space) - + Record - + Record while playing - + Toggle Step Recording @@ -1539,12 +3928,12 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView - + EFFECTS CHAIN - + Add effect @@ -1552,28 +3941,28 @@ If you're interested in translating LMMS in another language or want to imp EffectSelectDialog - + Add effect - - + + Name - + Type - + Description - + Author @@ -1581,57 +3970,57 @@ If you're interested in translating LMMS in another language or want to imp EffectView - + On/Off - + W/D - + Wet Level: - + DECAY - + Time: - + GATE - + Gate: - + Controls - + Move &up - + Move &down - + &Remove this plugin @@ -1712,123 +4101,123 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -2158,217 +4547,217 @@ If you're interested in translating LMMS in another language or want to imp 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 - + 48000 Hz - + 88200 Hz - + 96000 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 @@ -2384,32 +4773,32 @@ Please make sure you have write permission to the file and the directory contain - + 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% @@ -2417,14 +4806,12 @@ Please make sure you have write permission to the file and the directory contain Fader - - + Set value - - + Please enter a new value between %1 and %2: @@ -2432,17 +4819,27 @@ Please make sure you have write permission to the file and the directory contain FileBrowser - - Browser + + User content + Factory content + + + + + Browser + + + + Search - + Refresh list @@ -2450,47 +4847,67 @@ Please make sure you have write permission to the file and the directory contain FileBrowserTreeWidget - + Send to active instrument-track - - Open in new instrument-track/Song Editor + + Open containing folder - - Open in new instrument-track/B+B 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 - + Please wait, loading sample for preview... - + Error - - does not appear to be a valid + + %1 does not appear to be a valid %2 file - - file - - - - + --- Factory files --- @@ -2514,16 +4931,21 @@ Please make sure you have write permission to the file and the directory contain - Regen + Stereo phase - Noise + Regen + Noise + + + + Invert @@ -2562,26 +4984,36 @@ Please make sure you have write permission to the file and the directory contain - FDBK + PHASE - Feedback amount: + Phase: - NOISE + FDBK + Feedback amount: + + + + + NOISE + + + + White noise amount: - + Invert @@ -2903,119 +5335,134 @@ Please make sure you have write permission to the file and the directory contain - FxLine + MixerLine - + 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 + + - FxLineLcdSpinBox + MixerLineLcdSpinBox - + Assign to: - - New FX Channel + + New mixer Channel - FxMixer + Mixer - + Master - - - - FX %1 + + + + Channel %1 - + Volume - + Mute - + Solo - FxMixerView + MixerView - - FX-Mixer + + Mixer - - FX Fader %1 + + Fader %1 - + Mute - - Mute this FX channel + + Mute this mixer channel - + Solo - - Solo FX channel + + Solo mixer channel - FxRoute + MixerRoute - - + + Amount to send from channel %1 to channel %2 @@ -3023,17 +5470,17 @@ Please make sure you have write permission to the file and the directory contain GigInstrument - + Bank - + Patch - + Gain @@ -3041,23 +5488,23 @@ Please make sure you have write permission to the file and the directory contain GigInstrumentView - - + + Open GIG file - + Choose patch - + Gain: - + GIG Files (*.gig) @@ -3065,52 +5512,52 @@ Please make sure you have write permission to the file and the directory contain 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 piano roll - + Preparing automation editor @@ -3118,20 +5565,25 @@ Please make sure you have write permission to the file and the directory contain InstrumentFunctionArpeggio - + Arpeggio - + Arpeggio type - + Arpeggio range + + + Note repeats + + Cycle steps @@ -3211,104 +5663,119 @@ Please make sure you have write permission to the file and the directory contain 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: @@ -3316,488 +5783,488 @@ Please make sure you have write permission to the file and the directory contain 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 @@ -3805,27 +6272,27 @@ Please make sure you have write permission to the file and the directory contain InstrumentFunctionNoteStackingView - + STACKING - + Chord: - + RANGE - + Chord range: - + octave(s) @@ -3833,59 +6300,63 @@ Please make sure you have write permission to the file and the directory contain InstrumentMidiIOView - + ENABLE MIDI INPUT - - - CHANNEL - - - - - - VELOCITY - - - - + ENABLE MIDI OUTPUT - - PROGRAM + + + 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 @@ -3893,12 +6364,12 @@ Please make sure you have write permission to the file and the directory contain InstrumentMiscView - + MASTER PITCH - + Enables the use of master pitch @@ -3906,158 +6377,158 @@ Please make sure you have write permission to the file and the directory contain 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 @@ -4065,42 +6536,42 @@ Please make sure you have write permission to the file and the directory contain InstrumentSoundShapingView - + TARGET - + FILTER - + FREQ - + Cutoff frequency: - + Hz - + Q/RESO - + Q/Resonance: - + Envelopes, LFOs and filters are not supported by the current instrument. @@ -4108,54 +6579,69 @@ Please make sure you have write permission to the file and the directory contain InstrumentTrack - - With this knob you can set the volume of the opened channel. - - - - - + + unnamed_track - + Base note - + + First note + + + + + Last note + + + + Volume - + Panning - + Pitch - + Pitch range - - FX channel + + Mixer channel - + Master pitch - - + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + Default preset @@ -4163,209 +6649,267 @@ Please make sure you have write permission to the file and the directory contain InstrumentTrackView - + Volume - + Volume: - + VOL - + Panning - + Panning: - + PAN - + MIDI - + Input - + Output - - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 InstrumentTrackWindow - + GENERAL SETTINGS - + Volume - + Volume: - + VOL - + Panning - + Panning: - + PAN - + Pitch - + Pitch: - + cents - + PITCH - + Pitch range (semitones) - + RANGE - - FX channel + + Mixer channel - - FX + + CHANNEL - + Save current instrument track settings in a preset file - + SAVE - + Envelope, filter & LFO - + Chord stacking & arpeggio - + Effects - + MIDI - + Miscellaneous - + Save preset - + XML preset file (*.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 + + + + + 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: @@ -4394,12 +6938,12 @@ Please make sure you have write permission to the file and the directory contain LadspaControlView - + Link channels - + Value: @@ -4413,14 +6957,27 @@ Please make sure you have write permission to the file and the directory contain - LcdSpinBox + LcdFloatSpinBox - + Set value - + + Please enter a new value between %1 and %2: + + + + + LcdSpinBox + + + Set value + + + + Please enter a new value between %1 and %2: @@ -4600,24 +7157,24 @@ Double click to pick a file. - LmmsCore + Engine - + Generating wavetables - + Initializing data structures - + Opening audio and midi devices - + Launching mixer threads @@ -4625,483 +7182,478 @@ Double click to pick a file. 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 artwork - - - - + &File - + &New - - New from template - - - - + &Open... - - &Recently Opened Projects + + Loading background picture - + &Save - + Save &As... - + Save as New &Version - + Save as default template - + Import... - + E&xport... - + E&xport Tracks... - + Export &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 - - - FX Mixer + + + 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 @@ -5149,6 +7701,25 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController @@ -5165,23 +7736,43 @@ Please visit http://lmms.sf.net/wiki for documentation on 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 + + + + Track @@ -5201,6 +7792,241 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + 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 @@ -5262,603 +8088,603 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiSetupWidget - - DEVICE + + 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 @@ -5866,240 +8692,240 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 @@ -6150,102 +8976,102 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 @@ -6253,155 +9079,155 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 @@ -6557,26 +9383,26 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. OpulenzInstrumentView - - + + Attack - - + + Decay - - + + Release - - + + Frequency multiplier @@ -6584,64 +9410,77 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 @@ -6688,85 +9527,85 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. PatmanView - + Open patch - + Loop - + Loop mode - + Tune - + Tune mode - + No file selected - + Open patch file - + Patch-Files (*.pat) - PatternView + MidiClipView - + Open in piano-roll - + Set as ghost in piano-roll - + Clear all notes - + Reset name - + Change name - + Add steps - + Remove steps - + Clone Steps @@ -6805,72 +9644,72 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. PeakControllerEffectControlDialog - + BASE - + Base: - + AMNT - + Modulation amount: - + MULT - + Amount multiplicator: - + ATCK - + Attack: - + DCAY - + Release: - + TRSH - + Treshold: - + Mute output - + Absolute value @@ -6878,42 +9717,42 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. PeakControllerEffectControls - + Base value - + Modulation amount - + Attack - + Release - + Treshold - + Mute output - + Absolute value - + Amount multiplicator @@ -6921,93 +9760,118 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 - - Please open a pattern by double-clicking on it! + + 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: @@ -7015,140 +9879,262 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. PianoRollWindow - - Play/pause current pattern (Space) + + 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 pattern (Space) + + 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 pattern + + + 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 @@ -7191,6 +10177,736 @@ Reason: "%2" 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 + + + + + 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 + + + + + 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 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 @@ -7200,155 +10916,392 @@ Reason: "%2" - + 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... @@ -7376,37 +11329,63 @@ Reason: "%2" + + QObject + + + Reload Plugin + + + + + Show GUI + + + + + Help + + + QWidget - + + Name: - + + URI: + + + + + Maker: - + + Copyright: - + Requires Real Time: - - - + + + @@ -7414,9 +11393,9 @@ Reason: "%2" - - - + + + @@ -7424,25 +11403,25 @@ Reason: "%2" - + Real Time Capable: - + In Place Broken: - + Channels In: - + Channels Out: @@ -7458,10 +11437,18 @@ Reason: "%2" + + RecentProjectsMenu + + + &Recently Opened Projects + + + RenameDialog - + Rename... @@ -7594,77 +11581,117 @@ Reason: "%2" FFT window type + + + Peak envelope resolution + + - - Full (auto) + Spectrum display resolution - - Audible + Peak decay multiplier - Bass + Averaging weight - Mids + Waterfall history size - High + Waterfall gamma correction - - Extended + + FFT window overlap - - - Default + + FFT zero padding - Noise + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + Loud + + + + + Silent + + + + (High time res.) - + (High freq. res.) - + Rectangular (Off) - - + + Blackman-Harris (Default) - + Hamming - + Hanning @@ -7672,110 +11699,257 @@ Reason: "%2" 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 bize + + 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 @@ -7783,124 +11957,159 @@ Reason: "%2" SampleBuffer - + 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) - + 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) - SampleTCOView + 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 - + Panning - - FX channel + + Mixer channel - - + + Sample track @@ -7908,449 +12117,793 @@ Reason: "%2" SampleTrackView - + Track volume - + Channel volume: - + VOL - + Panning - + Panning: - + PAN - - FX %1: %2 + + Channel %1: %2 SampleTrackWindow - + GENERAL SETTINGS - + Sample volume - + Volume: - + VOL - + Panning - + Panning: - + PAN - - FX channel + + Mixer channel - - FX + + CHANNEL SaveOptionsWidget - + Discard MIDI connections + + + Save As Project Bundle (with resources) + + SetupDialog - - Setup LMMS - - - - - - General settings - - - - - BUFFER SIZE - - - - - + Reset to default value - - MISC - - - - + Use built-in NaN handler - - PLUGIN EMBEDDING + + 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 - - LANGUAGE + + 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 - - Directories - - - - - - Performance settings - - - - - Auto save - - - - - Enable auto-save - - - - - Allow auto-save while playing - - - - - UI effects vs. performance - - - - - Smooth scroll in Song Editor - - - - - Show playback cursor in AudioFileProcessor - - - - - - Audio settings - - - - - AUDIO INTERFACE - - - - - - MIDI settings - - - - - MIDI INTERFACE - - - - + OK - + Cancel - - Restart LMMS - - - - - Please note that most changes won't take effect until you restart LMMS! - - - - + Frames: %1 Latency: %2 ms - - Choose LMMS working directory - - - - + Choose your GIG directory - + Choose your SF2 directory - - Choose your VST-plugin directory - - - - - Choose artwork-theme directory - - - - - Choose LADSPA plugin directory - - - - - Choose STK rawwave directory - - - - - Choose default SoundFont - - - - - Choose background artwork - - - - + minutes - + minute - + Disabled + + + SidInstrument - - Auto-save interval: %1 + + Cutoff frequency + + + + + Resonance + + + + + 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 + + + + + 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 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 - The following errors occured while loading: + (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 to write 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 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 - - This %1 was created with LMMS %2. - - - - + template - + project - + Tempo - + TEMPO - + Tempo in BPM - + High quality mode - - - + + + Master volume - - - + + + Master pitch - + Value: %1% - + Value: %1 semitones @@ -8358,90 +12911,131 @@ Latency: %2 ms 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 - + 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 @@ -8467,12 +13061,20 @@ Latency: %2 ms TabWidget - + Settings for %1 + + TemplatesMenu + + + New from template + + + TempoSyncKnob @@ -8608,56 +13210,50 @@ Latency: %2 ms TimeLineWidget - + Auto scrolling - + Loop points - - After stopping go back to begin + + 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. - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - - Track - + Mute - + Solo @@ -8693,13 +13289,13 @@ Please make sure you have read-permission to the file and the directory containi - + Cancel - + Please wait... @@ -8719,302 +13315,436 @@ Please make sure you have read-permission to the file and the directory containi - + Importing MIDI-file... - TrackContentObject + Clip - + Mute - TrackContentObjectView + 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 - - + + 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 - - FX %1: %2 + + Channel %1: %2 - - Assign to new FX Channel + + 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? @@ -9022,90 +13752,77 @@ Please make sure you have read-permission to the file and the directory containi 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) - + No VST plugin loaded - + Preset - + by - + - VST plugin control - - VisualizationWidget - - - Oscilloscope - - - - - Click to enable - - - VstEffectControlDialog @@ -9153,59 +13870,49 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - + The VST plugin %1 could not be loaded. - + Open Preset - - + + Vst Plugin Preset (*.fxp *.fxb) - + : default - - " - - - - - ' - - - - + Save Preset - + .fxp - + .FXP - + .FXB - + .fxb @@ -9223,147 +13930,147 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -9371,224 +14078,224 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -9649,130 +14356,130 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -9780,42 +14487,42 @@ Please make sure you have read-permission to the file and the directory containi ZynAddSubFxInstrument - + Portamento - + Filter frequency - + Filter resonance - + Bandwidth - + FM gain - + Resonance center frequency - + Resonance bandwidth - + Forward MIDI control change events @@ -9823,343 +14530,343 @@ Please make sure you have read-permission to the file and the directory containi 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 + 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 + BitInvader - + Sample length - bitInvaderView + 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 + 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 + DynProcControls - + Input gain - + Output gain - + Attack time - + Release time - + Stereo mode @@ -10167,772 +14874,772 @@ Please make sure you have read-permission to the file and the directory containi graphModel - + Graph - kickerInstrument + KickerInstrument - + Start frequency - + End frequency - + Length - + Start distortion - + End distortion - + Gain - + Envelope slope - + Noise - + Click - + Frequency slope - + Start from note - + End to note - kickerInstrumentView + KickerInstrumentView - + Start frequency: - + End frequency: - + Frequency slope: - + Gain: - + Envelope length: - + Envelope slope: - + Click: - + Noise: - + Start distortion: - + End distortion: - ladspaBrowserView + LadspaBrowserView - - + + Available Effects - - + + Unavailable Effects - - + + Instruments - - + + Analysis Tools - - + + Don't know - + Type: - ladspaDescription + LadspaDescription - + Plugins - + Description - ladspaPortDialog + LadspaPortDialog - + Ports - + Name - + Rate - + Direction - + Type - + Min < Default < Max - + Logarithmic - + SR Dependent - + Audio - + Control - + Input - + Output - + Toggled - + Integer - + Float - - + + Yes - lb302Synth + Lb302Synth - + VCF Cutoff Frequency - + VCF Resonance - + VCF Envelope Mod - + VCF Envelope Decay - + Distortion - + Waveform - + Slide Decay - + Slide - + Accent - + Dead - + 24dB/oct Filter - lb302SynthView + 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 + 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 + 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 + ManageVSTEffectView - VST parameter control @@ -10945,7 +15652,7 @@ Please make sure you have read-permission to the file and the directory containi - + Automated @@ -10956,1075 +15663,664 @@ Please make sure you have read-permission to the file and the directory containi - manageVestigeInstrumentView + ManageVestigeInstrumentView - - + + - VST plugin control - + VST Sync - - + + Automated - + Close - organicInstrument + OrganicInstrument - + Distortion - + Volume - organicInstrumentView + OrganicInstrumentView - + Distortion: - + Volume: - + Randomise - - + + Osc %1 waveform: - + Osc %1 volume: - + Osc %1 panning: - + Osc %1 stereo detuning - + cents - + Osc %1 harmonic: - patchesDialog + PatchesDialog - + Qsynth: Channel Preset - + Bank selector - + Bank - + Program selector - + Patch - + Name - + OK - + Cancel - pluginBrowser + Sf2Instrument - - 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 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 tb303 - - - - - 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. - - - - - 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 - - - - - 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 - - - - - A graphical spectrum analyzer. - - - - - 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 + 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 + SfxrInstrument - + Wave - sidInstrument + StereoEnhancerControlDialog - - Cutoff frequency - - - - - Resonance - - - - - 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 - - - - - MOS8580 SID - - - - - - Attack: - - - - - - Decay: - - - - - Sustain: - - - - - - Release: - - - - - Pulse Width: - - - - - Coarse: - - - - - Pulse wave - - - - - Triangle wave - - - - - Saw wave - - - - - Noise - - - - - Sync - - - - - Ring modulation - - - - - Filtered - - - - - Test - - - - - Pulse width: - - - - - stereoEnhancerControlDialog - - + WIDTH - + Width: - stereoEnhancerControls + StereoEnhancerControls - + Width - stereoMatrixControlDialog + StereoMatrixControlDialog - + Left to Left Vol: - + Left to Right Vol: - + Right to Left Vol: - + Right to Right Vol: - stereoMatrixControls + StereoMatrixControls - + Left to Left - + Left to Right - + Right to Left - + Right to Right - testcontext + VestigeInstrument - - - test string - - - - - - test plural %n - - - - - - - vestigeInstrument - - + Loading plugin - + Please wait while loading the VST plugin... - vibed + 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 + 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 + 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 + 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 + WaveShaperControls - + Input gain - + Output gain diff --git a/data/locale/eo.ts b/data/locale/eo.ts new file mode 100644 index 000000000..005ee8100 --- /dev/null +++ b/data/locale/eo.ts @@ -0,0 +1,16326 @@ + + + AboutDialog + + + About LMMS + Pri LMMSon + + + + LMMS + LMMSo + + + + Version %1 (%2/%3, Qt %4, %5). + Versio %1 (%2/%3, Qt %4, %5). + + + + About + Pri + + + + LMMS - easy music production for everyone. + LMMSo - simpla muzikkreado por ĉiun. + + + + Copyright © %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> + + + + + Authors + Aŭtoroj + + + + Involved + + + + + Contributors ordered by number of commits: + + + + + Translation + Traduki + + + + 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! + + + + + License + Licenco + + + + AmplifierControlDialog + + + VOL + VOL + + + + Volume: + Volumo: + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + AmplifierControls + + + Volume + Volumo + + + + 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) + + + + + &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 + + + + + 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 + + + + + CarlaAboutW + + + About Carla + + + + + About + Pri + + + + About text here + + + + + Extended licensing here + + + + + 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 + Licenco + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Dosiero + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + + + + + toolBar + + + + + Disk + + + + + + Home + cefpaĝo + + + + 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 + + + + + Ctrl+N + + + + + &Open... + &Malfermi... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + &Konservi + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + &Eliri + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + + + + + 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. + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + 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 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: + + + + + 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 + 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 + + + + + Quality settings + + + + + Interpolation: + + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + Oversampling: + + + + + 1x (None) + + + + + 2x + + + + + 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! + + + + + 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% + + + + + Fader + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + Volumo + + + + 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 + + + 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 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 + + + + + + Major + + + + + Majb5 + + + + + minor + + + + + minb5 + + + + + sus2 + + + + + sus4 + + + + + aug + + + + + augsus4 + + + + + tri + + + + + 6 + + + + + 6sus4 + + + + + 6add9 + 6add9 + + + + 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 + + + + + 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 + + + + + InstrumentMiscView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + VOLUMO + + + + Volume + Volumo + + + + 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 + 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 + Volumo + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + InstrumentTrackView + + + Volume + Volumo + + + + Volume: + Volumo: + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 + + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + Volume + Volumo + + + + Volume: + Volumo: + + + + VOL + 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 + KONSERVI + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Miscellaneous + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root directory + + + + + Volumes + + + + + My Computer + + + + + &File + &Dosiero + + + + &New + + + + + &Open... + &Malfermi... + + + + Loading background picture + + + + + &Save + &Konservi + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + &Eliri + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + Pri + + + + 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. + + + + + 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 + + + + 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) + + + + + 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 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Dosiero + + + + &Edit + + + + + &Quit + &Eliri + + + + &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 + + + 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 + Volumo + + + + + + 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 + Volumo + + + + + + 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 + + + + + OK + + + + + Cancel + + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.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 + + + + + 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 + + + + + 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: + + + + + 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 + + + + + + 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 + + + + + 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 + + + + + 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 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 + &Kopii + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + &Alglui + + + + %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 + + + 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: + Dosiero: + + + + RecentProjectsMenu + + + &Recently Opened Projects + + + + + 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 + + + + + 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 + Eltondi + + + + Cut selection + + + + + Copy + Kopii + + + + Copy selection + + + + + Paste + Alglui + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Reverse sample + + + + + Set clip color + + + + + Use track color + + + + + SampleTrack + + + Volume + Volumo + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Channel %1: %2 + + + + + SampleTrackWindow + + + GENERAL SETTINGS + + + + + Sample volume + + + + + Volume: + Volumo: + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + 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 + + + + + + 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 + + + + + Cancel + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + + + + + minute + + + + + Disabled + + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + Volumo + + + + Chip model + + + + + SidInstrumentView + + + Volume: + Volumo: + + + + 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 + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + Maximize + + + + + Restore + + + + + 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 + + + + + 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. + + + + + 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 + Eltondi + + + + Cut selection + + + + + Merge Selection + + + + + Copy + Kopii + + + + Copy selection + + + + + Paste + Alglui + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Set clip color + + + + + Use track color + + + + + TrackContentWidget + + + Paste + Alglui + + + + 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 + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + Volumo + + + + + + + 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 + + + + + Xpressive + + + 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 + Volumo + + + + OrganicInstrumentView + + + Distortion: + + + + + Volume: + Volumo: + + + + 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: + + + + + + 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 + + + + diff --git a/data/locale/es.ts b/data/locale/es.ts index f6cfaf832..4fc4951ef 100644 --- a/data/locale/es.ts +++ b/data/locale/es.ts @@ -2,94 +2,111 @@ AboutDialog + About LMMS Acerca de LMMS - Version %1 (%2/%3, Qt %4, %5) - Versión %1 (%2/%3, Qt %4, %5) - - - About - Acerca de - - - LMMS - easy music production for everyone - LMMS - producción musical fácil al alcance de todos - - - Authors - Autores - - - Translation - Traducción - - - 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! - Traducido al Español por Mariano Macri (Contacto: gnu.mariano.macri@gmail.com) - -Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existentes, ¡tu ayuda será bienvenida! -¡Simplemente ponte en contacto con el encargado del proyecto! - - - License - Licencia - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + Versión %1 (%2/%3, Qt %4, %5). + + + + About + Acerca de + + + + LMMS - easy music production for everyone. + LMMS - producción musical fácil para todos. + + + + Copyright © %1. + Copyright © %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> + + + + Authors + Autores + + + Involved Han contribuído + Contributors ordered by number of commits: Colaboradores (ordenados por el número de contribuciones): - Copyright © %1 - Copyright © %1 + + Translation + Traducción - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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! + + + + + License + Licencia AmplifierControlDialog + VOL VOL + Volume: Volumen: + PAN PAN + Panning: Paneo: + LEFT IZQ + Left gain: Ganancia izquierda: + RIGHT DER + Right gain: Ganancia derecha: @@ -97,18 +114,22 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent AmplifierControls + Volume Volumen + Panning Paneo + Left gain Ganacia izquierda + Right gain Ganancia derecha @@ -116,10 +137,12 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent AudioAlsaSetupWidget + DEVICE DISPOSITIVO + CHANNELS CANALES @@ -127,85 +150,60 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent AudioFileProcessorView - Open other sample - Abrir otra muestra - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Haz click aquí si quieres abrir otro archivo de audio. Aparecerá un diálogo donde podrás seleccionar el archivo que desees. Se mantendrán las configuraciones que hayas elegido previamente tales como el modo de repetición (bucle), marcas de inicio y final, amplificación, etc. Por lo tanto, tal vez no sonará igual que la muestra original. + + Open sample + Abrir muestra + Reverse sample Reproducir la muestra en reversa - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Si activas este botón, la muestra se reproducirá en reversa. Esto es útil para lograr efectos interesantes, por ejemplo el sonido de un platillo en reversa. - - - Amplify: - Amplificar: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Con esta perilla puedes establecer la proporción de amplificación. Con un valor de 100% tu muestra no ha cambiado. Valores superiores al 100% amplificarán tu muestra y valores menores tendrán el efecto contrario (¡el archivo original de tu muestra no se modificará!) - - - Startpoint: - Inicio: - - - Endpoint: - Fin: - - - Continue sample playback across notes - Reproducción continua a través de las notas - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Activando esta opción la muestra se ejecutará a lo largo de las distintas notas. Si cambias la altura o la nota termina antes que la muestra, la nota siguente reproducirá la muestra desde el lugar en que la nota anterior terminó. Para reiniciar la reproducción desde el principio de la muestra, inserta una nota en el extremo grave del teclado (< 20 Hz) - - + Disable loop Desactivar bucle - This button disables looping. The sample plays only once from start to end. - Este botón desactiva la reproducción en bucle. La muestra es reproducida una sola vez del comienzo hasta el final. - - + Enable loop Activar bucle - This button enables forwards-looping. The sample loops between the end point and the loop point. - Este botón activa el bucle hacia adelante. La muestra se repite entre el punto final y el inicio del bucle (no el de la muestra). + + Enable ping-pong loop + - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Este botón activa el bucle en ping-pong. La muestra se reproduce en bucle hacia atrás y hacia adelante entre el punto final y el inicio del bucle. + + Continue sample playback across notes + Reproducción continua a través de las notas - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Con esta perilla puedes definir el punto a partir del cual el AudioFileProcessor debe comenzar a reproducir tu muestra. + + Amplify: + Amplificar: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Con esta perilla puedes definir el punto hasta donde el AudioFileProcessor debe reproducir tu muestra. + + Start point: + + + End point: + + + + Loopback point: Inicio del bucle: - - With this knob you can set the point where the loop starts. - Con esta perilla puedes elegir el punto en el que comienza el bucle. - AudioFileProcessorWaveView + Sample length: Longitud de la muestra: @@ -213,447 +211,469 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent 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 - NOMBRE-DEL-CLIENTE + + Client name + - CHANNELS - CANALES + + Channels + Canales - AudioOss::setupWidget + AudioOss - DEVICE - DISPOSITIVO + + Device + - CHANNELS - CANALES + + Channels + Canales AudioPortAudio::setupWidget - BACKEND - MOTOR + + Backend + - DEVICE - DISPOSITIVO + + Device + - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - DISPOSITIVO + + Device + - CHANNELS - CANALES + + Channels + Canales AudioSdl::setupWidget - DEVICE - DISPOSITIVO + + Device + - AudioSndio::setupWidget + AudioSndio - DEVICE - DISPOSITIVO + + Device + - CHANNELS - CANALES + + Channels + Canales AudioSoundIo::setupWidget - BACKEND - MOTOR + + Backend + - DEVICE - DISPOSITIVO + + 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 - 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... - - + 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 - Please open an automation pattern with the context menu of a control! + + 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! - - Values copied - Valores copiados - - - All selected values were copied to the clipboard. - Los valores seleccionados se han copiado al portapapeles. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) Reproducir/Pausar el patrón actual (Espacio) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Haz click aquí para reproducir el patrón actual. Te será útil para editarlo. El patrón se reproducirá automáticamente en bucle al llegar al final. - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Detener la reproducción del patrón actual (Espacio) - Click here if you want to stop playing of the current pattern. - Haz click aquí si deseas detener la reproducción del patrón actual. - - - Draw mode (Shift+D) - Modo de dibujo (Shift+D) - - - Erase mode (Shift+E) - Modo de borrado (Shift+E) - - - Flip vertically - Voltear verticalmente - - - Flip horizontally - Voltear horizontalmente - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Haz click aquí para invertir el patrón. Los puntos se voltearán el el eje y. - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Haz click aquí para retrogradar el patrón. Los puntos se volterán en el eje x. - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Haz click aquí para activar el modo de dibujo. En este modo puedes añadir y mover valores individuales. Este es el modo por defecto y el que se usa la mayoría de las veces. También puedes activar este modo desde el teclado presionando 'shift+D'. - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Haz click aquí para activar el modo de borrado. En este modo puedes borrar valores individuales. Puedes activar este modo desde el teclado presionando 'Shift+E'. - - - 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 - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Un valor de alta tensión hará una curva más suave pero exederá ciertos valores. Un valor de baja tensión provocará que la pendiente de la curva se estabilice en cada punto de control. - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Haz click aquí para seleccionar la interpolación escalonada para este patrón de automatización. El valor afectado permanecerá constante entre los puntos de control y pasará inmediatamente al nuevo valor al alcanczar cada nuevo punto de control. - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Haz click aquí para seleccionar interpolación lineal para este patrón de automatización.El valor afectado cambiará de manera constante entre los puntos de control para alcanzar el valor correcto en cada punto sin cambios súbitos entre ellos. - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Haz click aquí para seleccionar la interpolación de Hermite para este patrón. El valor afectado cambiará formando una curva uniforme y suavizará los extremos altos y bajos. - - - Cut selected values (%1+X) - Cortar los valores seleccionados (%1+X) - - - Copy selected values (%1+C) - Copiar los valores seleccionados (%1+C) - - - Paste values from clipboard (%1+V) - Pegar desde el portapapeles (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Haz click aquí y los valores seleccionados se moverán al portapapeles. Puedes pegarlos en cualquier lugar de cualquier patrón haciendo click en el botón "pegar". - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Haz click aquí y los valores seleccionados se copiarán al portapapeles. Puedes pegarlos en cualquier lugar de cualquier patrón haciendo click en el botón "pegar". - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Haz click aquí para pegar el contenido del portapapeles en el primer compás visible. - - - Tension: - Tensión: - - - Automation Editor - no pattern - Editor de Automatización - no hay patrón - - - Automation Editor - %1 - Editor de Automatización - %1 - - + 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 - Timeline controls - Controles de la línea de Tiempo + + 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 - Model is already connected to this pattern. - El modelo ya está conectado a este patrón. - - + Quantization Cuantización - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Cuantización. Define el tamaño mínimo del paso para el Punto de Automatización. Por defecto esto también define la longitud, quitando otros puntos a su alcance. Presiona <Ctrl> para anular este comportamiento. + + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> Arrastre un control mientras presiona <%1> - AutomationPatternView + AutomationClipView + Open in Automation editor Abrir en el editor de Automatización + Clear Limpiar + Reset name Restaurar nombre + Change name Cambiar nombre - %1 Connections - %1 Conexiones - - - Disconnect "%1" - Desconectar "%1" - - + Set/clear record Activar/Desactivar grabación + Flip Vertically (Visible) Voltear verticalmente (Visible) + Flip Horizontally (Visible) Voltear horizontalmente (Visible) - Model is already connected to this pattern. + + %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 - BBEditor + 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) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Haz click aquí para reproducir el Ritmo/Bajo actual. El Ritmo/bajo se reproducirá automáticamente desde el principio cada vez que llegue al final. - - - Click here to stop playing of current beat/bassline. - Haz click aquí para detener el Ritmo/Bajo actual. - - - Add beat/bassline - Agregar Ritmo/bajo - - - Add automation-track - Agregar pista de Automatización - - - Remove steps - Quitar pasos - - - Add steps - Agregar pasos - - + Beat selector Selector de ritmo + Track and step actions Acciones de pista y pasos - Clone Steps - Clonar 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 + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor Abrir en Editor de Ritmo+Bajo + Reset name Restaurar nombre + Change name Cambiar nombre - - Change color - Cambiar color - - - Reset color to default - Restaurar el color por defecto - - BBTrack + PatternTrack + Beat/Bassline %1 Ritmo/Bajo %1 + Clone of %1 Clon de %1 @@ -661,26 +681,32 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent BassBoosterControlDialog + FREQ FREC + Frequency: Frecuencia: + GAIN GAN + Gain: Ganancia: + RATIO RAZÓN + Ratio: Razón: @@ -688,14 +714,17 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent BassBoosterControls + Frequency Frecuencia + Gain Ganancia + Ratio Razón @@ -703,107 +732,2344 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent BitcrushControlDialog + IN - IN + ENTRADA + OUT - OUT + SALIDA + + GAIN GAN - Input Gain: + + Input gain: Ganancia de Entrada: - Input Noise: - Ruido de entrada: - - - Output Gain: - Ganancia de Salida: - - - CLIP - CLIP - - - Output Clip: - Recorte de salida: - - - Rate Enabled - Tasa Habilitada - - - Enable samplerate-crushing - Habilitar reduccion de frecuencia de muestreo - - - Depth Enabled - Profundidad Habilitada - - - Enable bitdepth-crushing - Habilitar reducción de profundidad bits - - - Sample rate: - Frecuencia de Muestreo: - - - Stereo difference: - Diferencia estéreo: - - - Levels: - Niveles: - - + 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: + - CaptionMenu + BitcrushControls - &Help - &Ayuda + + Input gain + Ganancia de entrada - Help (not available) - Ayuda (no disponible) + + Input noise + + + + + Output gain + Ganancia de salida + + + + Output clip + + + + + Sample rate + Frecuencia de muestreo + + + + Stereo difference + + + + + Levels + Niveles + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + Acerca de + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + 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 + + + + + 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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - Haz click aquí para mostrar u ocultar la interfaz gráfica de usuario (IGU) de Carla. + + Settings + Configuración + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + Lugares + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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: + 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 @@ -811,58 +3077,73 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent 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. @@ -870,18 +3151,22 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent 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. @@ -889,116 +3174,158 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent ControllerView + Controls Controles - Controllers are able to automate the value of a knob, slider, and other controls. - Los controladores pueden automatizar el valor de una perilla, un deslizador, y otros 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 - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: - Filtro de cruce Banda 1/2: + + Band 1/2 crossover: + - Band 2/3 Crossover: - Filtro de cruce Banda 2/3: + + Band 2/3 crossover: + - Band 3/4 Crossover: - Filtro de cruce Banda 3/4: + + Band 3/4 crossover: + - Band 1 Gain: - Banda 1 Ganancia: + + Band 1 gain + - Band 2 Gain: - Banda 2 Ganancia: + + Band 1 gain: + - Band 3 Gain: - Banda 3 Ganancia: + + Band 2 gain + - Band 4 Gain: - Banda 4 Ganancia: + + Band 2 gain: + - Band 1 Mute - Banda 1 Silencio + + Band 3 gain + - Mute Band 1 - Silenciar Banda 1 + + Band 3 gain: + - Band 2 Mute - Banda 2 Silencio + + Band 4 gain + - Mute Band 2 - Silenciar Banda 2 + + Band 4 gain: + - Band 3 Mute - Banda 3 Silencio + + Band 1 mute + - Mute Band 3 - Silenciar Banda 3 + + Mute band 1 + - Band 4 Mute - Banda 4 Silencio + + Band 2 mute + - Mute Band 4 - Silenciar Banda 4 + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + DelayControls - Delay Samples - Retrasar muestras + + Delay samples + Muestras de retardo + Feedback Realimentacion - Lfo Frequency - Frecuencia LFO + + LFO frequency + - Lfo Amount - Cantidad LFO + + LFO amount + + Output gain Ganancia de salida @@ -1006,228 +3333,528 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent DelayControlsDialog - Lfo Amt - Lfo cant - - - Delay Time - Tiempo de retraso - - - Feedback Amount - Cantidad de realimentacion - - - Lfo - Lfo - - - Out Gain - Ganancia de salida - - - Gain - Ganancia - - + DELAY - 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 + + + + + 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: + Frecuencia de Muestreo: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + + DualFilterControlDialog - Filter 1 enabled - Filtro 1 activado - - - Filter 2 enabled - Filtro 2 activado - - - Click to enable/disable Filter 1 - Haz click para activar o desactivar el Filtro 1 - - - Click to enable/disable Filter 2 - Haz click para activar o desactivar el Filtro 2 - - + + 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 1 frequency - Frecuencia de corte 1 + + 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 2 frequency - Frecuencia de corte 2 + + Cutoff frequency 2 + + Q/Resonance 2 Q/Resonancia 2 + Gain 2 Ganancia 2 - LowPass - PasoBajo + + + Low-pass + - HiPass - PasoAlto + + + Hi-pass + - BandPass csg - PasoBanda csg + + + Band-pass csg + - BandPass czpg - PasoBanda czpg + + + Band-pass czpg + + + Notch Notch - Allpass - PasaTodo + + + All-pass + + + Moog Moog - 2x LowPass - 2x PasoBajo + + + 2x Low-pass + - RC LowPass 12dB - RC PasoBajo 12 dB + + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC PasoBanda 12 dB + + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC PasoAlto 12 dB + + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC PasoBajo 24dB + + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC PasoBanda 24dB + + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC PasoAlto 24dB + + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filtro de Formante Vocal + + + Vocal Formant + + + 2x Moog 2x Moog - SV LowPass - SV PasoBajo + + + SV Low-pass + - SV BandPass - SV PasoBanda + + + SV Band-pass + - SV HighPass - SV PasoAlto + + + SV High-pass + + + SV Notch SV Notch + + Fast Formant Formante Rápido + + Tripole Tripolar @@ -1235,41 +3862,55 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent Editor + + Transport controls + Controles de Transporte + + + Play (Space) Reproducir (Espacio) + Stop (Space) Detener (Espacio) + Record Grabar + Record while playing Grabar reproduciendo - Transport controls - Controles de Transporte + + Toggle Step Recording + Effect + Effect enabled Efecto activado + Wet/Dry mix Mezcla Wet/Dry + Gate Puerta + Decay Caída @@ -1277,6 +3918,7 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent EffectChain + Effects enabled Efectos activados @@ -1284,10 +3926,12 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent EffectRackView + EFFECTS CHAIN CADENA DE EFECTOS + Add effect Añadir efecto @@ -1295,22 +3939,28 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent EffectSelectDialog + Add effect Añadir efecto + + Name Nombre + Type Tipo + Description Descripción + Author Autor @@ -1318,90 +3968,57 @@ Si te interesa traducir LMMS a otros idiomas o mejorar las traducciones existent EffectView - Toggles the effect on or off. - Conmuta el efecto entre Encendido y Apagado. - - + On/Off Encendido/Apagado + W/D W/D + Wet Level: NIvel de efecto: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - El selector Wet/Dry determina la razón entre la señal de origen y la señal procesada por el efecto, que conforman la señal de salida. - - + DECAY CAÍDA + Time: Tiempo: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - La perilla de Caída controla cuantos búferes de silencio deben pasar antes de que el complemento deje de procesar. Valores pequeños reducen la carga del procesador (CPU) pero corres el riesgo de recorte (clipping) en los efectos de Retraso (delay) y Reverberancia. - - + GATE PUERTA + Gate: Puerta: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - La perilla "Puerta" controla el nivel de la señal que deberá ser considerado como 'silencio' al decidir cuando dejar de procesar señales. - - + Controls Controles - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Los complementos de efectos funcionan como una serie de efectos encadenados a través de los cuales la señal será procesada desde arriba hacia abajo. - -El selector "Encendito/Apagado" te permite desactivar un complemento dado en cualquier punto del tiempo. - -La perilla "Wet/Dry" te permite controlar el balance entre la señal de entrada (sin efecto) y la señal con efecto, formando así la señal de salida. La señal de entrada de una etapa es la señal de salida de la etapa anterior, por lo que la señal "dry" (sin efecto) de la última etapa contiene todos los efectos previos. - -La perilla de Caída controla por cuanto tiempo la señal continuará siendo procesada luego de soltar las notas (Disipación). El efecto dejará de procesar las señales cuando el volumen esté por debajo del umbral dado para un tiempo dado. Esta perilla configura el "tiempo dado". Valores mas altos requieren más CPU, por lo que se recomienda usar valores bajos para la mayoría de los efectos. Se deben usar valores mas altos para efectos que producen períodos largos de silencio, como los Delays. - -La perilla "puerta" controla el "umbral dado" para el auto-apagado del efecto. El reloj del "tiempo-dado" se iniciará tan pronto la señal procesada caiga debajo del umbral especificado por esta perilla. - -El botón "Controles" abre un diálogo para editar los parámetros de los efectos. - -Haciendo click derecho accederás a un menú contextual en el que podrás cambiar el orden en el que se procesan los efectos y también borrar completamente un efecto. - - + Move &up Mover arriba (&U) + Move &down Mover abajo (&D) + &Remove this plugin Quita&r este complemento @@ -1409,408 +4026,409 @@ Haciendo click derecho accederás a un menú contextual en el que podrás cambia EnvelopeAndLfoParameters - Predelay - Pre-retraso + + Env pre-delay + - Attack - Ataque + + Env attack + - Hold - Mantener + + Env hold + - Decay - Caída + + Env decay + - Sustain - Sostenido + + Env sustain + - Release - Disipación + + Env release + - Modulation - Modulación + + Env mod amount + - LFO Predelay - Pre-retraso del LFO + + LFO pre-delay + - LFO Attack - Ataque del LFO + + LFO attack + - LFO speed - Velocidad del LFO + + LFO frequency + - LFO Modulation - Modulación del LFO + + LFO mod amount + - LFO Wave Shape - Forma de onda del LFO + + LFO wave shape + - Freq x 100 - Frec x 100 + + LFO frequency x 100 + - Modulate Env-Amount - Modular Cant-Env + + Modulate env amount + EnvelopeAndLfoView + + DEL RETR - Predelay: - Pre retraso: - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Usa este control para configurar el pre-retraso de la envolvente actual. A mayor valor mayor el tiempo antes del inicio de la envolvente actual. + + + Pre-delay: + + + ATT ATA + + Attack: Ataque: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Usa este control para configurar el tiempo de ataque de la envolvente actual. A mayor valor mayor tiempo necesitará la envolvente para alcanzar el nivel de ataque. Escoje un valor pequeño para instrumentos como pianos y alto para cuerdas. - - + HOLD MANT + Hold: Mantener: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Usa este control para configurar el tiempo de mantenimiento de la envolvente actual. A mayor valor mayor tiempo se mantendrá el nivel de ataque hasta que comience a disminuir hasta el nivel de sostenido. - - + DEC CAI + Decay: Caída: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Usa este control para configurar el tiempo de caída de la envolvente actual. A mayor valor mayor tiempo necesitará la envolvente para pasar del nivel de ataque al de sostenido. Escoje un valor pequeño para instrumentos como pianos. - - + SUST SOST + Sustain: Sostenido: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Usa este control para configurar el nivel de sostenido de la envolvente actual. Mientras mayor sea este valor, más altor será el nivel al que se mantendrá la envolvente antes de disiparse. - - + REL DIS + Release: Disipación: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Usa este control para configurar el intervalo de Disipación de la envolvente actual. A mayor valor, la envolvente necesitará más tiempo para pasar del nivel de sostenido a cero. Escoje un valor grande para instrumentos suaves como cuerdas. - - + + AMT CANT + + Modulation amount: Cantidad de modulación: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Usa esta perilla para configurar la cantidad de modulación de la envolvente actual. Mientras más alto sea este valor, mayor será la infuencia de la envolvente sobre, por ej., el volumen o la frecuencia de corte. - - - LFO predelay: - pre-retraso del LFO: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Usa este control para configurar el pre-retraso del LFO actual. A mayor valor, mayor el tiempo hasta que el LFO comience a oscilar. - - - LFO- attack: - ataque del LFO: - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Usa este control para configurar el tiempo de ataque del LFO actual. A mayor valor mayor tiempo necesitara el LFO para aumentar su amplitud al máximo. - - + SPD VEL - LFO speed: - velocidad del LFO: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Usa esta perilla para configurar la velocidad de este LFO. A mayor valor, mayor la velocidad de oscilación del LFO y mayor la velocidad del efecto. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Usa esta perilla para configurar la cantidad de modulación de este LFO. A mayores valores, mayor será la infuencia que ejercerá este oscilador (LFO) sobre la propiedad seleccionada (por ej.: el volumen o la frecuencia de corte). - - - Click here for a sine-wave. - Haz click aquí para seleccionar una onda-sinusoidal. - - - Click here for a triangle-wave. - Haz click aquí para seleccionar una onda triangular. - - - Click here for a saw-wave for current. - Haz click aquí para seleccionar una onda de sierra. - - - Click here for a square-wave. - Haz click aquí para seleccionar una onda cuadrada. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Haz click aquí para elegir una onda definida por el usuario. Luego arrastra una muestra adecuada sobre el gráfico LFO. + + Frequency: + Frecuencia: + FREQ x 100 FREC x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Haz click aquí para multiplicar por 100 la frecuencia de este oscilador LFO. + + Multiply LFO frequency by 100 + - multiply LFO-frequency by 100 - multiplicar frecuencia del LFO por 100 + + MODULATE ENV AMOUNT + - MODULATE ENV-AMOUNT - MODULAR CANT-DE-ENV - - - Click here to make the envelope-amount controlled by this LFO. - Haz click aquí para que la cantidad de envolvente sea controlada por este LFO. - - - control envelope-amount by this LFO - controla la cantidad de envolvente a través de este LFO + + Control envelope amount by this LFO + + ms/LFO: ms/LFO: + Hint Pista - Drag a sample from somewhere and drop it in this window. - Arrastra una muestra desde cualquier lugar y suéltala en esta ventana. - - - Click here for random wave. - Haz click aquí para seleccionar una onda aleatoria. + + 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 - Ganancia de la meseta de bajos + + 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 - Ganancia de la meseta de agudos + + High-shelf gain + + HP res PasoAlto res - Low Shelf res - Meseta de Bajos 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 - Meseta de Agudos res + + High-shelf res + + LP res PasoBajo res + HP freq PasoAlto frec - Low Shelf freq - Meseta de Bajos 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 - Meseta de Agudos frec + + High-shelf freq + + LP freq PasoBajo frec + HP active PasoAlto activo - Low shelf active - Meseta de Bajos activa + + 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 - Meseta de Agudos activa + + 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 - tipo paso bajo + + Low-pass type + - high pass type - tipo paso alto + + High-pass type + + Analyse IN Analizar ENTRADA + Analyse OUT Analizar SALIDA @@ -1818,85 +4436,108 @@ Haciendo click derecho accederás a un menú contextual en el que podrás cambia EqControlsDialog + HP PA - Low Shelf - Meseta de Bajos + + Low-shelf + + Peak 1 Pico 1 + Peak 2 Pico 2 + Peak 3 Pico 3 + Peak 4 Pico 4 - High Shelf - Meseta de Agudos + + High-shelf + + LP PB - In Gain + + Input gain Ganancia de entrada + + + Gain Ganancia - Out Gain + + Output gain Ganancia de salida + Bandwidth: AnchoDeBanda: + + Octave + Octava + + + Resonance : Resonancia : + Frequency: Frecuencia: - lp grp - grupo PB + + LP group + - hp grp - grupo PA - - - Octave - Octava + + HP group + EqHandle + Reso: Reso: + BW: AB: + + Freq: Frec: @@ -1904,254 +4545,272 @@ Haciendo click derecho accederás a un menú contextual en el que podrás cambia ExportProjectDialog + Export project Exportar proyecto - Output - Salida - - - File format: - Tipo de archivo: - - - Samplerate: - Frecuencia de muestreo: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Tasa de bits: - - - 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 - - - Depth: - Profundidad: - - - 16 Bit Integer - 16 Bits Entero - - - 32 Bit Float - 32 Bit Decimal - - - Quality settings - Configuración de calidad - - - Interpolation: - Interpolación: - - - Zero Order Hold - Zero Order Hold - - - Sinc Fastest - Sinc-Rapidísimo - - - Sinc Medium (recommended) - Sinc-Medio (recomendado) - - - Sinc Best (very slow!) - Sinc Superior (¡muy lento!) - - - Oversampling (use with care!): - Sobremuestreo (¡usar con cuidado!): - - - 1x (None) - 1x (Ninguno) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Comenzar - - - Cancel - Cancelar - - - Export as loop (remove end silence) - Exportar como bucle (quitar silencio al final) + + Export as loop (remove extra bar) + + Export between loop markers Exportar el area contenida entre los marcadores de bucle + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + Tipo de archivo: + + + + Sampling rate: + Tasa de muestreo: + + + + 44100 Hz + 44100 Hz + + + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Profundidad de bits: + + + + 16 Bit integer + + + + + 24 Bit integer + + + + + 32 Bit float + + + + + Stereo mode: + MODO ESTÉREO: + + + + Mono + Mono + + + + Stereo + Estéreo + + + + Joint stereo + + + + + Compression level: + Compresor De Niveles: + + + + Bitrate: + Tasa de bits: + + + + 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 + Usar tasa de bits variable + + + + Quality settings + Configuración de calidad + + + + Interpolation: + Interpolación: + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + 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 - Export project to %1 - Exportar proyecto a %1 - - - 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% - - + 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. - 24 Bit Integer - 24 Bits Entero + + Export project to %1 + Exportar proyecto a %1 - Use variable bitrate - Usar tasa de bits variable + + ( Fastest - biggest ) + - Stereo mode: - MODO ESTÉREO: + + ( Slowest - smallest ) + - Stereo - Estéreo + + Error + Error - Joint Stereo - Conjunto De Estéreo: + + 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. - Mono - Mono - - - Compression level: - Compresor De Niveles: - - - (fastest) - (Rápido) - - - (default) - (Por Defecto) - - - (smallest) - (Reducir) - - - - Expressive - - Selected graph - Gráfico seleccionado - - - A1 - A1 - - - A2 - A2 - - - A3 - A3 - - - W1 smoothing - W1 Suavizadora - - - W2 smoothing - W2 Suavizadora - - - W3 smoothing - W3 Suavizadora - - - PAN1 - PAN1 - - - PAN2 - PAN2 - - - REL TRANS - REL TRANS + + 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: @@ -2159,14 +4818,27 @@ Asegúrate de tener permisos de escritura tanto del archivo como del directorio FileBrowser + + User content + + + + + Factory content + + + + Browser Explorador + Search Buscar + Refresh list Actualizar Lista @@ -2174,65 +4846,105 @@ Asegúrate de tener permisos de escritura tanto del archivo como del directorio FileBrowserTreeWidget + Send to active instrument-track Enviar a la pista de instrumento activa - Open in new instrument-track/B+B Editor - Abrir en la nueva pista de instrumento/Editor de R+B + + 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... - --- Factory files --- - --- Archivos de Fábrica --- - - - Open in new instrument-track/Song Editor - Abrir en una nueva pista de instrumento/Editor de canción - - + Error Error - does not appear to be a valid - no parece ser válido + + %1 does not appear to be a valid %2 file + - file - archivo + + --- Factory files --- + --- Archivos de Fábrica --- FlangerControls - Delay Samples - Muestras de retraso + + Delay samples + Muestras de retardo - Lfo Frequency - Frecuencia LFO + + LFO frequency + + Seconds Segundos + + Stereo phase + + + + Regen Intensidad + Noise Ruido + Invert Invertir @@ -2240,145 +4952,516 @@ Asegúrate de tener permisos de escritura tanto del archivo como del directorio FlangerControlsDialog - Delay Time: - Tiempo de retraso : - - - Feedback Amount: - Cantidad de realimentación: - - - White Noise Amount: - Cantidad de Ruido Blanco: - - + 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 - Period: - Period: + + 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 - FxLine + 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 + + + + + MixerLine + + Channel send amount Cantidad de envío del canal - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - El canal FX recive la señal de una o más pistas de instrumento. -A su vez, puede ser enviado a través de múltiples canales FX diferentes. LMMS automáticamente se ocupa de evitar bucles infinitos por ti y no te permitirá realizar una conexión que genere un bucle infinito. - -Para enviar un canal hacia otro canal, escoje el canal FX deseado y haz click en el botón de "envío" del canal al cual deseas enviar. La perilla bajo el botón de envío controla el nivel de la señal que es enviada al canal. - -Puedes quitar y mover los canales FX a través del menú contextual. Accede a este menú haciendo click derecho en el canal FX. - - + 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 + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + Asignar a: + + + + New mixer Channel + Nuevo Canal FX + + + + Mixer + + Master Maestro - FX %1 + + + + Channel %1 FX %1 + Volume Volumen + Mute Silencio + Solo Solo - FxMixerView + MixerView - FX-Mixer + + Mixer Mezcladora FX - FX Fader %1 + + Fader %1 Fader FX %1 + Mute Silencio - Mute this FX channel + + Mute this mixer channel Silenciar este canal FX + Solo Solo - Solo FX channel + + Solo mixer channel Canal FX Solo - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 Cantidad de envío del canal %1 al canal %2 @@ -2386,14 +5469,17 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es GigInstrument + Bank Banco + Patch Ajuste + Gain Ganancia @@ -2401,46 +5487,23 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es GigInstrumentView - Open other GIG file - Abrir otro archivo GIG - - - Click here to open another GIG file - Haz click aquí para abrir otro archivo GIG - - - Choose the patch - Elige el ajuste (patch) - - - Click here to change which patch of the GIG file to use - Haz click aquí para cambiar el ajuste en uso del archivo GIG - - - Change which instrument of the GIG file is being played - Cambiar el instrumento en uso del archivo GIG - - - Which GIG file is currently being used - Qué archivo GIG se esta usando en este momento - - - Which patch of the GIG file is currently being used - Qué ajuste del archivo GIG se esta usando en este momento - - - Gain - Ganancia - - - Factor to multiply samples by - Factor por el cual multiplicar las muestras - - + + Open GIG file Abrir archivo GIG + + Choose patch + + + + + Gain: + Ganancia: + + + GIG Files (*.gig) Archivos GIG (*.gig) @@ -2448,42 +5511,52 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es 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 @@ -2491,650 +5564,798 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es InstrumentFunctionArpeggio + Arpeggio Arpegio + Arpeggio type tipo de arpegio + Arpeggio range Extensión del arpegio - Arpeggio time - Duración del arpegio + + Note repeats + - 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 - - - Random - Aleatorio - - - Free - Libre - - - Sort - Ordenado - - - Sync - Sincronizado - - - Down and up - Abajo y arriba + + Cycle steps + Ciclar pasos + Skip rate Tasa de salto + Miss rate Tasa de omisión - Cycle steps - Ciclar pasos + + 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 - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Un arpegio es una forma de tocar las notas de un acorde, de una a la vez en un orden ascendente o descendente (o ambos combinados), en lugar de tocar todas las notas del acorde al mismo tiempo. Los arpegios más usados se corresponden a las tríadas mayores y menores, pero hay muchos acordes más que puedes elegir.NOTA del traductor: el nombre arpegio viene de "arpa", instrumento en el cual los acordes se suelen tocar de esta manera. - - + RANGE EXTENSIÓN + Arpeggio range: Extensión del arpegio: + octave(s) octava(s) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Usa esta perilla para configurar la extensión del arpegio en octavas. El arpegio seleccionado se ejecutará dentro de las octavas especificadas. + + REP + - TIME - DURACIÓN + + Note repeats: + - Arpeggio time: - Duración de las notas (ms): - - - ms - ms - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Usa esta perilla para configurar la duración de cada nota del arpegio en milisegundos (ms). - - - GATE - PUERTA - - - Arpeggio gate: - Puerta del arpegio: - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Usa esta perilla para configurar la puerta del arpegio, es decir, la duración relativa de cada nota. Con un valor de 100 por ciento cada nota dura el tiempo especificado en DURACIÓN. Con valores menores, cada nota terminará antes de pasar a la siguiente (staccato) y con valores mayores cada nota seguirá sonando superponiéndose a la siguiente. - - - Chord: - Acorde: - - - Direction: - Dirección: - - - Mode: - Modo: - - - SKIP - SALTAR - - - Skip rate: - Tasa de salto: - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - "Saltar" hace que el arpegiador se detenga momentáneamente en un paso de manera aleatoria. En su posición inicial no produce ningún efecto. Desde allí, el efecto se incrementa gradualmente, llegando a una amnesia total en su configuración máxima. - - - MISS - OMITIR - - - Miss rate: - Tasa de omisión: - - - The miss function will make the arpeggiator miss the intended note. - "Omitir" hace que el arpegiador pase por alto la nota deseada. + + time(s) + + CYCLE CICLO + Cycle notes: Ciclar notas: + note(s) nota(s) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - Salta "n" pasos y circula a través de las notas del arpegio si se encuentra por encima de la extensión dada. Si la extensión es divisible por el número de pasos 'saltados' quedarás atascado en un arpegio más corto o incluso en una sola nota. + + 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 - Phrygolydian - modo Frigio + + Phrygian + Frigio + Lydian modo Lidio + Mixolydian modo Mixolidio + Aeolian modo Eólico + Locrian modo Locrio - Chords - Acordes - - - Chord type - Tipo de acorde - - - Chord range - Extensión del acorde - - + 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 - RANGE - EXTENSIÓN - - - Chord range: - Extensión del acorde: - - - octave(s) - octava(s) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Usa esta perilla para definir la extensión del acorde en octavas. El acorde elegido se ejecutará dentro de la extensión especificada. - - + 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 - CHANNEL - CANAL - - - VELOCITY - VELOCIDAD - - + ENABLE MIDI OUTPUT HABILITAR SALIDA MIDI - PROGRAM - PROGRAMA + + + 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 - NOTE - NOTA - - + CUSTOM BASE VELOCITY VELOCIDAD BÁSICA PERSONALIZADA - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - Especifica la base de normalización de velocidad para los instrumentos basados en MIDI a una velocidad de nota del 100% + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + + BASE VELOCITY VELOCIDAD BÁSICA @@ -3142,137 +6363,171 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es InstrumentMiscView + MASTER PITCH TRANSPORTE - Enables the use of Master Pitch - Habilitar el uso del 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 - LowPass - PasoBajo + + Low-pass + - HiPass - PasoAlto + + Hi-pass + - BandPass csg - PasoBanda csg + + Band-pass csg + - BandPass czpg - PasoBanda czpg + + Band-pass czpg + + Notch Notch - Allpass - PasaTodo + + All-pass + + Moog Moog - 2x LowPass - 2x PasoBajo + + 2x Low-pass + - RC LowPass 12dB - RC PasoBajo 12 dB + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC PasoBanda 12 dB + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC PasoAlto 12 dB + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC PasoBajo 24dB + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC PasoBanda 24dB + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC PasoAlto 24dB + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filtro de Formante Vocal + + Vocal Formant + + 2x Moog 2x Moog - SV LowPass - SV PasoBajo + + SV Low-pass + - SV BandPass - SV PasoBanda + + SV Band-pass + - SV HighPass - SV PasoAlto + + SV High-pass + + SV Notch SV Notch + Fast Formant Formante Rápido + Tripole Tripolar @@ -3280,50 +6535,42 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es InstrumentSoundShapingView + TARGET DESTINO - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Esta pestaña contiene envolventes. Las envolventes son muy importantes para modificar un sonido, pues son casi siempre necesarias para la síntesis sustractiva. Por ejemplo, si tienes una envolvente de volumen, puedes defifnir en que momento el sonido alcanza un volumen determinado. Si quieres crear una sección de cuerdas suave, necesitarás un crescendo y un diminuendo muy suave. Puedes lograr esto definiendo una duración larga tanto para el ataque como para la Disipación. De la misma manera puedes manipular otras envolventes como "paneo", frecuencia de corte de un filtro usado, etc. ¡Simplemente juega un poco con esto! Puedes crear sonidos asombrosos partiendo de una onda de sierra con sólo algunas envolventes ...! - - + FILTER FILTRO - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Aquí puedes elegir, entre los filtros integrados, aquel que quieras usar para esta pista de instrumento. Los filtros son muy importantes para cambiar las características del sonido. - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Usa esta perilla para definir la frecuencia de corte del filtro seleccionado. La frecuencia de corte define la frecuencia en la que el filtro corta la señal. Por ejemplo, un filtro de PasoBajo cortará todas las frecuencias por encima de la "frecuencia de corte" (sólo deja pasar aquellas frecuencias que estén por debajo, de ahí "paso bajo"). Un filtro de "paso alto" corta todas las frecuencias que estén por debajo de la frecuencia de corte, etc ... - - - RESO - RESO - - - Resonance: - Resonancia: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Usa esta perilla para defifnir la Resonancia (Q) para el filtro elegido, (esto es, el ancho de banda alrededor de la frecuencia de corte elegida). La Resonancia le dice al filtro que tanto debe amplificar aquellas frecuencias cercanas a la Frecuencia de Corte. - - + FREQ FREC - cutoff frequency: - frecuencia de corte: + + Cutoff frequency: + Frecuencia de corte: + + Hz + Hz + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. Envolventes, LFOx y filtros no son soportados por este instrumento. @@ -3331,222 +6578,345 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es InstrumentTrack + + unnamed_track pista_sin_título - Volume - Volumen - - - Panning - Paneo - - - Pitch - Altura - - - FX channel - Canal FX - - - Default preset - Configuración predeterminada - - - With this knob you can set the volume of the opened channel. - Con este control puedes difinir el volumen del canal abierto. - - + Base note Nota base + + First note + + + + + Last note + Ultima nota + + + + Volume + Volumen + + + + Panning + Paneo + + + + Pitch + Altura + + + Pitch range Registro - Master Pitch + + Mixer channel + Canal FX + + + + Master pitch Transporte + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + Configuración predeterminada + InstrumentTrackView + Volume Volumen + Volume: Volumen: + VOL VOL + Panning Paneo + Panning: Paneo: + PAN PAN + MIDI MIDI + Input Entrada + Output Salida - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS CONFIGURACIÓN GENERAL - Instrument volume - Volumen del instrumento + + Volume + Volumen + Volume: Volumen: + VOL VOL + Panning Paneo + Panning: Paneo: + PAN PAN + Pitch Altura + Pitch: Altura: + cents cents + PITCH ALTURA - FX channel - Canal FX - - - FX - FX - - - Save preset - Guardar preconfiguración - - - XML preset file (*.xpf) - archivo de preconfiguración XML (*.xpf) - - + Pitch range (semitones) Extensión (en semitonos) + RANGE EXTENSIÓN + + Mixer channel + Canal FX + + + + CHANNEL + FX + + + Save current instrument track settings in a preset file Guardar la configuración de esta pista de instrumento en un archivo de preconfiguración - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Haz click aquí si quieres guardar la configuración de esta pista de instrumento en un archivo de preconfiguración. Luego podrás cargar esta preconfiguración haciendo doble click en ella en el explorador de preconfiguraciones. - - - Use these controls to view and edit the next/previous track in the song editor. - Usa estos controles para ver y editar la pista siguiente/anterior en el editor de canción - - + SAVE GUARDAR + Envelope, filter & LFO Sobre, Filtro y LFO + Chord stacking & arpeggio Acorde de Apilamiento y Arpegio + Effects Efectos - MIDI settings - Configuración MIDI + + 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 + + + + + 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 - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: + + + 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 @@ -3554,10 +6924,12 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es LadspaControlDialog + Link Channels Enlazar Canales + Channel Canal @@ -3565,28 +6937,46 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es LadspaControlView + Link channels Enlazar canales + Value: Valor: - - Sorry, no help available. - Disculpa, no hay ayuda disponible. - 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: @@ -3594,18 +6984,26 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es LeftRightNav + + + Previous Anterior + + + Next Siguiente + Previous (%1) Anterior (%1) + Next (%1) Siguiente (%1) @@ -3613,30 +7011,37 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es 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 @@ -3644,115 +7049,131 @@ Puedes quitar y mover los canales FX a través del menú contextual. Accede a es LfoControllerDialog + LFO LFO - LFO Controller - Controlador LFO - - + BASE BASE - Base amount: - Cantidad base: + + Base: + - todo - La ayuda para este ítem aún se encuentra pendiente + + FREQ + FREC - SPD - VEL + + LFO frequency: + - LFO-speed: - LFO-velocidad: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Usa esta perilla para definir la velocidad del LFO. A mayor valor, más rápida la velocidad de oscilación del LFO y más rápido el efecto. + + AMNT + CANT + Modulation amount: Cantidad de modulación: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Usa esta perilla para definir la cantidad de modulación del LFO. A valores más altos, mayor será la influencia ejercida por el LFO sobre el contro conectado (ej. volumen, frecuencia de corte). - - + PHS FASE + Phase offset: Desfase: - degrees - grados + + degrees + - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Con esta perilla puedes definir la diferencia de fase (desfase) del LFO. Esto significa que puedes mover el punto de la onda en el cual el oscilador comienza a oscilar. Por ejemplo, en una onda sinusoidal con un desfase de 180 grados la onda irá primero hacia abajo. Pasará lo mismo con una onda cuadrada. + + Sine wave + Onda sinusoidal - Click here for a sine-wave. - Haz click aquí para elegir una onda-sinusoidal. + + Triangle wave + Onda triangular - Click here for a triangle-wave. - Haz click aquí para elegir una onda triangular. + + Saw wave + Onda de sierra - Click here for a saw-wave. - Haz click aquí para elegir una onda de sierra. + + Square wave + Onda cuadrada - Click here for a square-wave. - Haz click aquí para elegir una onda cuadrada. + + Moog saw wave + Onda de sierra Moog - Click here for an exponential wave. - Haz click aquí para elegir una onda exponencial. + + Exponential wave + Onda Exponencial - Click here for white-noise. - Haz click aquí para elegir ruido-blanco. + + White noise + Ruido blanco - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Haz click aquí para elegir una forma definida por el usuario. -Haz doble click para seleccionar un archivo. + - Click here for a moog saw-wave. - Haz click aquí para elegir una onda de sierra tipo moog. + + Mutliply modulation frequency by 1 + - AMNT - CANT + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + - LmmsCore + 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 @@ -3760,397 +7181,510 @@ Haz doble click para seleccionar un archivo. MainWindow - &New - &Nuevo - - - &Open... - Abrir...(&O) - - - &Save - Guardar (&S) - - - Save &As... - Guardar Como... (&A) - - - Import... - Importar... - - - E&xport... - E&xportar... - - - &Quit - Salir (&Q) - - - &Edit - &Editar - - - Settings - Configuración - - - &Tools - Herramientas (&T) - - - &Help - Ayuda (&H) - - - Help - Ayuda - - - What's this? - ¿Qué es esto? - - - 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 - - - Song Editor - Editor de Canción - - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Presionando este botón, puedes mostrar u ocultar el Editor de Canción. Con la ayuda del Editor de Canción puedes editar la lista de reproducción y especificar cuándo debe ejecutarse cada pista. También puedes insertar y mover muestras (ej. letras grabadas) directamente en la lista de reproducción. - - - Beat+Bassline Editor - Editor de Ritmo+Bajo - - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Presionando este botón puedes mostrar u ocultar el Editor de Ritmo+Bajo. El Editor de Ritmo+Bajo es necesario para crear ritmos, y para abrir, agregar y quitar canales, y para copiar, cortar y pegar patrones de ritmo y bajo, y otras cosas por el estilo. - - - Piano Roll - Piano Roll - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Haz click aquí para mostrar u ocultar el Piano Roll. Con la ayuda del Piano Roll puedes editar melodías facilmente. - - - Automation Editor - Editor de Automatización - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Haz click aquí para mostrar u ocultar el Editor de Automatización. Con la ayuda del Editor de Automatización puedes editar valores dinámicos fácilmente. - - - FX Mixer - Mezcladora FX - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Haz click aquí para mostrar u ocultar la Mezcladora FX. La Mezcladora FX es una herramienta muy poderosa para administrar los efectos en tu canción. Puedes insertar efectos en diferentes canales. - - - Project Notes - Notas del Proyecto - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Haz click aquí para mostrar u ocultar la ventana de notas del proyecto. En esta ventana puedes escribir notas, comentarios y recordatorios de tu proyecto. - - - Controller Rack - Bandeja de Controladores - - - Untitled - Sin Título - - - LMMS %1 - LMMS %1 - - - 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? - - - 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. - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - Version %1 - Versión %1 - - + 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 - Volumes - Volúmenes - - - Undo - Deshacer - - - Redo - Rehacer - - - My Projects - Mis Proyectos - - - My Samples - Mis Muestras - - - My Presets - Mis Preconfiguraciones - - - My Home - Carpeta Personal - - - My Computer - Equipo - - - &File - Archivo (&F) - - - &Recently Opened Projects - Proyectos &Recientes - - - Save as New &Version - Guardar como una Nueva &Versión - - - E&xport Tracks... - E&xportar Pistas... - - - Online Help - Ayuda en línea - - - What's This? - ¿Qué es esto? - - - Open Project - Abrir Proyecto - - - Save Project - Guardar proyecto - - - 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. - - - Preparing plugin browser - Preparando el explorador de complementos - - - Preparing file browsers - Preparando el explorador de archivos - - - Root directory - Directorio raíz - - - Loading background artwork - Cargando imágenes de fondo - - - New from template - Nuevo desde plantilla - - - Save as default template - Guardar como plantilla por defecto - - - &View - &Ver - - - Toggle metronome - Conmutar metrónomo - - - Show/hide Song-Editor - Mostrar/ocultar Editor de Canción - - - Show/hide Beat+Bassline Editor - Mostrar/ocultar el Editor de Ritmo+Bajo - - - Show/hide Piano-Roll - Mostrar/ocultar Piano-Roll - - - Show/hide Automation Editor - Mostrar/ocultar Editor de Automatización - - - Show/hide FX Mixer - Mostrar/ocultar Mezcladora FX - - - Show/hide project notes - Mostrar/ocultar notas del proyecto - - - Show/hide controller rack - Mostrar/ocultar bandeja de controladores - - - Recover session. Please save your work! - Recuperar sesión. ¡Por favor guarda tu trabajo! - - - 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? - - - LMMS Project - Proyecto LMMS - - - LMMS Project Template - Plantilla de proyecto LMMS - - - Overwrite default template? - ¿Sobreescribir la plantilla por defecto? - - - This will overwrite your current default template. - Esta acción sobreescribirá tu actual plantilla por defecto. - - - Smooth scroll - Desplazamiento suave - - - Enable note labels in piano roll - Nombres de notas en piano roll - - - Save project template - Guardar plantilla de proyecto - - - Volume as dBFS - Volumen en dBFS - - + 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 @@ -4158,21 +7692,44 @@ Asegúrate de tener permisos de escritura tanto del archivo como del directorio 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 @@ -4180,18 +7737,43 @@ Asegúrate de tener permisos de escritura tanto del archivo como del directorio MidiImport + + Setup incomplete Configuración incompleta - You do not have 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. - Nos has elegido una SoundFont por defecto en el diálogo de configuración (Edición-> Configuración). Por lo tanto, no se reproducirá ningún sonido luego de importar este archivo MIDI. Debes descargar una SoundFont compatible con la GM (general midi), indicar su ubicación en el diálogo de configuración e intentarlo nuevamente. + + 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 @@ -4199,541 +7781,911 @@ Asegúrate de tener permisos de escritura tanto del archivo como del directorio 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 + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5ta + + + + 6 + Mayor añad 6 + + + + 7 + Dominante (1 3 5 b7) + + + + 8 + + + + + 9 + Dom 9 (1-3-5-b7-9) + + + + 10 + + + + + 11 + Dom 11 (1-3-5-b7-9-11) + + + + 12 + + + + + 13 + Dom 13 (...b7-9-11-13) + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + Archivo (&F) + + + + &Edit + &Editar + + + + &Quit + Salir (&Q) + + + + &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 - Output MIDI program - Programa de salida MIDI - - - Receive MIDI-events - Recibir eventos MIDI - - - Send MIDI-events - Enviar eventos MIDI - - + 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 - DISPOSITIVO + + Device + MonstroInstrument - Osc 1 Volume - Osc 1 Volumen + + Osc 1 volume + - Osc 1 Panning - Osc 1 Paneo + + Osc 1 panning + - Osc 1 Coarse detune - Osc 1 desafinación gruesa + + Osc 1 coarse detune + - Osc 1 Fine detune left - Osc 1 desafinación fina izquierda + + Osc 1 fine detune left + - Osc 1 Fine detune right - Osc 1 desafinación fina derecha + + Osc 1 fine detune right + - Osc 1 Stereo phase offset - Osc 1 desfase estéreo + + Osc 1 stereo phase offset + - Osc 1 Pulse width - Osc 1 Amplitud del pulso + + Osc 1 pulse width + - Osc 1 Sync send on rise - Osc 1 Enviar Sinc. al subir + + Osc 1 sync send on rise + - Osc 1 Sync send on fall - Osc 1 Enviar Sinc al bajar + + Osc 1 sync send on fall + - Osc 2 Volume - Osc 2 Volumen + + Osc 2 volume + - Osc 2 Panning - Osc 2 Paneo + + Osc 2 panning + - Osc 2 Coarse detune - Osc 2 desafinación gruesa + + Osc 2 coarse detune + - Osc 2 Fine detune left - Osc 2 desafinación fina izquierda + + Osc 2 fine detune left + - Osc 2 Fine detune right - Osc 2 desafinación fina derecha + + Osc 2 fine detune right + - Osc 2 Stereo phase offset - Osc 2 desfase estéreo + + Osc 2 stereo phase offset + - Osc 2 Waveform - Osc 2 Forma de onda + + Osc 2 waveform + - Osc 2 Sync Hard - Osc 2 Sincronización Dura + + Osc 2 sync hard + - Osc 2 Sync Reverse - Osc 2 Sincronización reversa + + Osc 2 sync reverse + - Osc 3 Volume - Osc 3 Volumen + + Osc 3 volume + - Osc 3 Panning - Osc 3 Paneo + + Osc 3 panning + - Osc 3 Coarse detune - Osc 3 desafinación gruesa + + Osc 3 coarse detune + + Osc 3 Stereo phase offset Osc 3 desfase estéreo - Osc 3 Sub-oscillator mix - Osc 3 Mezcla del sub-oscilador + + Osc 3 sub-oscillator mix + - Osc 3 Waveform 1 - Osc 3 Onda 1 + + Osc 3 waveform 1 + - Osc 3 Waveform 2 - Osc 3 Onda 2 + + Osc 3 waveform 2 + - Osc 3 Sync Hard - Osc 3 Sincronización Dura + + Osc 3 sync hard + - Osc 3 Sync Reverse - Osc 3 Sincronización Reversa + + Osc 3 Sync reverse + - LFO 1 Waveform - LFO 1 Forma de onda + + LFO 1 waveform + - LFO 1 Attack - LFO 1 Ataque + + LFO 1 attack + - LFO 1 Rate - LFO 1 Velocidad + + LFO 1 rate + - LFO 1 Phase - LFO 1 Fase + + LFO 1 phase + - LFO 2 Waveform - LFO 2 Forma de onda + + LFO 2 waveform + - LFO 2 Attack - LFO 2 Ataque + + LFO 2 attack + - LFO 2 Rate - LFO 2 Velocidad + + LFO 2 rate + - LFO 2 Phase - LFO 2 Fase + + LFO 2 phase + - Env 1 Pre-delay - Env 1 Pre-retraso + + Env 1 pre-delay + - Env 1 Attack - Env 1 Ataque + + Env 1 attack + - Env 1 Hold - Env 1 Mantener + + Env 1 hold + - Env 1 Decay - Env 1 Caída + + Env 1 decay + - Env 1 Sustain - Env 1 Sostén + + Env 1 sustain + - Env 1 Release - Env 1 Disipación + + Env 1 release + - Env 1 Slope - Env 1 Curva + + Env 1 slope + - Env 2 Pre-delay - Env 2 Pre-retraso + + Env 2 pre-delay + - Env 2 Attack - Env 2 Ataque + + Env 2 attack + - Env 2 Hold - Env 2 Mantener + + Env 2 hold + - Env 2 Decay - Env 2 Caída + + Env 2 decay + - Env 2 Sustain - Env 2 Sostén + + Env 2 sustain + - Env 2 Release - Env 2 Disipación + + Env 2 release + - Env 2 Slope - Env 2 Curva + + Env 2 slope + - Osc2-3 modulation - Modulación osc 2-3 + + Osc 2+3 modulation + + Selected view Vista seleccionada - Vol1-Env1 - Vol1-Env1 + + Osc 1 - Vol env 1 + - Vol1-Env2 - Vol1-Env2 + + Osc 1 - Vol env 2 + - Vol1-LFO1 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 + - Vol1-LFO2 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 + - Vol2-Env1 - Vol2-Env1 + + Osc 2 - Vol env 1 + - Vol2-Env2 - Vol2-Env2 + + Osc 2 - Vol env 2 + - Vol2-LFO1 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 + - Vol2-LFO2 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 + - Vol3-Env1 - Vol3-Env1 + + Osc 3 - Vol env 1 + - Vol3-Env2 - Vol3-Env2 + + Osc 3 - Vol env 2 + - Vol3-LFO1 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 + - Vol3-LFO2 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 + - Phs1-Env1 - Fas1-Env1 + + Osc 1 - Phs env 1 + - Phs1-Env2 - Fas1-Env2 + + Osc 1 - Phs env 2 + - Phs1-LFO1 - Fas1-LFO1 + + Osc 1 - Phs LFO 1 + - Phs1-LFO2 - Fas1-LFO2 + + Osc 1 - Phs LFO 2 + - Phs2-Env1 - Fas2-Env1 + + Osc 2 - Phs env 1 + - Phs2-Env2 - Fas2-Env2 + + Osc 2 - Phs env 2 + - Phs2-LFO1 - Fas2-LFO1 + + Osc 2 - Phs LFO 1 + - Phs2-LFO2 - Fas2-LFO2 + + Osc 2 - Phs LFO 2 + - Phs3-Env1 - Fas3-Env1 + + Osc 3 - Phs env 1 + - Phs3-Env2 - Fas3-Env2 + + Osc 3 - Phs env 2 + - Phs3-LFO1 - Fas3-LFO1 + + Osc 3 - Phs LFO 1 + - Phs3-LFO2 - Fas3-LFO2 + + Osc 3 - Phs LFO 2 + - Pit1-Env1 - Alt1-Env1 + + Osc 1 - Pit env 1 + - Pit1-Env2 - Alt1-Env2 + + Osc 1 - Pit env 2 + - Pit1-LFO1 - Alt1-LFO1 + + Osc 1 - Pit LFO 1 + - Pit1-LFO2 - Alt1-LFO2 + + Osc 1 - Pit LFO 2 + - Pit2-Env1 - Alt2-Env1 + + Osc 2 - Pit env 1 + - Pit2-Env2 - Alt2-Env2 + + Osc 2 - Pit env 2 + - Pit2-LFO1 - Alt2-LFO1 + + Osc 2 - Pit LFO 1 + - Pit2-LFO2 - Alt2-LFO2 + + Osc 2 - Pit LFO 2 + - Pit3-Env1 - Alt3-Env1 + + Osc 3 - Pit env 1 + - Pit3-Env2 - Alt3-Env2 + + Osc 3 - Pit env 2 + - Pit3-LFO1 - Alt3-LFO1 + + Osc 3 - Pit LFO 1 + - Pit3-LFO2 - Alt3-LFO2 + + Osc 3 - Pit LFO 2 + - PW1-Env1 - AP1-Env1 + + Osc 1 - PW env 1 + - PW1-Env2 - AP1-Env2 + + Osc 1 - PW env 2 + - PW1-LFO1 - AP1-LFO1 + + Osc 1 - PW LFO 1 + - PW1-LFO2 - AP1-LFO2 + + Osc 1 - PW LFO 2 + - Sub3-Env1 - Sub3-Env1 + + Osc 3 - Sub env 1 + - Sub3-Env2 - Sub3-Env2 + + Osc 3 - Sub env 2 + - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 + - Sub3-LFO2 - Sub3-LFO2 + + 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 @@ -4741,294 +8693,240 @@ Asegúrate de tener permisos de escritura tanto del archivo como del directorio MonstroView + Operators view Vista de Operadores - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - La vista de operadores contiene todos los operadores. Esto incluye tanto los operadores audibles (osciladores) como los operadores inaudibles (moduladores): Osciladores de baja frecuencia (LFO) y Envolventes. - -Cada perilla y selector en la Vista de Operadores incluye una pequeña ayuda a la que puedes acceder haciendo click en el icono '¿qué es esto?' en la barra superior y luego en la perilla o selector. Puedes encontrar ayuda mucho más específica de esa manera. - - + Matrix view Vista de Matriz - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - La Vista de Matriz contiene la matriz de modulación. Aquí puedes definir la relación de modulación entre los distintos operadores. Cada operador audible (osciladores 1 al 3) tiene 3 a 4 propiedades que pueden ser moduladas por cualquiera de los moduladores. El uso de más moduladores consume más CPU. - -La vista se encuentra dividida en objetivos de modulacion, agrupados para cada oscilador. Los objetivos disponibles son volumen, altura, fase, amplitud del pulso y proporción del sub-oscilador. Nota: algunos objetivos son específicos de un único oscilador. - -Cada objetivo de modulación tiene cuatro perillas, una para cada modulador. Por defecto las perillas estan en cero (0), lo que significa sin modulación. Llevar una perilla hasta el 1 hace que el modulador afecte el objetivo tanto como es posible. Llevarla a -1 hace lo mismo, pero la modulación es invertida. - - - Mix Osc2 with Osc3 - Mezclar Osc2 con Osc3 - - - Modulate amplitude of Osc3 with Osc2 - Modular la amplitud del Osc3 con Osc2 - - - Modulate frequency of Osc3 with Osc2 - Modular la frecuencia del Osc3 con Osc2 - - - Modulate phase of Osc3 with Osc2 - Modular la fase del Osc3 con Osc2 - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - La perilla CRS cambia la afinación del oscilador 1 en semitonos. - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - La perilla CRS cambia la afinación del oscilador 2 en semitonos. - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - La perilla CRS cambia la afinación del oscilador 3 en semitonos. - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL y FTR cambian la afinación fina del oscilador para los canales izquierdo y derecho respectivamente. Esto permite añadir desafinación estéreo al oscilador lo que ensancha la imagen estéreo y provoca la ilusión de espacio. - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - La perilla SPO (Diferencia de Fase Estéreo, por sus siglas en inglés) modifica la diferencia de fase entre los canales izquierdo y derecho. Una mayor diferencia crea una imagen estéreo más amplia. - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - La perilla PW controla la amplitud del pulso, también conocida como ciclo de trabajo, del oscilador 1. El oscilador 1 es un oscilador de onda de pulso digital, no produce una salida de banda limitada, lo que significa que puedes usarlo como un oscilador audible pero causará 'aliasing' (efecto Nyquist). También puedes usarlo como una fuente inaudible para sincronización, que puedes usar para sincronizar los osciladores 2 y 3. - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Enviar Sinc al subir: Cuando está activado, la señal de sincronización es enviada cada vez que el estado del oscilador 1 pasa de abajo arriba, por ej. cuando la amplitud cambia de -1 a 1. La altura, fase y amplitud de pulso del oscilador 1 pueden afectar la sincronización, pero el volumen no tiene ningún efecto en ella. Las señales de Sincronización son enviadas de manera independiente a los canales izquierdo y derecho. - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Enviar Sinc al bajar: Cuando está activado, la señal de sincronización es enviada cada vez que el estado del oscilador 1 pasa de arriba abajo, por ej. cuando la amplitud cambia de 1 a -1. La altura, fase y amplitud de pulso del oscilador 1 pueden afectar la sincronización, pero el volumen no tiene ningún efecto en ella. Las señales de Sincronización son enviadas de manera independiente a los canales izquierdo y derecho. - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Sincronización dura: Cada vez que el oscilador recive una señal de sincronización del oscilador 1, su fase se restaura a 0 + su desfase correspondiente. - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Sincronización reversa: Cada vez que el oscilador recibe una señal de sincronización del oscilador 1, la amplitud del oscilador se invierte. - - - Choose waveform for oscillator 2. - Elige la onda para el oscilador 2. - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Elige una onda para el primer sub-oscilador del oscilador 3. El oscilador 3 puede interpolar suavemente dos ondas diferentes. - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Elige una onda para el segundo sub-oscilador del oscilador 3. El oscilador 3 puede interpolar suavemente dos ondas diferentes. - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - La perilla SUB cambia el porcentaje de mezcla de los dos sub-osciladores del Oscilador 3. Puedes elegir una onda diferente para cada uno de los dos sub-osciladores, y el oscilador 3 interpolará suavemente entre ambas. Todas las modulaciones entrantes para el Osc3 se aplicarán de la misma manera a las ondas de ambos sub-osciladores. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - Además de los propios moduladores, Monstro permite modular el oscilador 3 con la salida del oscilador 2. - -En Modo Mezcla (Mix) no hay modulación: simplemente mezcla la salida de los osciladores. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - Además de los propios moduladores, Monstro permite modular el oscilador 3 con la salida del oscilador 2 - -AM significa 'amplitud modulada'. La amplitud (volumen) del oscilador 3 es modulada por el oscilador 2. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - Además de los propios moduladores, Monstro permite modular el oscilador 3 con la salida del oscilador 2 - -FM significa 'frecuencia modulada'. La frecuencia (altura) del oscilador 3 es modulada por el oscilador 2. La modulación de frecuencia se implementa como una modulación de fase, lo que le brinda una altura general más estable a diferencia de la modulación de frecuencia "pura". - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - Además de los propios moduladores, Monstro permite modular el oscilador 3 con la salida del oscilador 2 - -PM significa 'modulación de fase'. La fase del oscilador 3 es modulada por el oscilador 2. Se diferencia de la 'frecuencia modulada' en que los cambios de fase no son acumulativos. - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Elige la onda para el LFO 1. -"Aleatoria" y "Aleatoria suave" son formas especiales de onda: producen una salida aleatoria, donde la tasa del LFO controla que tan seguido cambia el estado del LFO. La versión suave interpola entre estos estados con interpolación cosinusoidal. Estos modos aleatorios se pueden usar para darle "vida" a tus preconfiguraciones (presets) - añade algo de esa impredecibilidad analógica... - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Elige la onda para el LFO 2. -"Aleatoria" y "Aleatoria suave" son formas especiales de onda: producen una salida aleatoria, donde la tasa del LFO controla que tan seguido cambia el estado del LFO. La versión suave interpola entre estos estados con interpolación cosinusoidal. Estos modos aleatorios se pueden usar para darle "vida" a tus preconfiguraciones (presets) - añade algo de esa impredecibilidad analógica... - - - Attack causes the LFO to come on gradually from the start of the note. - El 'Ataque' hace que el LFO aparezca gradualmente desde el inicio de la nota. - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - 'Rate' define la velocidad del LFO, en milisegundos por ciclo. Se puede sincronizar al tempo. - - - PHS controls the phase offset of the LFO. - PHS controla el desfase del LFO. - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE, o pre-retraso, retrasa el inicio de la envolvente con respecto al inicio de la nota. Con un valor de 0 (cero) la envolvente se inicia inmediatamente. - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - ATT, o ataque, controla que tan rápido la envolvente se eleva al principio, en milisegundos. 0 significa instantáneamente. - - - HOLD controls how long the envelope stays at peak after the attack phase. - HOLD (mantener) controla cuánto tiempo la envolvente permanece en el pico luego del ataque. - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - DEC, o caída, controla que tan rápido la envolvente cae desde el pico alcanzado en el ataque. Se mide de acuerdo a los milisegundos que le toma caer desde el pico hasta cero. La caída actual puede ser más corta si se utiliza el 'sustain' [de la envolvente]. - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - SUS, sustain o sostén, controla el nivel de 'sostén' de la envolvente. La fase de caída no bajará más de este nivel mientras dure la nota (ej. mientras mantengas presionada la tecla. Ver partes de la envolvente 'ADSR' ). - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - REL, o disipación, controla cuánto dura la disipación de la nota, o sea cuánto tarda en llegar del pico a cero. La disipación actual puede ser más breve, dependiendo de en que fase se libera la nota. (N.d.T.: la disipación puede ir del pico a cero o, si activas un nivel para el 'sustain', desde este nivel a cero, a partir del momento en el que dejes de presionar la tecla. Ver 'sustain' o 'SUS'). - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - El control de 'curva' (Slope) controla la forma de la envolvente. Un valor igual a 0 crea subidas y bajadas rectas. Valores negativos crean curvas que comienzan despacio, alcanzan el pico rápidamente y bajan suavemente como subieron. Valores positivos crean curvas que suben y bajan rápidamente, pero se mantienen por más tiempo cerca de los picos. - - + + + Volume Volumen + + + Panning Paneo + + + Coarse detune Desafinación gruesa + + + semitones semitonos - Finetune left - Desafinación fina izquierda + + + Fine tune left + + + + + cents cents - Finetune right - Desafinación fina derecha + + + 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 @@ -5036,117 +8934,145 @@ PM significa 'modulación de fase'. La fase del oscilador 3 es modulad MultitapEchoControlDialog + Length Duración + Step length: Longitud del paso: + Dry Limpio - Dry Gain: - Ganancia limpia: + + Dry gain: + + Stages Etapas - Lowpass stages: - Etapas de pasoBajo: + + Low-pass stages: + + Swap inputs Intercambiar entradas - Swap left and right input channel for reflections + + Swap left and right input channels for reflections Intercambiar los canales de entrada izquierdo y derecho para reflexiones NesInstrument - Channel 1 Coarse detune - Canal 1 desafinación gruesa + + Channel 1 coarse detune + - Channel 1 Volume + + Channel 1 volume Canal 1 Volumen - Channel 1 Envelope length - Canal 1 Longitud de la Envolvente + + Channel 1 envelope length + - Channel 1 Duty cycle - Canal 1 Ciclo de trabajo + + Channel 1 duty cycle + - Channel 1 Sweep amount - Canal 1 Cantidad de Barrido + + Channel 1 sweep amount + - Channel 1 Sweep rate - Canal 1 Tasa de Barrido + + Channel 1 sweep rate + + Channel 2 Coarse detune Canal 2 desafinación gruesa + Channel 2 Volume Canal 2 Volumen - Channel 2 Envelope length - Canal 2 Longitud de la Envolvente + + Channel 2 envelope length + - Channel 2 Duty cycle - Canal 2 Ciclo de trabajo + + Channel 2 duty cycle + - Channel 2 Sweep amount - Canal 2 Cantidad de Barrido + + Channel 2 sweep amount + - Channel 2 Sweep rate - Canal 2 Tasa de Barrido + + Channel 2 sweep rate + - Channel 3 Coarse detune - Canal 3 desafinación gruesa + + Channel 3 coarse detune + - Channel 3 Volume + + Channel 3 volume Canal 3 Volumen - Channel 4 Volume + + Channel 4 volume Canal 4 Volumen - Channel 4 Envelope length - Canal 4 Longitud de la Envolvente + + Channel 4 envelope length + - Channel 4 Noise frequency - Canal 4 Frecuencia de Ruido + + Channel 4 noise frequency + - Channel 4 Noise frequency sweep - Canal 4 Barrido de la frecuencia de ruido + + Channel 4 noise frequency sweep + + Master volume Volumen maestro + Vibrato Vibrato @@ -5154,196 +9080,447 @@ PM significa 'modulación de fase'. La fase del oscilador 3 es modulad 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 + + 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 volume - Osc %1 Volumen - - - Osc %1 panning - Osc %1 paneo - - - Osc %1 coarse detuning - Osc %1 desafinación gruesa - - - Osc %1 fine detuning left - Osc %1 desafinación fina izquierda - - - 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 - - + 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 @@ -5351,77 +9528,85 @@ PM significa 'modulación de fase'. La fase del oscilador 3 es modulad PatmanView - Open other patch - Abrir otro ajuste - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Haz click aquí para abrir otro archivo (*.pat). La configuración de Afinación y Bucle se mantiene. + + Open patch + + Loop Bucle + Loop mode Modo Bucle - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Aquí puedes alternar el modo Bucle. Si está activado, PatMan usará la información de bucle disponible en el archivo. - - + Tune Afinación + Tune mode Modo de Afinación - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Aquí puedes alternar el modo de Afinación. Si está activado, PatMan afinará la muestra para que coincida con la altura de la nota. - - + No file selected Ningún archivo seleccionado + Open patch file Abrir archivo Patch + Patch-Files (*.pat) Archivos Patch (*.pat) - PatternView + 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 @@ -5429,14 +9614,17 @@ PM significa 'modulación de fase'. La fase del oscilador 3 es modulad 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. @@ -5444,10 +9632,12 @@ PM significa 'modulación de fase'. La fase del oscilador 3 es modulad PeakControllerDialog + PEAK PICO + LFO Controller Controlador LFO @@ -5455,327 +9645,519 @@ PM significa 'modulación de fase'. La fase del oscilador 3 es modulad PeakControllerEffectControlDialog + BASE BASE - Base amount: - Cantidad base: - - - Modulation amount: - Cantidad de modulación: - - - Attack: - Ataque: - - - Release: - Disipación: + + Base: + + AMNT CANT + + Modulation amount: + Cantidad de modulación: + + + MULT MULT - Amount Multiplicator: - Multiplicador de Cantidad: + + Amount multiplicator: + + ATCK ATQ + + Attack: + Ataque: + + + DCAY CAI + + Release: + Disipación: + + + + TRSH + UMBRAL + + + Treshold: Umbral: - TRSH - UMBRAL + + Mute output + Silenciar salida + + + + Absolute value + PeakControllerEffectControls + Base value Valor base + Modulation amount Cantidad de modulación - Mute output - Silenciar salida - - + Attack Ataque + Release Disipación - Abs Value - Valor Absol - - - Amount Multiplicator - Multiplicador de Cantidad - - + Treshold Umbral + + + Mute output + Silenciar salida + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - ¡Por favor abre el patrón haciendo doble click sobre él! - - - Last note - Ultima nota - - - Note lock - Figura actual - - + Note Velocity Velocidad de Nota + Note Panning Paneo de nota + Mark/unmark current semitone Marcar/desmarcar este semitono - Mark current scale - Marcar la escala actual - - - Mark current chord - Marcar el acorde actual - - - Unmark all - Desmarcar todo - - - No scale - Sin escala - - - No chord - Sin acorde - - - Velocity: %1% - Velocidad: %1% - - - Panning: %1% left - Paneo: %1% izq - - - Panning: %1% right - Paneo: %1% der - - - Panning: center - Paneo: centro - - - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: - - + 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 pattern (Space) + + 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 - Stop playing of current pattern (Space) + + 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) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Haz click aquí para reproducir este patrón. Te será útil al editarlo. El patrón se reproducirá en bucle automáticamente. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Haz click aquí para grabar notas desde un dispositivo MIDI o desde el piano virtual de la ventana. Al grabar, las notas se escribirán en este patrón y luego podrás editarlas. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Haz click aquí para grabar notas desde un dispositivo MIDI o desde el piano virtual de la ventana. Al grabar escucharás de fondo la canción o el Ritmo/Bajo, y todas las notas que toques se escribirán en este patrón. - - - Click here to stop playback of current pattern. - Haz click aquí para detener la reproducción de este patró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) - - - Detune mode (Shift+T) - Modo de Cambio de Tono (Shift+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Haz click aquí para activar el modo de Dibujo. En el modo de Dibujo, puedes añadir, redimensionar y mover las notas. Este es el modo por defecto y el que utilizarás la mayoría de las veces. Tambien puedes presionar 'Shift+D' en el teclado para activar este modo. Mientras estes en modo de Dibujo, mantén presionado %1 para activar temporalmente el modo de Selección. - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Haz click aquí para activar el modo de Borrado. En este modo puedes borrar notas. Puedes activar este modo desde el teclado presionando 'Shift+E'. - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Haz click aquí para activar el modo de Selección. En este modo puedes seleccionar notas. O también puedes mantener presionado %1 en el modo de dibujo para acceder temporalmente al modo de Selección. - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - Haz click aquí para activar el modo de Cambio de Tono. En este modo, puedes hacer click en una nota para abrir su ventana de automatización de cambio de tono (detuning). Puedes utilizar este modo para crear 'glissandos' (deslizar de una nota hacia otra). Presiona 'Shift+T' para activar este modo desde el teclado. - - - Cut selected notes (%1+X) - Cortar las notas seleccionadas (%1+X) - - - Copy selected notes (%1+C) - Copiar las notas seleccionadas (%1+C) - - - Paste notes from clipboard (%1+V) - Pegar notas desde el portapapeles (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Haz click aquí y las notas seleccionadas se moverán al portapapeles. Puedes pegarlas en cualquier lugar de cualquier patrón haciendo click en el botón "pegar". - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Haz click aquí y las notas seleccionadas se copiarán al portapapeles. Puedes pegarlas en cualquier lugar de cualquier patrón haciendo click en el botón "pegar". - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Haz click aquí y las notas del portapapeles se pegarán en el primer compás visible. - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Esto controla el zoom horizontal. Puede ser útil para elegir el zoom adecuado para una acción específica. Para la edición en general, el zoom debe adecuarse a tus notas más cortas. - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - La 'Q' se refiere a 'Cuantización', y controla el tamaño de la grilla y los puntos de control a los que se 'adhieren' las notas que ingresas. Con valores de cuantización más pequeños, puedes dibujar notas más breves en el Piano Roll, y puntos de control más exactos en el Editor de Automatización. - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - Esto te permite elegir la duración de las notas nuevas. 'Ultima nota' quiere decir que LMMS usará el valor de la última nota que hayas editado - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - Este asistente se encuentra conectado directamente al menu contextual del teclado virtual, situado a la izquierda del Piano Roll. Luego de elegir la escala deseada en el menú desplegable, puedes hacer click derecho en la tecla de la nota deseada en el teclado virtual, y elegir 'Marcar escala actual'. ¡LMMS resaltará todas las notas que pertenezcan a la escala elegida, en el tono que hayas seleccionado! - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - Te permite elegir un acorde que luego LMMS puede dibujar o resaltar. Puedes encontrar los acordes más usados en este menú desplegable. Luego de elegir una acorde, haz click en cualquier lugar para ingresar el acorde, y haz click derecho en el teclado virtual para abrir el menú contextual y resaltar el acorde. Para ingresar notas individuales nuevamente, debes elegir 'Sin Acorde' en este menú. - - + 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 pattern + + + Piano-Roll - no clip Piano-Roll - sin patrón - Quantize - Cuantizar + + + 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"! @@ -5783,221 +10165,1293 @@ Razón: "%2" 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. - Instrument Plugins + + 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 + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + Control + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Configuración + + + + 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: + Tipo: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + + 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! + + 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 + Cerrar + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + Encendido/Apagado + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - 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... - - + 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-File (*.wav) - Archivo-WAV (*.wav) + + WAV (*.wav) + WAV (*.wav) - Compressed OGG-File (*.ogg) - Archivo OGG comprimido (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) - Archivo FLAC (*.flac) + + OGG (*.ogg) + OGG (*.ogg) - Compressed MP3-File (*.mp3) - Compresor De Archivos MP3 (*.mp3) + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin + + + + + Show GUI + Mostrar IGU + + + + Help + Ayuda 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 - File: %1 - Archivo: %1 + + &Recently Opened Projects + Proyectos &Recientes RenameDialog + Rename... Renombrar... @@ -6005,716 +11459,1606 @@ Razón: "%2" ReverbSCControlDialog + Input Entrada - Input Gain: + + Input gain: Ganancia de Entrada: + Size Tamaño + Size: Tamaño: + Color Color + Color: Color: + Output Salida - Output Gain: + + Output gain: Ganancia de Salida: ReverbSCControls - Input Gain + + Input gain Ganancia de entrada + Size Tamaño + Color Color - Output Gain + + Output gain Ganancia de salida + + SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + Estéreo + + + + 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 + Graves + + + + 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 + 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 + + + SampleBuffer - Open audio file - Abrir archivo de audio - - - 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) - - - 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) - - + 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) + - SampleTCOView + SampleClipView - double-click to select sample - Haz doble click para seleccionar una muestra + + Double-click to open sample + Haga doble clic para abrir la muestra. + Delete (middle mousebutton) - Borrar (click del medio) + 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 - Sample track - Pista de muestras - - + 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 - Setup LMMS - Configurar LMMS + + Reset to default value + - General settings - Configuración general + + Use built-in NaN handler + - BUFFER SIZE - TAMAÑO DEL BÚFER + + Settings + Configuración - Reset to default-value - Restaurar valores por defecto + + + General + - MISC - MISC + + Graphical user interface (GUI) + + + Display volume as dBFS + Mostrar volumen en dBFS + + + Enable tooltips Habilitar Consejos - Show restart warning after changing settings - Mostrar advertencia de reinicio luego de cambiar la configuración + + Enable master oscilloscope by default + - Compress project files per default - Comprimir archivos de proyecto por defecto + + Enable all note labels in piano roll + - One instrument track window mode - Una ventana de instrumento a la vez + + Enable compact track buttons + - HQ-mode for output audio-device - modo HQ para el dispositivo de salida de audio + + Enable one instrument-track-window mode + - Compact track buttons - Botones de pista compactos + + 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 - Enable note labels in piano roll - Nombre de las notas en el piano roll - - - Enable waveform display by default - Activar osciloscopio por defecto - - + Keep effects running even without input Mantener los efectos en proceso aún sin señal de entrada - Create backup file when saving a project - Crear un archivo de respaldo al guardar un proyecto + + + Audio + Audio - LANGUAGE - IDIOMA + + Audio interface + - Paths - Lugares + + 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-plugin directory - Directorio de complementos VST + + VST plugins directory + + + LADSPA plugins directories + + + + + SF2 directory + Directorio SF2 + + + + Default SF2 + + + + + GIG directory + Directorio GIG + + + + Theme directory + + + + Background artwork Imágenes de fondo - STK rawwave directory - Directorio para STK rawwave + + Some changes require restarting. + - Default Soundfont File - Archivo SoundFont por defecto + + Autosave interval: %1 + - Performance settings - Configuración de rendimiento + + Choose the LMMS working directory + - UI effects vs. performance - Efectos gráficos vs. rendimiento + + Choose your VST plugins directory + - Smooth scroll in Song Editor - Avance suave en Editor de Canción + + Choose your LADSPA plugins directory + - Show playback cursor in AudioFileProcessor - Mostrar cursor de reproducción en el AudioFileProcessor + + Choose your default SF2 + - Audio settings - Configuración de Audio + + Choose your theme directory + - AUDIO INTERFACE - INTERFAZ DE AUDIO + + Choose your background picture + - MIDI settings - Configuración MIDI - - - MIDI INTERFACE - INTERFAZ MIDI + + + Paths + Lugares + OK De acuerdo + Cancel Cancelar - Restart LMMS - Reiniciar LMMS - - - Please note that most changes won't take effect until you restart LMMS! - ¡Por favor nota que la mayoría de los cambios no tendrán efecto hasta que reinicies LMMS! - - + Frames: %1 Latency: %2 ms Cuadros: %1 Latencia: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Aquí puedes definir el tamaño del búfer interno usado por LMMS. Valores pequeños darán como resultado menor latencia pero también pueden provocar sonidos inutilizables o mal rendimiento, sobretodo en computadoras antiguas o en sistemas sin un núcleo con tiempo real. - - - Choose LMMS working directory - Elige el directorio de trabajo de LMMS - - - Choose your VST-plugin directory - Elige tu directorio de complementos VST - - - Choose artwork-theme directory - Elige el directorio de temas (apariencia) - - - Choose LADSPA plugin directory - Elige el directorio de complementos LADSPA - - - Choose STK rawwave directory - Elige el directorio de STK rawwave - - - Choose default SoundFont - Elige una SoundFont por defecto - - - Choose background artwork - Elige una imagen para el fondo - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - Aquí puedes elegir tu interfaz de audio preferida. Dependiendo de la configuración de tu sistema durante la compilación, puedes elegir entre ALSA, JACK, OSS y otros. Debajo verás un cuadro que te permitirá configurar la interfaz de audio seleccionada. - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - Aquí puedes elegir tu interfaz MIDI preferida. Dependiendo de la configuración de tu sistema durante la compilación, puedes elegir entre ALSA, OSS y otros.Debajo verás un cuadro en el que podrás configurar la interfaz MIDI que hayas elegido. - - - Reopen last project on start - Abrir el último proyecto al iniciar - - - Directories - Directorios - - - Themes directory - Directorio de temas - - - GIG directory - Directorio GIG - - - SF2 directory - Directorio SF2 - - - LADSPA plugin directories - Directorios de complementos LADSPA - - - Auto save - Auto guardado - - + Choose your GIG directory Elige tu directorio GIG + Choose your SF2 directory Elige tu directorio SF2 + minutes minutos + minute minuto - Display volume as dBFS - Mostrar volumen en dBFS - - - Enable auto-save - Habilitar Auto-Guardado - - - Allow auto-save while playing - Permitir auto-guardado durante la reproducción - - + Disabled Inhabilitado + + + SidInstrument - Auto-save interval: %1 - Intervalo de auto-guardado: %1 + + Cutoff frequency + Frecuencia de corte - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Define el tiempo entre auto-guardados en %1. -Recuerda también guardar tu proyecto manualmente. Puedes elegir no guardar automáticamente durante la reproducción, lo cual algunos sistemas anteriores encuentran difícil de realizar. + + Resonance + Resonancia + + + + 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 + + + Close + Cerrar Song + Tempo Tempo + Master volume Volumen maestro + Master pitch Transporte - Project saved - Proyecto guardado + + Aborting project load + - The project %1 is now saved. - El proyecto %1 ha sido guardado. + + Project file contains local paths to plugins, which could be used to run malicious code. + - 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 - - - Empty project - Proyecto vacío - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Este proyecto está vacío por lo cual no tiene sentido exportarlo. ¡Por favor añade primero algunos elementos en el Editor de Canción! - - - Select directory for writing exported tracks... - Elige en qué directorio se escribirán las pistas exportadas... - - - untitled - Sin título - - - Select file for project-export... - Selecciona un archivo para exportar proyecto... - - - The following errors occured while loading: - Los siguientes errores ocurrieron durante la carga: - - - MIDI File (*.mid) - Archivo MIDI (*.mid) + + Can't load project: Project file contains local paths to plugins. + + LMMS Error report Reporte de errores LMMS - Save project - Guardar proyecto + + (repeated %1 times) + + + + + The following errors occurred while loading: + SongEditor + Could not open file No se puede abrir el archivo - Could not write file - No se puede escribir 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 + + + + + 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. - Tempo - Tempo - - - TEMPO/BPM - TEMPO/GPM - - - tempo of song - tempo de la canción - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - El 'tempo' de una canción se define en golpes por minuto (GPM). Si quieres cambiar el tempo de tu canción, modifica este valor. En compases de 4 tiempos (los que usarás la mayoría de las veces, ¡sino siempre!), el valor del tempo entre 4 indicará cuántos compases se tocan en un minuto (1golpe = 1 beat = 1 tiempo de compás, por lo tanto GPM/4 = compases x minuto). - - - High quality mode - Modo de alta calidad - - - Master volume - Volumen maestro - - - master volume - volumen maestro - - - Master pitch - Transporte - - - master pitch - transporte - - - Value: %1% - Valor: %1% - - - Value: %1 semitones - Valor: %1 semitonos - - - 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. - No se pudo abrir el archivo %1 para escritura. Probablemente no tienes permiso de escritura sobre este archivo. Asegúrate de tener acceso de escritura a este archivo e inténtalo nuevamente. - - - template - plantilla - - - project - proyecto - - + Version difference Diferencia de versión - This %1 was created with LMMS %2. - Este %1 fue creado con LMMS %2. + + 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 + Song-Editor Editor de Canción + Play song (Space) Reproducir canción (Espacio) + Record samples from Audio-device Grabar muestras desde el Dispositivo de Audio + 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 + Stop song (Space) Detener canción (Espacio) - Add beat/bassline - Agregar Ritmo/bajo - - - Add sample-track - Agregar pista de muestras - - - Add automation-track - Agregar pista de Automatización - - - Draw mode - Modo de dibujo - - - Edit mode (select and move) - Modo de edición (seleccionar y mover) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Haz click aquí si deseas reproducir la canción completa. La reproducción comenzará en el marcador de posición de canción. Puedes mover este marcador incluso durante la reproducción. - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Haz click aquí para detener la reproducción de la canción. El marcador de posición de canción volverá al inicio de tu canción. - - + Track actions Acciones de pista + + Add beat/bassline + Agregar Ritmo/bajo + + + + Add sample-track + Agregar pista de muestras + + + + Add automation-track + Agregar pista de Automatización + + + 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 + + + + + Insert bar + + + + + Remove bar + + + + Zoom controls Controles de Acercamiento - - - SpectrumAnalyzerControlDialog - Linear spectrum - Espectro lineal + + Horizontal zooming + - Linear Y axis - Eje Y lineal + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - Espectro lineal + + Hint + Pista - Linear Y axis - Eje Y lineal - - - Channel mode - Modo del canal + + Move recording curser using <Left/Right> arrows + SubWindow + Close Cerrar + Maximize Maximizar + Restore Restaurar @@ -6722,81 +13066,110 @@ Asegúrate de tener al menos permisos de lectura sobre este archivo e inténtalo TabWidget + + Settings for %1 Configuración para %1 + + TemplatesMenu + + + New from template + Nuevo desde plantilla + + TempoSyncKnob + + Tempo Sync Sincronizar al Tempo + No Sync Sin Sincro + Eight beats Ocho tiempos + Whole note Redonda + Half note Blanca + Quarter note Negra + 8th note Corchea + 16th note Semicorchea + 32nd note Fusa + Custom... Personalizado... + Custom Personalizado + Synced to Eight Beats Sincronizado a ocho tiempos + Synced to Whole Note Sincronizado a Redondas + Synced to Half Note Sincronizado a Blancas + Synced to Quarter Note Sincronizado a Negras + Synced to 8th Note Sincronizado a Corcheas + Synced to 16th Note Sincronizado a Semicorcheas + Synced to 32nd Note Sincronizado a Fusas @@ -6804,30 +13177,37 @@ Asegúrate de tener al menos permisos de lectura sobre este archivo e inténtalo TimeDisplayWidget - click to change time units - Haz click aquí para modificar las unidades de tiempo + + Time units + + MIN MIN + SEC SEG + MSEC MSEG + BAR COMPAS + BEAT PULSO + TICK TICK @@ -6835,45 +13215,50 @@ Asegúrate de tener al menos permisos de lectura sobre este archivo e inténtalo TimeLineWidget - Enable/disable auto-scrolling - Activar/Desactivar avance automático + + Auto scrolling + - Enable/disable loop-points - Activar/Desactivar blucle + + Loop points + - After stopping go back to begin - Al detenerse volver al principio + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Mantén <Shift> para mover el punto de bucle inicial. Presiona <%1> para desactivar los puntos de bucle magnéticos. - Track + Mute Silencio + Solo Solo @@ -6881,305 +13266,492 @@ Asegúrate de tener al menos permisos de lectura sobre este archivo e inténtalo 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... - Importing MIDI-file... - Importando archivo MIDI... + + 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... + - TrackContentObject + Clip + Mute Silencio - TrackContentObjectView + ClipView + Current position Posición actual - Hint - Pista - - - Press <%1> and drag to make a copy. - Presiona <%1> y arrastra para crear una copia. - - + Current length Duración actual - Press <%1> for free resizing. - Presiona <%1> para redimensionar libremente. - - + + %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 + + + + + Merge Selection + + + + Copy Copiar + + Copy selection + + + + 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 + + + Paste + Pegar + TrackOperationsWidget - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Presiona <%1> al hacer click en el area de agarre para iniciar una nueva accion de 'arrastrar y soltar'. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + - Actions for this track - Acciones para esta pista + + Actions + + + Mute Silencio + + Solo Solo - Mute this track - Silenciar esta pista + + 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 - FX %1: %2 + + 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 - Assign to new FX Channel - Asignar a un nuevo Canal FX + + Change color + Cambiar color + + + + Reset color to default + Restaurar el color por defecto + + + + Set random color + + + + + Clear clip colors + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - Usar modulación de fase para modular el oscilador 1 con el oscilador 2 + + Modulate phase of oscillator 1 by oscillator 2 + - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Usar modulación de amplitud para modular el oscilador 1 con el oscilador 2 + + Modulate amplitude of oscillator 1 by oscillator 2 + - Mix output of oscillator 1 & 2 - Mezclar la salida de los osciladores 1 y 2 + + Mix output of oscillators 1 & 2 + + Synchronize oscillator 1 with oscillator 2 Sincronizar el oscilador 1 con el oscilador 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Usar modulación de frecuencia para modular el oscilador 1 con el oscilador 2 + + Modulate frequency of oscillator 1 by oscillator 2 + - Use phase modulation for modulating oscillator 2 with oscillator 3 - Usar modulación de fase para modular el oscilador 2 con el oscilador 3 + + Modulate phase of oscillator 2 by oscillator 3 + - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Usar modulación de amplitud para modular el oscilador 2 con el oscilador 3 + + Modulate amplitude of oscillator 2 by oscillator 3 + - Mix output of oscillator 2 & 3 - Mezclar la salida de los osciladores 2 y 3 + + Mix output of oscillators 2 & 3 + + Synchronize oscillator 2 with oscillator 3 Sincronizar el oscilador 2 con el oscilador 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Usar modulación de frecuencia para modular el oscilador 2 con el oscilador 3 + + Modulate frequency of oscillator 2 by oscillator 3 + + Osc %1 volume: Osc %1 Volumen: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Con esta perilla puedes establecer el volumen del oscilador %1. Al fijar un valor de 0 el oscilador se apaga. De lo contrario podrás oír el oscilador tan alto como lo especifiques aquí. - - + Osc %1 panning: Osc %1 paneo: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Con esta perilla puedes establecer el paneo del oscilador %1. Un valor de -100 significa 100% a la izquierda y un valor de 100 mueve el oscilador totalmente a la derecha. - - + Osc %1 coarse detuning: Osc %1 desafinación gruesa: + semitones semitonos - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Con este control usted podrá establecer la desafinación gruesa del oscilador %1. Usted puede desafinar el oscilador en 24 semitonos (2 octavas) arriba y abajo. Esto es útil para la creación de sonidos armonizados (acordes). - - + Osc %1 fine detuning left: Osc %1 desafinación fina izquierda: + + cents cents - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Esta perilla define la desafinación fina del canal izquierdo del oscilador %1. La extensión es de -100 cents a +100 cents. Util para crear sonidos 'gordos'. - - + Osc %1 fine detuning right: Osc %1 desafinación fina derecha: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Esta perilla define la desafinación fina del canal derecho del oscilador %1. La extensión es de -100 cents a +100 cents. Util para crear sonidos 'gordos'. - - + Osc %1 phase-offset: Osc %1 desfase: + + degrees grados - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Con esta perilla puedes definir el desfase del oscilador %1. Esto significa que puedes mover el punto de la onda en el cual el oscilador comienza a oscilar. Por ejemplo, en una onda sinusoidal con un desfase de 180 grados la onda irá primero hacia abajo. Pasará lo mismo con una onda cuadrada. - - + Osc %1 stereo phase-detuning: Osc %1 desafinación de fase estéreo: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Esta perilla define la diferencia de fase estéreo del oscilador %1. La diferencia de fase estéreo especifica cuan grande será la diferencia entre el desfase de los canales izquierdo y derecho. Esta función le da mayor amplitud a los sonidos en el campo estéreo. + + Sine wave + Onda sinusoidal - Use a sine-wave for current oscillator. - Usar una onda sinusoidal para el oscilador actual. + + Triangle wave + Onda triangular - Use a triangle-wave for current oscillator. - Usar una onda triangular para el oscilador actual. + + Saw wave + Onda de sierra - Use a saw-wave for current oscillator. - Usar una onda de sierra para el oscilador actual. + + Square wave + Onda cuadrada - Use a square-wave for current oscillator. - Usar una onda cuadrada para el oscilador actual. + + Moog-like saw wave + - Use a moog-like saw-wave for current oscillator. - Usar una onda de sierra tipo moog para el oscilador actual. + + Exponential wave + Onda Exponencial - Use an exponential wave for current oscillator. - Usar una onda exponencial para el oscilador actual. + + White noise + Ruido blanco - Use white-noise for current oscillator. - Usar ruido-blanco para el oscilador actual. + + User-defined wave + + + + + VecControls + + + Display persistence amount + - Use a user-defined waveform for current oscillator. - Usar una onda definida por el usuario para el oscilador actual. + + 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 Incrementar el número de versión + Decrement version number Disminuír el número de versión + + Save Options + + + + already exists. Do you want to replace it? ¡Ya existe! ¿Deseas reemplazarlo? @@ -7187,156 +13759,117 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - Open other VST-plugin - Abrir otro complemento VST + + + Open VST plugin + - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Haz click aquí si deseas abrir otro complemento VST. Se mostrará un diálogo que te permitirá elegir el archivo que desees. + + Control VST plugin from LMMS host + - Show/hide GUI - Mostrar/Ocultar IGU - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Haz click aquí para mostrar u ocultar la interfaz gráfica de usuario (IGU) de tu complemento VST. - - - Turn off all notes - Apagar todas las notas - - - Open VST-plugin - Abrir un complemento VST - - - DLL-files (*.dll) - archivos DDL (*.dll) - - - EXE-files (*.exe) - archivos EXE (*.exe) - - - No VST-plugin loaded - No se ha cargado ningún complemento VST - - - Control VST-plugin from LMMS host - Controlar el complemento VST desde el anfitrión LMMS - - - Click here, if you want to control VST-plugin from host. - Haz click aquí si deseas controlar tu complemento VST desde el anfitrión. - - - Open VST-plugin preset - Abrir preconfiguración de VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Haz click aquí si deseas abrir otra preconfiguración de VST (*.fxp, *.fxb). + + Open VST plugin preset + + Previous (-) Anterior (-) - Click here, if you want to switch to another VST-plugin preset program. - Haz click aquí si deseas cambiar a otro programa de preconfiguración de VST. - - + Save preset Guardar preconfiguración - Click here, if you want to save current VST-plugin preset program. - Haz click aquí si deseas guardar el programa de preconfiguración del VST actual. - - + Next (+) Siguiente (+) - Click here to select presets that are currently loaded in VST. - Haz click aquí para elegir preconfiguraciones que estén actualmente cargadas en el VST. + + 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) + + + + No VST plugin loaded + + + + Preset Preconfiguración + by por + - VST plugin control - control de complemento VST - - VisualizationWidget - - click to enable/disable visualization of master-output - Haz click aquí para activar o desactivar la visualización de la salida principal - - - Click to enable - Click para activar - - VstEffectControlDialog + Show/hide Mostrar/Ocultar - Control VST-plugin from LMMS host - Controlar el complemento VST desde el anfitrión LMMS + + Control VST plugin from LMMS host + - Click here, if you want to control VST-plugin from host. - Haz click aquí si deseas controlar tu complemento VST desde el anfitrión. - - - Open VST-plugin preset - Abrir preconfiguración de VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Haz click aquí si deseas abrir otra preconfiguración de VST (*.fxp, *.fxb). + + Open VST plugin preset + + Previous (-) Anterior (-) - Click here, if you want to switch to another VST-plugin preset program. - Haz click aquí si deseas cambiar a otro programa de preconfiguración de VST. - - + Next (+) Siguiente (+) - Click here to select presets that are currently loaded in VST. - Haz click aquí para elegir preconfiguraciones que estén actualmente cargadas en el VST. - - + Save preset Guardar preconfiguración - Click here, if you want to save current VST-plugin preset program. - Haz click aquí si deseas guardar el programa de preconfiguración del VST actual. - - + + Effect by: Efecto por: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7344,173 +13877,207 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - Loading plugin - Cargando complemento + + + The VST plugin %1 could not be loaded. + El complemento VST %1 no se ha podido cargar. + 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 - Please wait while loading VST plugin... - Por favor espera mientras se carga el complemento VST... + + Loading plugin + Cargando complemento - The VST plugin %1 could not be loaded. - El complemento VST %1 no se ha podido cargar. + + 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 @@ -7518,2802 +14085,2251 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - 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 with output of A2 - Modular la amplitud de A1 con la salida de A2 - - - Ring-modulate A1 and A2 - Modulación en anillo A1 y A2 - - - Modulate phase of A1 with output of A2 - Modular la fase de A1 con la salida de A2 - - - Mix output of B2 to B1 - Mezclar la salida de B2 con B1 - - - Modulate amplitude of B1 with output of B2 - Modular la amplitud de B1 con la salida de B2 - - - Ring-modulate B1 and B2 - Modulación en anillo B1 y B2 - - - Modulate phase of B1 with output of B2 - Modular la fase de B1 con la salida de 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 - - - Click to load a waveform from a sample file - Haz click aquí para cargar una onda de un archivo de muestra - - - Phase left - Fase izquierda - - - Click to shift phase by -15 degrees - Haz click aquí para cambiar la fase en -15 grados - - - Phase right - Fase derecha - - - Click to shift phase by +15 degrees - Haz click aquí para cambiar la fase en +15 grados - - - Normalize - Normalizar - - - Click to normalize - Haz click para normalizar - - - Invert - Invertir - - - Click to invert - Haz click para invertir - - - Smooth - Suavizar - - - Click to smooth - Haz click para suavizar - - - Sine wave - Onda Sinusoidal - - - Click for sine wave - Haz click aquí para elegir una onda sinusoidal - - - Triangle wave - Onda triangular - - - Click for triangle wave - Haz click aquí para elegir una onda triangular - - - Click for saw wave - Haz click aquí para elegir una onda de sierra - - - Square wave - Onda Cuadrada - - - Click for square wave - Haz click aquí para elegir una onda cuadrada - - + + + + Volume Volumen + + + + Panning Paneo + + + + Freq. multiplier Multiplicador de frec. + + + + Left detune Desafinación izquierda + + + + + + + + cents cents + + + + 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 - - - ZynAddSubFxInstrument - Portamento - Portamento + + Select oscillator A1 + Seleccionar oscilador A1 - Filter Frequency - Frecuencia del Filtro + + Select oscillator A2 + Seleccionar oscilador A2 - Filter Resonance - Resonancia del Filtro + + Select oscillator B1 + Seleccionar oscilador B1 - Bandwidth - Ancho De Banda + + Select oscillator B2 + Seleccionar oscilador B2 - FM Gain - Ganancia FM + + Mix output of A2 to A1 + Mezclar la salida de A2 con A1 - Resonance Center Frequency - Frecuencia Central de Resonancia + + Modulate amplitude of A1 by output of A2 + - Resonance Bandwidth - Ancho de banda de Resonancia + + Ring modulate A1 and A2 + - Forward MIDI Control Change Events - Enviar Eventos MIDI de Cambio de Control - - - - ZynAddSubFxView - - Show GUI - Mostrar IGU + + Modulate phase of A1 by output of A2 + - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Haz click aquí para mostrar u ocultar la interfaz gráfica de usuario (IGU) de ZynAddSubFX. + + Mix output of B2 to B1 + Mezclar la salida de B2 con B1 - Portamento: - Portamento: + + Modulate amplitude of B1 by output of B2 + - PORT - PORT + + Ring modulate B1 and B2 + - Filter Frequency: - Frecuencia del Filtro: - - - FREQ - FREC - - - Filter Resonance: - Resonancia del Filtro: - - - RES - RESO - - - Bandwidth: - Ancho De Banda: - - - BW - AdB - - - FM Gain: - Ganancia FM: - - - 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 - Enviar Cambios de Control MIDI - - - - audioFileProcessor - - Amplify - Amplificar - - - Start of sample - Inicio de la muestra - - - End of sample - Fin de la muestra - - - Reverse sample - Reproducir la muestra en reversa - - - Stutter - Tartamudeo - - - Loopback point - Punto de bucle - - - Loop mode - Modo Bucle - - - Interpolation mode - Modo de Interpolación - - - None - Ninguno - - - Linear - Lineal - - - Sinc - Sinc - - - Sample not found: %1 - Muestra no encontrada: %1 - - - - bitInvader - - Samplelength - Longitud de la muestra - - - - bitInvaderView - - Sample Length - Longitud de la muestra - - - Sine wave - Onda Sinusoidal - - - Triangle wave - Onda triangular - - - Saw wave - Onda de sierra - - - Square wave - Onda Cuadrada - - - White noise wave - Ruido blanco - - - User defined wave - Onda definida por el usuario - - - Smooth - Suavizar - - - Click here to smooth waveform. - Haz click aquí para suavizar la onda. - - - Interpolation - Interpolación - - - Normalize - Normalizar + + 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. - Click for a sine-wave. - Haz click aquí para elegir una onda sinusoidal. + + Load waveform + Cargar onda - Click here for a triangle-wave. - Haz click aquí para elegir una onda triangular. + + Load a waveform from a sample file + Cargar una forma de onda desde un archivo de muestra - Click here for a saw-wave. - Haz click aquí para elegir una onda de sierra. + + Phase left + Fase izquierda - Click here for a square-wave. - Haz click aquí para elegir una onda cuadrada. + + Shift phase by -15 degrees + - Click here for white-noise. - Haz click aquí para elegir ruido blanco. + + Phase right + Fase derecha - Click here for a user-defined shape. - Haz click aquí para elegir una onda personalizada. - - - - dynProcControlDialog - - INPUT - ENTRADA + + Shift phase by +15 degrees + - Input gain: - Ganancia de Entrada: + + + Normalize + Normalizar - OUTPUT - SALIDA + + + Invert + Invertir - 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 waveform - Restaurar forma de onda - - - Click here to reset the wavegraph back to default - Haz click aquí para restaurar el gráfico de onda por defecto - - - Smooth waveform - Suavizar onda - - - Click here to apply smoothing to wavegraph - Haz click aquí para aplicar suavizado al gráfico de onda - - - Increase wavegraph amplitude by 1dB - Aumentar la amplitud del gráfico de onda en 1dB - - - Click here to increase wavegraph amplitude by 1dB - Haz click aquí para aumentar la amplitud del gráfico de onda en 1dB - - - Decrease wavegraph amplitude by 1dB - Disminuir la amplitud del gráfico de onda en 1dB - - - Click here to decrease wavegraph amplitude by 1dB - Haz click aquí para disminuir la amplitud del gráfico de onda en 1dB - - - Stereomode Maximum - Modo Estéreo Máximo - - - Process based on the maximum of both stereo channels - Procesar basado en el máximo de ambos canales estéreo - - - Stereomode Average - Modo Estéreo Promedio - - - Process based on the average of both stereo channels - Procesar basado en el promedio de ambos canales estéreo - - - Stereomode Unlinked - Modo Estéreo Desenlazado - - - 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 - - - - expressiveView - - Select oscillator W1 - Seleccionar Oscilador W1 - - - Select oscillator W2 - Seleccionar Oscilador W2 - - - Select oscillator W3 - Seleccionar Oscilador W3 - - - Select OUTPUT 1 - Seleccionar SALIDA 1 - - - Select OUTPUT 2 - Seleccionar SALIDA 2 - - - Open help window - Abrir Ventana De Ayuda + + + Smooth + Suavizar + + Sine wave - Onda sinusoidal - - - Click for a sine-wave. - Haz click aquí para elegir una onda sinusoidal. - - - Moog-Saw wave - Moog-Saw wave - - - Click for a Moog-Saw-wave. - Clic Aquí Para La Moog-Saw-wave. - - - Exponential wave - Onda Exponencial - - - Click for an exponential wave. - Clic Aquí para Obtener una Onda Exponencial. - - - Saw wave - Onda de sierra - - - Click here for a saw-wave. - Haz click aquí para elegir una onda de sierra. - - - User defined wave - Onda definida por el usuario - - - Click here for a user-defined shape. - Haz click aquí para elegir una onda personalizada. + Onda Sinusoidal + + + Triangle wave Onda triangular - Click here for a triangle-wave. - Haz click aquí para elegir una 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 + + + 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 - Click here for a square-wave. - Haz click aquí para seleccionar una onda cuadrada. - - - White noise wave + + + White noise Ruido blanco - Click here for white-noise. - Haz click aquí para elegir 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 - fxLineLcdSpinBox + ZynAddSubFxInstrument - Assign to: - Asignar a: + + Portamento + Portamento - New FX Channel - Nuevo Canal FX + + 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 + KickerInstrument + Start frequency Frecuencia Inicial + End frequency Frecuencia Final - Gain - Ganancia - - + Length Duración - Distortion Start - Inicio de la distorsión + + Start distortion + - Distortion End - Final de la distorsión + + End distortion + - Envelope Slope - Curvatura de la Envolvente + + Gain + Ganancia + + Envelope slope + + + + Noise Ruido + Click Chasquido - Frequency Slope - Curvatura de la Frecuencia + + Frequency slope + + Start from note Empezar en la nota + End to note Terminar en la nota - kickerInstrumentView + KickerInstrumentView + Start frequency: Frecuencia Inicial: + End frequency: Frecuencia Final: + + Frequency slope: + + + + Gain: Ganancia: - Frequency Slope: - Curvatura de la Frecuencia: + + Envelope length: + - Envelope Length: - Longitud de la Envolvente: - - - Envelope Slope: - Curvatura de la Envolvente: + + Envelope slope: + + Click: Chasquido: + Noise: Ruido: - Distortion Start: - Inicio de la distorsión: + + Start distortion: + - Distortion End: - Final de la distorsión: + + End distortion: + - ladspaBrowserView + LadspaBrowserView + + Available Effects Efectos Disponibles + + Unavailable Effects Efectos No Disponibles + + Instruments Instrumentos + + Analysis Tools Herramientas de Análisis + + Don't know Desconocido - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Este diálogo muestra información de todos los complementos LADSPA que LMMS pudo encontrar. Se encuentran divididos en cinco (5) categorías basadas en una interpretación de los nombres y los tipos de puertos. - -Efectos Disponibles: son aquellos que pueden ser usados por LMMS. Para ello deben, primero y por sobre todo, ser efectos. O sea que deben tener tanto canales de entrada como de salida. LMMS identifica como canales de entrada a los puertos de audio que contengan 'IN' en su nombre. Los canales de salida se identifican por la palabra 'OUT'. Además, el efecto debe tener la misma cantidad de canales de entrada como de salida y ser capaz de ejecutarse en tiempo real. - -Efectos No Disponibles: son aquellos que aún siendo identificados como efectos, no tienen el mismo número de entradas que de salidas y/o no pueden ser ejecutados en tiempo real. - -Instrumentos: son complementos que sólo poseen canales de salida. - -Herramientas de Análisis: son complementos que sólo cuentan con canales de entrada. - -Desconocido: son complementos en los cuales no se pudo identificar ningún canal de entrada ni de salida. - -Haciendo doble click en cualquier complemento se mostrará la información de sus puertos. - - + Type: Tipo: - ladspaDescription + LadspaDescription + Plugins Complementos + Description Descripción - ladspaPortDialog + 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 + 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 + 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 + MalletsInstrument + Hardness Dureza + Position Posición - Vibrato Gain - Ganancia del Vibrato + + Vibrato gain + - Vibrato Freq - Frec del Vibrato + + Vibrato frequency + - Stick Mix - Golpe + + Stick mix + + Modulator Modulador + Crossfade Fundido cruzado - LFO Speed + + LFO speed Velocidad del LFO - LFO Depth - Profundidad 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 - Wood1 - Madera1 + + Wood 1 + + Reso Reso - Wood2 - Madera2 + + Wood 2 + + Beats Latidos - Two Fixed - Dos-Fijos + + Two fixed + + Clump Golpe seco - Tubular Bells - Campanas tubulares + + Tubular bells + - Uniform Bar - Barra uniforme + + Uniform bar + - Tuned Bar - Barra afinada + + Tuned bar + + Glass Vidrio - Tibetan Bowl - Cuencos Tibetanos + + Tibetan bowl + - malletsInstrumentView + MalletsInstrumentView + Instrument Instrumento + Spread Propagación + Spread: Propagación: - Hardness - Dureza - - - Hardness: - Dureza: - - - Position - Posición - - - Position: - Posición: - - - Vib Gain - Gan Vib - - - Vib Gain: - Gan Vib: - - - Vib Freq - Frec Vib - - - Vib Freq: - Frec Vib: - - - Stick Mix - Golpe - - - Stick Mix: - Golpe: - - - Modulator - Modulador - - - Modulator: - Modulador: - - - Crossfade - Fundido cruzado - - - Crossfade: - Fundido cruzado: - - - LFO Speed - Velocidad del LFO - - - LFO Speed: - Velocidad del LFO: - - - LFO Depth - Profundidad del LFO - - - LFO Depth: - Profundidad del LFO: - - - ADSR - ADSR - - - ADSR: - ADSR: - - - Pressure - Presión - - - Pressure: - Presión: - - - Speed - Velocidad - - - Speed: - Velocidad: - - + 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 + ManageVSTEffectView + - VST parameter control - control de parámetros VST - VST Sync - Sinc VST - - - Click here if you want to synchronize all parameters with VST plugin. - Haz click aquí si deseas sincronizar todos los parámetros con el complemento VST. + + VST sync + + + Automated Automatizado - Click here if you want to display automated parameters only. - Haz click aquí si deseas mostrar sólo los parámetros automatizados. - - + Close Cerrar - - Close VST effect knob-controller window. - Cerrar la ventana de controles de efecto del VST. - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - control de complementos VST + VST Sync Sinc VST - Click here if you want to synchronize all parameters with VST plugin. - Haz click aquí si deseas sincronizar todos los parámetros con el complemento VST. - - + + Automated Automatizado - Click here if you want to display automated parameters only. - Haz click aquí si deseas mostrar sólo los parámetros automatizados. - - + Close Cerrar - - Close VST plugin knob-controller window. - Cerrar la ventana de controles del complemento VST. - - opl2instrument - - Patch - Ajuste - - - Op 1 Attack - Op 1 Ataque - - - Op 1 Decay - Op 1 Caída - - - Op 1 Sustain - Op 1 Sostén - - - Op 1 Release - Op 1 Disipación - - - Op 1 Level - Op 1 Nivel - - - Op 1 Level Scaling - Op 1 Escalado del Nivel - - - Op 1 Frequency Multiple - Op 1 Multiplicador de Frecuencia - - - Op 1 Feedback - Op 1 Realimentación - - - Op 1 Key Scaling Rate - Op 1 tasa de escalado del teclado - - - Op 1 Percussive Envelope - Op 1 Envolvente Percusivo - - - Op 1 Tremolo - Op 1 Trémolo - - - Op 1 Vibrato - Op 1 Vibrato - - - Op 1 Waveform - Op 1 Forma de onda - - - Op 2 Attack - Op 2 Ataque - - - Op 2 Decay - Op 2 Caída - - - Op 2 Sustain - Op 2 Sostén - - - Op 2 Release - Op 2 Disipación - - - Op 2 Level - Op 2 Nivel - - - Op 2 Level Scaling - Op 2 Escalado del Nivel - - - Op 2 Frequency Multiple - Op 2 Multiplicador de Frecuencia - - - Op 2 Key Scaling Rate - Op 2 tasa de escalado del teclado - - - Op 2 Percussive Envelope - Op 2 Envolvente Percusivo - - - Op 2 Tremolo - Op 2 Trémolo - - - Op 2 Vibrato - Op 2 Vibrato - - - Op 2 Waveform - Op 2 Forma de onda - - - FM - FM - - - Vibrato Depth - Profundidad del Vibrato - - - Tremolo Depth - Profundidad del Trémolo - - - - opl2instrumentView - - Attack - Ataque - - - Decay - Caída - - - Release - Disipación - - - Frequency multiplier - Multiplicador de frecuencia - - - - organicInstrument + OrganicInstrument + Distortion Distorsión + Volume Volumen - organicInstrumentView + 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: - cents - cents - - - The distortion knob adds distortion to the output of the instrument. - La perilla "distorsión" añade distorsión a la salida del instrumento. - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - La perilla "volumen" controla el volumen de salida del instrumento. Es acumulativo con el control de volumen de la ventana del instrumento. - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - El botón "Aleatorizar" define valores aleatorios para todas las perillas con excepción de: armónicos, volumen principal y distorsión. - - + Osc %1 stereo detuning Desafinación estéreo del Osc %1 + + cents + cents + + + Osc %1 harmonic: armónicos del Osc %1: - FreeBoyInstrument - - Sweep time - Duración del barrido - - - Sweep direction - Dirección del barrido - - - Sweep RtShift amount - Cantidad RTShift de barrido - - - Wave Pattern Duty - Ciclo de trabajo del patrón de onda - - - 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 - - - Right Output level - Nivel de Salida derecha - - - Left Output level - Nivel de Salida izquierda - - - 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 - - - Shift Register width - Cambiar Amplitud del Registro - - - - FreeBoyInstrumentView - - Sweep Time: - Duración del barrido: - - - Sweep Time - Duración del barrido - - - Sweep RtShift amount: - Cantidad RTShift de barrido: - - - Sweep RtShift amount - Cantidad RTShift de barrido - - - Wave pattern duty: - Ciclo de trabajo del patrón de onda: - - - Wave Pattern Duty - Ciclo de trabajo del patrón de onda - - - Square Channel 1 Volume: - Canal de onda cuadrada 1 Volumen: - - - 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 - - - Wave pattern duty - Ciclo de trabajo del patrón de onda - - - Square Channel 2 Volume: - Canal de onda cuadrada 2 Volumen: - - - Square Channel 2 Volume - Canal de onda cuadrada 2 Volumen - - - Wave Channel Volume: - Volumen del canal de Onda: - - - Wave Channel Volume - Volumen del canal de Onda - - - Noise Channel Volume: - Volumen del canal de Ruido: - - - Noise Channel Volume - Volumen del canal de Ruido - - - SO1 Volume (Right): - SO1 Volumen (der): - - - SO1 Volume (Right) - SO1 Volumen (der) - - - SO2 Volume (Left): - SO2 Volumen (Izq): - - - SO2 Volume (Left) - SO2 Volumen (Izq) - - - 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 - Cambiar Amplitud del Registro - - - Channel1 to SO1 (Right) - Canal 1 a SO1 (der) - - - Channel2 to SO1 (Right) - Canal 2 a SO1 (der) - - - Channel3 to SO1 (Right) - Canal 3 a SO1 (der) - - - Channel4 to SO1 (Right) - Canal 4 a SO1 (der) - - - Channel1 to SO2 (Left) - Canal 1 a SO2 (izq) - - - Channel2 to SO2 (Left) - Canal 2 a SO2 (izq) - - - Channel3 to SO2 (Left) - Canal 3 a SO2 (izq) - - - Channel4 to SO2 (Left) - Canal 4 a SO2 (izq) - - - Wave Pattern - Patrón de Onda - - - The amount of increase or decrease in frequency - La cantidad de aumento o disminución de frecuencia - - - The rate at which increase or decrease in frequency occurs - La tasa en la que aumenta o disminuye la frecuencia - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - El 'ciclo de trabajo' es la relación entre el tiempo que la señal se encuentra en estado "ON" (encendida) y el período total de la señal. - - - Square Channel 1 Volume - Canal de onda cuadrada 1 Volumen - - - The delay between step change - El retraso entre cada cambio de etapa - - - Draw the wave here - Dibuja la onda aquí - - - - patchesDialog + 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 - pluginBrowser - - no description - sin descripción - - - Incomplete monophonic imitation tb303 - Imitación monofónica incompleta del tb303 - - - Plugin for freely manipulating stereo output - Complemento para manipular libremente la salida estéreo - - - Plugin for controlling knobs with sound peaks - Complemento para controlar perillas a través de los picos de sonido - - - 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 - - - List installed LADSPA plugins - Listar los complementos LADSPA instalados - - - GUS-compatible patch instrument - Instrumento de "patches" compatible con GUS - - - Additive Synthesizer for organ-like sounds - Sintetizador Aditivo para crear sonidos estilo órgano - - - Tuneful things to bang on - Cosas melodiosas para pegarles - - - 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 LADSPA-effects inside LMMS. - complemento para usar efectos LADSPA a voluntad en LMMS. - - - Filter for importing MIDI-files into LMMS - Filtro para importar archivos MIDI en 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. - - - Player for SoundFont files - Reproductor de archivos SoundFont - - - Emulation of GameBoy (TM) APU - Emulación del APU de GameBoy (TM) - - - Customizable wavetable synthesizer - Sintetizador de tabla de ondas personalizable - - - Embedded ZynAddSubFX - ZynAddSubFX integrado - - - 2-operator FM Synth - Sintetizador FM de 2 operadores - - - Filter for importing Hydrogen files into LMMS - Filtro para importar archivos de Hydrogen a LMMS - - - LMMS port of sfxr - Port de sfxr para LMMS - - - Monstrous 3-oscillator synth with modulation matrix - Monstruoso sinte de 3 osciladores con matriz de modulación - - - Three powerful oscillators you can modulate in several ways - Tres poderosos osciladores que puedes modular de muchas maneras - - - A native amplifier plugin - Un complemento de amplificación nativo - - - Carla Rack Instrument - Bandeja de complementos Carla - - - 4-oscillator modulatable wavetable synth - Sintetizador de tabla de ondas de 4 osciladores modulables - - - plugin for waveshaping - complemento para modelado de ondas - - - Boost your bass the fast and simple way - Realza tus graves de forma rápida y fácil - - - Versatile drum synthesizer - Sintetizador de percusión versátil - - - 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 - - - plugin for processing dynamics in a flexible way - Complemento para procesar dinámicas de una manera flexible - - - Carla Patchbay Instrument - Bahía de Conexiones Carla - - - plugin for using arbitrary VST effects inside LMMS. - complemento para usar efectos VST a voluntad en LMMS. - - - Graphical spectrum analyzer plugin - Complemento analizador de espectro gráfico - - - A NES-like synthesizer - Un sintetizador tipo-NES - - - A native delay plugin - Un complemento de Delay nativo - - - Player for GIG files - Reproductor para archivos GIG - - - A multitap echo delay plugin - Un complemento de Multitap echo delay - - - A native flanger plugin - Un complemento Flanger nativo - - - An oversampling bitcrusher - Un reductor de bits de sobremuestreo - - - A native eq plugin - Un complemento de EQ nativo - - - A 4-band Crossover Equalizer - Un ecualizador cruzado de 4 bandas - - - A Dual filter plugin - Un complemento de filtro dual - - - Filter for exporting MIDI-files from LMMS - Filtro para exportar archivos MIDI desde LMMS - - - Reverb algorithm by Sean Costello - Algoritmo de reverberación por Sean Costello - - - Mathematical expression parser - Analizador de Expresión Matemática - - - - sf2Instrument + Sf2Instrument + Bank Banco + Patch Ajuste + Gain Ganancia + Reverb Reverberancia - Reverb Roomsize - Tamaño del recinto + + Reverb room size + - Reverb Damping - Absorción + + Reverb damping + - Reverb Width - Amplitud de la reverberancia + + Reverb width + - Reverb Level - Nivel de reverberancia + + Reverb level + + Chorus Coro - Chorus Lines - Líneas de coro + + Chorus voices + - Chorus Level - Nivel de coro + + Chorus level + - Chorus Speed - Velocidad de coro + + Chorus speed + - Chorus Depth - Profundidad de coro + + Chorus depth + + A soundfont %1 could not be loaded. Una soundfont %1 no se pudo cargar. - sf2InstrumentView - - Open other SoundFont file - Abrir otro archivo SoundFont - - - Click here to open another SF2 file - Haz click aquí para abrir otro archivo SF2 - - - Choose the patch - Elige el lote - - - Gain - Ganancia - - - Apply reverb (if supported) - Aplicar reverberancia (si es posible) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Este botón activa la reverberancia. Sirve para lograr efectos atractivos, pero sólo funciona en archivos que lo soportan. - - - Reverb Roomsize: - Tamaño del recinto: - - - Reverb Damping: - Absorción: - - - Reverb Width: - Amplitud de la reverberancia: - - - Reverb Level: - Nivel de reverberancia: - - - Apply chorus (if supported) - Aplicar coro (si es posible) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Este botón activa el efecto coro. Sirve para lograr interesantes efectos de eco, pero sólo funciona en archivos que lo soportan. - - - Chorus Lines: - Líneas de coro: - - - Chorus Level: - Nivel de coro: - - - Chorus Speed: - Velocidad de coro: - - - Chorus Depth: - Profundidad de coro: - + Sf2InstrumentView + + Open SoundFont file Abrir archivo SoundFont - SoundFont2 Files (*.sf2) - Archivos SoundFont2 (*.sf2) + + 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 + SfxrInstrument - Wave Form - Forma de Onda + + Wave + - sidInstrument + StereoEnhancerControlDialog - Cutoff - Corte - - - Resonance - Resonancia - - - 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 - Filtro de PasoAlto - - - Band-Pass filter - Filtro de PasoBanda - - - Low-Pass filter - Filtro de PasoBajo - - - Voice3 Off - Voz 3 apagada - - - MOS6581 SID - MOS6581 SID - - - MOS8580 SID - MOS8580 SID - - - Attack: - Ataque: - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - La tasa de ataque determina que tan rápido la salida de la Voz %1 llega desde cero al pico de amplitud. - - - Decay: - Caída: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - La tasa de Caída determina que tan rápido la salida cae desde el pico de amplitud hasta el nivel de Sostén seleccionado. - - - Sustain: - Sostén: - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - La salida de la Voz %1 mantendrá la amplitud de Sostén elegida mientras se mantenga presionada la tecla. - - - Release: - Disipación: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - La salida de la Voz %1 caerá desde la amplitud de Sostén a cero de acuerdo a la tasa de Disipación seleccionada. - - - Pulse Width: - Amplitud del Pulso: - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - La resolución de la Amplitud del Pulso permite variar suavemente la amplitud sin que haya variaciones evidentes. La Onda de Pulso del Oscilador %1 debe estar seleccionada para que el efecto sea audible. - - - Coarse: - Gruesa: - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - La desafinación gruesa permite desafinar la Voz %1 una octava hacia arriba o hacia abajo. - - - Pulse Wave - Onda de Pulso - - - Triangle Wave - Onda Triangular - - - SawTooth - Onda de Sierra - - - Noise - Ruido - - - Sync - Sincro - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - 'Sincro' sincroniza la frecuencia fundamental del Oscilador %1 con la frecuencia fundamental del Oscilador %2 produciendo efectos de "Sincronización Dura". - - - Ring-Mod - Mod-Anillo - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Mod-Anillo reemplaza la salida de Onda Triangular del Oscilador %1 con una combinación "Modulada en anillo" de los Osciladores %1 y %2. - - - Filtered - Filtrado - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Con 'Filtrado' activado, la Voz %1 se procesará a través del Filtro. Con 'Filtrado' desactivado, la Voz %1 pasará directamente a la salida y el Filtro no tendrá ningún efecto en ella. - - - Test - Prueba - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Cuando 'Prueba' está encendido, se restaura y mantiene el Oscilador %1 a cero hasta que apague 'Prueba'. - - - - stereoEnhancerControlDialog - - WIDE - ANCHO + + WIDTH + + Width: Amplitud: - stereoEnhancerControls + StereoEnhancerControls + Width Amplitud - stereoMatrixControlDialog + 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 + 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 + VestigeInstrument + Loading plugin Cargando complemento - Please wait while loading VST-plugin... - Por favor espera mientras se carga el complemento VST... + + Please wait while loading the VST plugin... + - vibed + 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 - Pan %1 - Pan %1 + + String %1 panning + - Detune %1 - Desafinación %1 + + String %1 detune + - Fuzziness %1 - Borrosidad %1 + + String %1 fuzziness + - Length %1 - Longitud %1 + + String %1 length + + Impulse %1 Impulso %1 - Octave %1 - Octava %1 + + String %1 + - vibedView + VibedView - Volume: - Volumen: - - - The 'V' knob sets the volume of the selected string. - La perilla 'V' define el volumen de la cuerda seleccionada. + + String volume: + + String stiffness: Rigidez de la cuerda: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - La perilla 'S' define la Rigidez de la cuerda, afectando el tiempo que la cuerda se mantiene vibrando. Una cuerda menos rígida vibrará por más tiempo. - - + Pick position: Posición del plectro: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - La perilla 'P' selecciona el lugar en el que la cuerda será 'pulsada'. A menor valor, más cerca del puente. - - + Pickup position: Posición del micrófono: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - La perilla 'PU' selecciona el lugar en donde se captarán las vibraciones de la cuerda seleccionada. Valores más bajos ubican el micrófono más cerca del puente. + + String panning: + - Pan: - Paneo: + + String detune: + - The Pan knob determines the location of the selected string in the stereo field. - La perilla 'Pan' determina la localización de la cuerda dentro del campo estéreo. + + String fuzziness: + - Detune: - Desafinación: + + String length: + - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - La Perilla de Desafinación modifica la altura de la cuerda seleccionada. Valores menores a cero llevarán la cuerda hacia los bemoles. Valores mayores la llevarán hacia los sostenidos (-0.1=bb, -0.05=b; 0=sin cambios; +0,05=#; +0,1=##). - - - Fuzziness: - Borrosidad: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - La perilla 'Slap' añade un poco de borrosidad a la cuerda. Esto es más aparente durante el ataque, aunque puede usarse par darle a la cuerda un sonido más 'metálico'. - - - Length: - Longitud: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - La perilla 'Longitud' define el largo de la cuerda elegida. Cuerdas más largas vibrarán por más tiempo y sonarán más brillantes. Sin embargo, también consumirán más CPU. - - - Impulse or initial state - Impulso o estado inicial - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - El selector 'Imp' determina si la forma de onda en la gráfica debe considerarse como el impulso impartido a la cuerda por el plectro o si es el estado inicial de la cuerda. + + Impulse + + Octave Octava - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - El selector de Octava se usa para definir en qué armónico de la nota la cuerda vibrará. Por ejemplo, '-2' significa que la cuerda vibrará 2 octavas por debajo de la fundamental, 'F' significa que la cuerda vibrará en el sonido fundamental, y '6' significa que la cuerda vibrará 6 octavas por encima del sonido fundamental. - - + Impulse Editor Editor de Impulso - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - El editor de Onda permite controlar el estado inicial o el impulso que es usado para poner la cuerda en vibración. Los botones a la derecha del gráfico inicializan la onda al tipo seleccionado. El botón '?' cargará una onda desde un archivo--sólo las primeras 128 muestras se cargarán. - -La onda también puede dibujarse en el gráfico. - -El botón 'S' suavizará la onda. - -El botón 'N' normalizará la onda. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - 'Vibed' modela hasta nueve cuerdas vibrando independientemente. El selector de 'Cuerda' te permite seleccionar cada cuerda para su edición. El selector 'Imp' te permite definir si el gráfico representa el impulso o el estado inicial de la cuerda. El selector de Octava te permite definir en qué armónico vibrará la cuerda. - -El gráfico te permite definir el estado inicial de la cuerda o el impulso que la ponga en movimiento. - -'V' controla el volumen de la cuerda, 'S' controla la rigidez, 'P' la posición de la púa o plectro, 'PU' la posición del micrófono. - -Paneo y Desafinación seguro ya sabrás para qué son, y 'Slap' añade algo de borrosidad a la cuerda y le da un sonido 'metálico'. - -'Longitud' controla la longitud de la cuerda. - -El indicador LED en la esquina inferior derecha indica si la cuerda está activa en el presente instrumento. - - + Enable waveform Activar Onda - Click here to enable/disable waveform. - Haz click aquí para activar o desactivar la onda. + + Enable/disable string + + String Cuerda - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - El selector de 'Cuerda' se usa para elegir la cuerda que quieres editar. Un instrumento 'Vibed' puede estar formado hasta por nueve cuerdas vibrando independientemente. El indicador LED en la esquina inferior derecha indica si la cuerda seleccionada está activa. - - + + Sine wave Onda sinusoidal + + Triangle wave Onda triangular + + Saw wave Onda de sierra + + Square wave Onda cuadrada - White noise wave + + + White noise Ruido blanco - User defined wave - Onda definida por el usuario + + + User-defined wave + - Smooth - Suavizar + + + Smooth waveform + Suavizar onda - Click here to smooth waveform. - Haz click aquí para suavizar la onda. - - - Normalize - Normalizar - - - Click here to normalize waveform. - Haz click aquí para normalizar la onda. - - - Use a sine-wave for current oscillator. - Usar una onda sinusoidal para este oscilador. - - - Use a triangle-wave for current oscillator. - Usar una onda triangular para este oscilador. - - - Use a saw-wave for current oscillator. - Usar una onda de sierra para este oscilador. - - - Use a square-wave for current oscillator. - Usar una onda cuadrada para este oscilador. - - - Use white-noise for current oscillator. - Usar ruido blanco para este oscilador. - - - Use a user-defined waveform for current oscillator. - Usar una onda definida por el usuario para este oscilador. + + + Normalize waveform + - voiceObject + 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 + WaveShaperControlDialog + INPUT ENTRADA + Input gain: Ganancia de Entrada: + OUTPUT SALIDA + Output gain: Ganancia de Salida: - Reset waveform - Restaurar onda + + + Reset wavegraph + - Click here to reset the wavegraph back to default - Haz click aquí para restaurar el gráfico de onda por defecto + + + Smooth wavegraph + - Smooth waveform - Suavizar onda + + + Increase wavegraph amplitude by 1 dB + - Click here to apply smoothing to wavegraph - Haz click aquí para aplicar suavizado al gráfico de onda - - - Increase graph amplitude by 1dB - Aumentar la amplitud del gráfico en 1dB - - - Click here to increase wavegraph amplitude by 1dB - Haz click aquí para aumentar la amplitud del gráfico en 1dB - - - Decrease graph amplitude by 1dB - Disminuir la amplitud del gráfico en 1dB - - - Click here to decrease wavegraph amplitude by 1dB - Haz click aquí para disminuir la amplitud del gráfico en 1dB + + + Decrease wavegraph amplitude by 1 dB + + Clip input Recortar entrada - Clip input signal to 0dB - Recortar señal de entrada a 0dB + + Clip input signal to 0 dB + - waveShaperControls + WaveShaperControls + Input gain ganancia de entrada + Output gain ganancia de salida - \ No newline at end of file + diff --git a/data/locale/eu.ts b/data/locale/eu.ts new file mode 100644 index 000000000..25c165f81 --- /dev/null +++ b/data/locale/eu.ts @@ -0,0 +1,16607 @@ + + + AboutDialog + + + About LMMS + LMMS aplikazioari buruz + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + %1 bertsioa (%2/%3, Qt %4, %5). + + + + About + Honi buruz + + + + LMMS - easy music production for everyone. + LMMS - Musikaren sorkuntza erraza guztiontzat. + + + + Copyright © %1. + Copyright © %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> + + + + Authors + Egileak + + + + Involved + Parte hartu dutenak + + + + Contributors ordered by number of commits: + Ekarpenak egin dituztenak, ekarpen kopuruaren arabera ordenatuak: + + + + Translation + Itzulpena + + + + 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! + Uneko hizkuntza ez dago itzulita (edo jatorrizko ingelesa da). +LMMS beste hizkuntza batera itzultzeko interesa baduzu edo lehendik dauden itzulpenak hobetu nahi badituzu, ongi etorri guri laguntzera! Jarri harremanetan itzulpenaren arduradunarekin! + + + + License + Lizentzia + + + + AmplifierControlDialog + + + 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 + + + + + Continue sample playback across notes + + + + + 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 + + + + + Remove song-global automation + + + + + 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 + + + + + BassBoosterControlDialog + + + FREQ + + + + + 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 + + + About Carla + Carlari buruz + + + + About + Honi buruz + + + + About text here + + + + + Extended licensing here + + + + + Artwork + Artelana + + + + 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 + Eginbideak + + + + AU/AudioUnit: + + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + + + + + VST2: + + + + + DSSI: + + + + + LV2: + + + + + VST3: + + + + + 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 + + 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 + + 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 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + LeihoNagusia + + + + Rack + + + + + Patchbay + + + + + Logs + Egunkariak + + + + Loading... + Kargatzen... + + + + Buffer Size: + Buffer-tamaina: + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Fitxategia + + + + &Engine + &Motorra + + + + &Plugin + &Plugina + + + + Macros (all plugins) + Makroak (plugin guztiak) + + + + &Canvas + &Oihala + + + + Zoom + Zoom + + + + &Settings + E&zarpenak + + + + &Help + &Laguntza + + + + toolBar + tresnaBarra + + + + Disk + Diskoa + + + + + Home + Etxea + + + + Transport + Garraioa + + + + Playback Controls + + + + + Time Information + + + + + Frame: + + + + + 000'000'000 + + + + + Time: + + + + + 00:00:00 + + + + + BBT: + + + + + 000|00|0000 + + + + + Settings + Ezarpenak + + + + BPM + + + + + Use JACK Transport + + + + + Use Ableton Link + + + + + &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 + + + + + 0% Volume (Mute) + + + + + 100% Volume + + + + + 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 + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + &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... + + + + + CarlaHostWindow + + + Export as... + + + + + + + + Error + Errorea + + + + 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 + Erakutsi erabiltzaile-interfazea + + + + CarlaSettingsW + + + Settings + Ezarpenak + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + Bideak + + + + Default project folder: + + + + + Interface + + + + + 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: + Tamaina: + + + + 775x600 + + + + + 1550x1200 + + + + + 3100x2400 + + + + + 4650x3600 + + + + + 6200x4800 + + + + + 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 + Audioa + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + 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 + + + + + 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 + + + + + + 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 + + + + + Export as loop (remove extra bar) + + + + + Export between loop markers + + + + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + + + + + Sampling rate: + + + + + 44100 Hz + 44.100 Hz + + + + 48000 Hz + 48.000 Hz + + + + 88200 Hz + 88.200 Hz + + + + 96000 Hz + 96.000 Hz + + + + 192000 Hz + 192.000 Hz + + + + Bit depth: + + + + + 16 Bit integer + + + + + 24 Bit integer + + + + + 32 Bit float + + + + + Stereo mode: + + + + + Mono + + + + + Stereo + + + + + Joint stereo + + + + + Compression level: + + + + + Bitrate: + + + + + 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 + + + + + Quality settings + Kalitate-ezarpenak + + + + Interpolation: + Interpolazioa: + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + 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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + 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 + + + + + InstrumentMiscView + + + 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 + + + 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 + Bolumena + + + + Panning + Panoramika + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + 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 + + + + + Channel %1: %2 + FX %1: %2 + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + Volume + Bolumena + + + + Volume: + Bolumena: + + + + VOL + VOL + + + + Panning + Panoramika + + + + Panning: + Panoramika: + + + + PAN + 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 + 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 + + + + + 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 + + + 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 + &Fitxategia + + + + &Edit + &Editatu + + + + &Quit + I&rten + + + + &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 + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + 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 + + + + + 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 + Ezarpenak + + + + 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: + Mota: + + + + 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 + Itxi + + + + PluginWidget + + + + + + + Frame + + + + + Enable + Gaitu + + + + On/Off + + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + + + 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 + + + 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 + + + New from template + Berria txantiloitik + + + + TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + 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 + + + + + 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 + + + + + Solo + + + + + TrackContainer + + + Couldn't import file + Ezin da fitxategia inportatu + + + + 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 + + + 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 + + + + + Use track color + + + + + TrackContentWidget + + + Paste + Itsatsi + + + + TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + Ekintzak + + + + + 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 + Klonatu pista hau + + + + Remove this track + Kendu pista hau + + + + Clear this track + Garbitu pista hau + + + + Channel %1: %2 + FX %1: %2 + + + + Assign to new mixer Channel + + + + + Turn all recording on + Aktibatu grabazio guztiak + + + + Turn all recording off + Desaktibatu grabazio guztiak + + + + Change color + Aldatu kolorea + + + + Reset color to default + Berrezarri kolorea lehenetsira + + + + 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 + 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 + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + 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 + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + Xpressive + + + 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: + + + + + 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 + Sarrerako irabazia + + + + Output gain + Irteerako irabazia + + + diff --git a/data/locale/fa.ts b/data/locale/fa.ts index fe9d2ca6b..181ca0ca1 100644 --- a/data/locale/fa.ts +++ b/data/locale/fa.ts @@ -1,9266 +1,16326 @@ - - - + AboutDialog + About LMMS - - - - Version %1 (%2/%3, Qt %4, %5) - - - - About - درباره - - - LMMS - easy music production for everyone - - - - Authors - - - - Translation - - - - 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! - - - - License - - - - Copyright (c) 2004-2014, LMMS developers - - - - <html><head/><body><p><a href="http://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.io</span></a></p></body></html> - + درباره LMMS + LMMS - + LMMS + + Version %1 (%2/%3, Qt %4, %5). + + + + + About + درباره + + + + LMMS - easy music production for everyone. + + + + + Copyright © %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> + + + + + Authors + نویسندگان + + + Involved - + + Contributors ordered by number of commits: - + همکاران بر اساس تعداد کارها مرتب شده اند: + + + + Translation + ترجمه + + + + 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! + + + + + License + مجوز AmplifierControlDialog + VOL - + VOL + Volume: - + ولوم: + PAN - + PAN + Panning: - + Panning: + LEFT - + چپ + Left gain: - + افزایش چپ: + RIGHT - + راست + Right gain: - + افزایش راست: AmplifierControls + Volume - + ولوم + Panning - + Panning + Left gain - + افزایش چپ + Right gain - + افزایش راست - AudioAlsa::setupWidget + AudioAlsaSetupWidget + DEVICE - + دستگاه + CHANNELS - + کانال ها AudioFileProcessorView - Open other sample - - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - + + Open sample + + Reverse sample - - - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - اگر این دکمه را فعال کنید,تمام نمونه معکوس می شود.این برای جلوه های جالب مانند یک تصادف معکوس مناسب است. - - - Amplify: - تقویت: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - - - - Startpoint: - نقطه ی شروع: - - - Endpoint: - نقطه ی پایان: - - - Continue sample playback across notes - - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - + + Disable loop - - - - This button disables looping. The sample plays only once from start to end. - + حلقه غیرفعال + Enable loop - + حلقه فعال - This button enables forwards-looping. The sample loops between the end point and the loop point. - + + Enable ping-pong loop + - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - + + Continue sample playback across notes + - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - + + Amplify: + - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - + + Start point: + + + End point: + + + + Loopback point: - - - - With this knob you can set the point where the loop starts. - + 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 - + + Client name + - CHANNELS - + + Channels + - AudioOss::setupWidget + AudioOss - DEVICE - + + Device + - CHANNELS - + + Channels + AudioPortAudio::setupWidget - BACKEND - + + Backend + - DEVICE - + + Device + - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - + + Device + - CHANNELS - + + Channels + AudioSdl::setupWidget - DEVICE - + + 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 - - - - Connected to %1 - - - - Connected to controller - - - - Edit connection... - - - - Remove connection - - - - Connect to controller... - + + Remove song-global automation - + + Remove all linked controls - + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + AutomationEditor - Please open an automation pattern with the context menu of a control! - + + Edit Value + - Values copied - + + New outValue + - All selected values were copied to the clipboard. - + + New inValue + + + + + Please open an automation clip with the context menu of a control! + AutomationEditorWindow - Play/pause current pattern (Space) - پخش/مکث الگوی جاری (فاصله) + + Play/pause current clip (Space) + - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - + + Stop playing of current clip (Space) + - Stop playing of current pattern (Space) - توقف پخش الگوی جاری (فاصله) - - - Click here if you want to stop playing of the current pattern. - + + Edit actions + + Draw mode (Shift+D) - + + Erase mode (Shift+E) - + + + Draw outValues mode (Shift+C) + + + + Flip vertically - + + Flip horizontally - + - Click here and the pattern will be inverted.The points are flipped in the y direction. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - + + Interpolation controls + + Discrete progression - + + Linear progression - + + Cubic Hermite progression - + + Tension value for spline - - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - Cut selected values (%1+X) - - - - Copy selected values (%1+C) - - - - Paste values from clipboard (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - + + Tension: - + - Automation Editor - no pattern - + + Zoom controls + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + + Automation Editor - no clip + + + + + Automation Editor - %1 - + + + + + Model is already connected to this clip. + - AutomationPattern + AutomationClip + Drag a control while pressing <%1> - - - - Model is already connected to this pattern. - + - AutomationPatternView - - double-click to open this pattern in automation editor - - + AutomationClipView + Open in Automation editor - + + Clear - + + Reset name - باز نشانی نام + + Change name - تغییر نام - - - %1 Connections - - - - Disconnect "%1" - + + Set/clear record - + + Flip Vertically (Visible) - + + Flip Horizontally (Visible) - + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + AutomationTrack + Automation track - + - BBEditor + PatternEditor + Beat+Bassline Editor - ویرایشگر خط-بم/تپش + + Play/pause current beat/bassline (Space) - پخش/درنگ خط-بم/تپش جاری(فاصله) + + Stop playback of current beat/bassline (Space) - + - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - + + Beat selector + - Click here to stop playing of current beat/bassline. - + + Track and step actions + + Add beat/bassline - اضافه ی خط بم/تپش (beat/baseline) + + + Clone beat/bassline clip + + + + + Add sample-track + + + + Add automation-track - + + Remove steps - + + Add steps - + + + + + Clone Steps + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor - در ویرایشگر خط-بم/تپش باز کن + + Reset name - باز نشانی نام + + Change name - تغییر نام - - - Change color - تغییر رنگ - - - Reset color to default - + - BBTrack + PatternTrack + Beat/Bassline %1 - خط-بم/تپش %1 + + Clone of %1 - + BassBoosterControlDialog + FREQ - + + Frequency: - + + GAIN - + + Gain: - + + RATIO - + + Ratio: - + BassBoosterControls + Frequency - + + Gain - + + Ratio - + BitcrushControlDialog + IN - + + OUT - + + + GAIN - + - Input Gain: - + + Input gain: + افزایش ورودی: - NOIS - + + NOISE + - Input Noise: - + + Input noise: + - Output Gain: - + + Output gain: + افزایش خروجی: + CLIP - + - Output Clip: - + + Output clip: + - Rate - + + Rate enabled + - Rate Enabled - + + Enable sample-rate crushing + - Enable samplerate-crushing - + + Depth enabled + - Depth - + + Enable bit-depth crushing + - Depth Enabled - - - - Enable bitdepth-crushing - + + FREQ + + Sample rate: - + - STD - + + STEREO + + Stereo difference: - + - Levels - + + QUANT + + Levels: - + - CaptionMenu + BitcrushControls - &Help - &راهنما + + Input gain + افزایش ورودی - Help (not available) - + + Input noise + + + + + Output gain + افزایش خروجی + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + درباره + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + + + + + toolBar + + + + + 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 + + + + + Ctrl+N + + + + + &Open... + + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + - Click here to show or hide the graphical user interface (GUI) of Carla. - + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 - + 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 - + OK + Cancel - لغو + لغو + LMMS - + LMMS + Cycle Detected. - + ControllerRackView + Controller Rack - + + Add - + + Confirm Delete - + - Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. - + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + ControllerView + Controls - - - - Controllers are able to automate the value of a knob, slider, and other controls. - + + Rename controller - + + Enter the new name for this controller - + - &Remove this plugin - + + LFO + + + + + &Remove this controller + + + + + Re&name this controller + 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 2 Gain: - + + Band 1 gain: + - Band 3 Gain: - + + Band 2 gain + - Band 4 Gain: - + + Band 2 gain: + - Band 1 Mute - + + Band 3 gain + - Mute Band 1 - + + Band 3 gain: + - Band 2 Mute - + + Band 4 gain + - Mute Band 2 - + + Band 4 gain: + - Band 3 Mute - + + Band 1 mute + - Mute Band 3 - + + Mute band 1 + - Band 4 Mute - + + Band 2 mute + - Mute Band 4 - + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + DelayControls - Delay Samples - + + Delay samples + + Feedback - + - Lfo Frequency - + + LFO frequency + - Lfo Amount - + + LFO amount + + + + + Output gain + افزایش خروجی DelayControlsDialog - Delay - + + DELAY + - Delay Time - + + Delay time + - Regen - + + FDBK + - Feedback Amount - + + Feedback amount + - Rate - + + RATE + - Lfo - + + LFO frequency + - Lfo Amt - + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + - DetuningHelper + Dialog - Note detuning - + + 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 + + + + + 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 + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + Filter 1 enabled - + + Filter 2 enabled - + - Click to enable/disable Filter 1 - + + Enable/disable filter 1 + - Click to enable/disable Filter 2 - + + Enable/disable filter 2 + DualFilterControls + Filter 1 enabled - + + Filter 1 type - + - Cutoff 1 frequency - + + Cutoff frequency 1 + + Q/Resonance 1 - + + Gain 1 - + + Mix - + + Filter 2 enabled - + + Filter 2 type - + - Cutoff 2 frequency - + + Cutoff frequency 2 + + Q/Resonance 2 - + + Gain 2 - + - LowPass - پایین گذر + + + Low-pass + - HiPass - بالا گذر + + + Hi-pass + - BandPass csg - میان گذر csg + + + Band-pass csg + - BandPass czpg - میان گذر czpg + + + Band-pass czpg + + + Notch - نچ + - Allpass - تمام گذر + + + All-pass + + + Moog - موگ Moog + - 2x LowPass - پایین گذر 2x + + + 2x Low-pass + - RC LowPass 12dB - + + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - + + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - + + + RC High-pass 12 dB/oct + - RC LowPass 24dB - + + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - + + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - + + + RC High-pass 24 dB/oct + - Vocal Formant Filter - + + + Vocal Formant + + + 2x Moog - + - SV LowPass - + + + SV Low-pass + - SV BandPass - + + + SV Band-pass + - SV HighPass - + + + SV High-pass + + + SV Notch - + + + Fast Formant - + + + Tripole - - - - - DummyEffect - - NOT FOUND - + 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 - + - Plugin description - + + + Name + + + + + Type + + + + + Description + + + + + Author + EffectView - Toggles the effect on or off. - - - + On/Off - + + W/D - + + Wet Level: - - - - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - + + DECAY - DECAY + + Time: - - - - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - + + GATE - + + Gate: - - - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - + + Controls - - - - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - + + Move &up - + + Move &down - + + &Remove this plugin - + EnvelopeAndLfoParameters - Predelay - + + Env pre-delay + - Attack - + + Env attack + - Hold - + + Env hold + - Decay - + + Env decay + - Sustain - + + Env sustain + - Release - + + Env release + - Modulation - + + Env mod amount + - LFO Predelay - + + LFO pre-delay + - LFO Attack - + + LFO attack + - LFO speed - + + LFO frequency + - LFO Modulation - + + LFO mod amount + - LFO Wave Shape - + + LFO wave shape + - Freq x 100 - + + LFO frequency x 100 + - Modulate Env-Amount - + + Modulate env amount + EnvelopeAndLfoView + + DEL - + - Predelay: - پبش تاخیر(Predelay): - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - از این دستگیره برای تنظیم پیش تاخیر پاکت جاری استفاده کنید.هرچه این مقدار بیشتر باشد زمان بیشتری قبل از شروع واقعی پاکت طول می کشد. + + + Pre-delay: + + + ATT - + + + Attack: - تهاجم(Attack): - - - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - از این دستگیره برای تنظیم زمان تهاجم پاکت جاری استفاده کنید.هرچه این مقدار بیشتر باشد پاکت زمان بیشتزی برای افزایش تا سطح تهاجم نیاز دازد.مقدار کم را برای دستگاه هایی مانند پیانو و مقدار زیاد را برای زهی استفاده کنید. + + HOLD - HOLD + + Hold: - نگهداری(Hold): - - - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - از این دستگیره برای تنظیم زمان تامل پاکت جاری استفاده کنید.هرچه این مقدار بیشتر باشد بیشتر طول می کشد تا پاکت سطح تهاجم را قبل از کاهش یه سطح تقویت(sustain-level) نگهدارد. + + DEC - + + Decay: - محو شدن(Decay): - - - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - از این دستگیره برای تنظیم زمان محو شدن پاکت جاری استفاده کنید. هرچه این مقدار بیشتر باشد زمان بیشتری برای کاهش از سطح تهاجم به سطح تقویت طول کشد.مقدار کمی را برای دستگاه هایی مانند پیانو انتخاب کنید. + + SUST - + + Sustain: - تقویت(Sustain): - - - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - از این دستگیره برای تنظیم سطح تقویت(Sustain Level) پاکت جاری استفاده کنید. هرچه این مقدار بیشتر باشد پاکت در سطح بالاتری قبل از نزول به صفر قرار می گیرد. + + REL - + + Release: - رهایی(Release): - - - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - از این دستگیره برای تنظیم زمان رهایی پاکت جاری استفاده کنید. هرچه این مقدار بیشتر باشد زمان بیشتری برای کاهش از سطح تقویت به صفر طول کشد.مقدار زیاد را برای دستگاه های زهی انتخاب کنید. + + + AMT - + + + Modulation amount: - میزان مدولاسیون: - - - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - از این دسته برای تنظیم مقدار مذولاسیون پاکت جاری استفاده کنید.هرچه این مقدار بیشتر باشد اندازه ی منتخب بیشتری(برای مثال حجم یا فرکانس گوشه ای) تحت تاثیر این پاکت قرار می گیرد. - - - LFO predelay: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - ار این دستگیره برای تنظیم زمان پیش تاخیر LFO جاری استفاده کنید.هرچه این مقدار بیشتر باشد زمان بیشتزی تا شروع نوسان LFO طول می کشد. - - - LFO- attack: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - از این دستگیره برای تنظیم زمان تهاجم LFO جاری استفاده کنید.هرچه این مقدار بیشتر باشد LFO زمان بیشتزی برای افزایش دامنه به مقدار ماکزیمم نیاز دازد. + + SPD - + - LFO speed: - - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - از این دستگیره برای تنظیم سرعت LFO استفاده کنید. هرچه این مقدار بیشتر باشد LFO سریع تر نوسان می کند و جلوه ی شما سریع تر خواهد بود. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - از این دسته برای تنظیم مقدار مذولاسیون LFO جاری استفاده کنید.هرچه این مقدار بیشتر باشد اندازه ی منتخب بیشتری(برای مثال حجم یا فرکانس گوشه ای) تحت تاثیر این LFO قرار می گیرد. - - - Click here for a sine-wave. - - - - Click here for a triangle-wave. - - - - Click here for a saw-wave for current. - - - - Click here for a square-wave. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - + + Frequency: + + FREQ x 100 - + - Click here if the frequency of this LFO should be multiplied by 100. - + + Multiply LFO frequency by 100 + - multiply LFO-frequency by 100 - + + MODULATE ENV AMOUNT + - MODULATE ENV-AMOUNT - - - - Click here to make the envelope-amount controlled by this LFO. - برای اینکه میزان پاکت توسط این LFO کنترل شود اینجا را کلیک کنید. - - - control envelope-amount by this LFO - کنترل مقدار پاکت توسط این LFO + + Control envelope amount by this LFO + + ms/LFO: - ms/LFO: + + Hint - + - Drag a sample from somewhere and drop it in this window. - - - - Click here for random wave. - + + Drag and drop a sample into this window. + EqControls + Input gain - + افزایش ورودی + Output gain - + افزایش خروجی - Low shelf gain - + + Low-shelf gain + + Peak 1 gain - + + Peak 2 gain - + + Peak 3 gain - + + Peak 4 gain - + - High Shelf gain - + + High-shelf gain + + HP res - + - Low Shelf res - + + Low-shelf res + + Peak 1 BW - + + Peak 2 BW - + + Peak 3 BW - + + Peak 4 BW - + - High Shelf res - + + High-shelf res + + LP res - + + HP freq - + - Low Shelf freq - + + Low-shelf freq + + Peak 1 freq - + + Peak 2 freq - + + Peak 3 freq - + + Peak 4 freq - + - High shelf freq - + + High-shelf freq + + LP freq - + + HP active - + - Low shelf active - + + Low-shelf active + + Peak 1 active - + + Peak 2 active - + + Peak 3 active - + + Peak 4 active - + - High shelf active - + + High-shelf active + + LP active - + + LP 12 - + + LP 24 - + + LP 48 - + + HP 12 - + + HP 24 - + + HP 48 - + - low pass type - + + Low-pass type + - high pass type - + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + EqControlsDialog + HP - + - Low Shelf - + + Low-shelf + + Peak 1 - + + Peak 2 - + + Peak 3 - + + Peak 4 - + - High Shelf - + + High-shelf + + LP - + - In Gain - + + Input gain + افزایش ورودی + + + Gain - + - Out Gain - + + Output gain + افزایش خروجی + Bandwidth: - + + + Octave + + + + Resonance : - + + Frequency: - + - 12dB - + + LP group + - 24dB - - - - 48dB - - - - lp grp - - - - hp grp - + + HP group + - EqParameterWidget + EqHandle - Hz - + + Reso: + + + + + BW: + + + + + + Freq: + ExportProjectDialog + Export project - + - Output - - - - File format: - - - - Samplerate: - - - - 44100 Hz - - - - 48000 Hz - - - - 88200 Hz - - - - 96000 Hz - - - - 192000 Hz - - - - Bitrate: - - - - 64 KBit/s - - - - 128 KBit/s - - - - 160 KBit/s - - - - 192 KBit/s - - - - 256 KBit/s - - - - 320 KBit/s - - - - Depth: - - - - 16 Bit Integer - - - - 32 Bit Float - - - - Please note that not all of the parameters above apply for all file formats. - - - - Quality settings - - - - Interpolation: - - - - Zero Order Hold - - - - Sinc Fastest - - - - Sinc Medium (recommended) - - - - Sinc Best (very slow!) - - - - Oversampling (use with care!): - - - - 1x (None) - - - - 2x - - - - 4x - - - - 8x - - - - Start - - - - Cancel - لغو - - - Export as loop (remove end silence) - + + Export as loop (remove extra bar) + + Export between loop markers - + + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + + + + + Sampling rate: + + + + + 44100 Hz + + + + + 48000 Hz + + + + + 88200 Hz + + + + + 96000 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! - +Please make sure you have write permission to the file and the directory containing the file and try again! + + 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% - + Fader + + Set value + + + + Please enter a new value between %1 and %2: - + FileBrowser + + User content + + + + + Factory content + + + + Browser - + + + + + Search + + + + + Refresh list + FileBrowserTreeWidget + Send to active instrument-track - + - Open in new instrument-track/Song-Editor - + + Open containing folder + - Open in new instrument-track/B+B 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 - + + Please wait, loading sample for preview... - + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + --- Factory files --- - + FlangerControls - Delay Samples - + + Delay samples + - Lfo Frequency - + + LFO frequency + + Seconds - + + + Stereo phase + + + + Regen - + + Noise - + + Invert - + FlangerControlsDialog - Delay - + + DELAY + - Delay Time: - + + Delay time: + - Lfo Hz - + + RATE + - Lfo: - - - - Amt - - - - Amt: - - - - Regen - - - - Feedback Amount: - - - - Noise - - - - White Noise Amount: - - - - - FxLine - - Channel send amount - - - - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - - Move &left - - - - Move &right - - - - Rename &channel - - - - R&emove channel - - - - Remove &unused channels - - - - - FxMixer - - Master - - - - FX %1 - - - - - FxMixerView - - Rename FX channel - - - - Enter the new name for this FX channel - - - - FX-Mixer - - - - FX Fader %1 - - - - Mute - - - - Mute this FX channel - - - - Solo - - - - Solo FX channel - - - - - FxRoute - - Amount to send from channel %1 to channel %2 - - - - - GigInstrument - - Bank - - - - Patch - - - - Gain - - - - - GigInstrumentView - - Open other GIG file - - - - Click here to open another GIG file - - - - Choose the patch - - - - Click here to change which patch of the GIG file to use - - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - - - - Gain - - - - Factor to multiply samples by - - - - Open GIG file - - - - GIG Files (*.gig) - - - - - InstrumentFunctionArpeggio - - Arpeggio - آرپگیو(Arpeggio) - - - Arpeggio type - - - - Arpeggio range - محدوده ی آرپگیو - - - Arpeggio time - زمان أرپگیو - - - Arpeggio gate - مدخل أرپگیو - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - - - - Free - - - - Sort - - - - Sync - - - - Down and up - - - - - InstrumentFunctionArpeggioView - - ARPEGGIO - - - - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - - RANGE - - - - Arpeggio range: - محدوده ی أرپگیو: - - - octave(s) - نت (ها) - - - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - - - - TIME - - - - Arpeggio time: - زمان آرپگیو: - - - ms - م ث - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - از این دستگیره برای تنظیم زمان در آرپگیو به میلی ثانیه استفاده کنید.زمان آرپگیو مشخص می کند که چه مدت هر آهنگ آرپگیو پخش شود. - - - GATE - - - - Arpeggio gate: - مدخل آرپگیو: - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - Chord: - - - - Direction: - جهت: - - - Mode: - - - - - InstrumentFunctionNoteStacking - - octave - نت - - - Major - Major - - - Majb5 - Majb5 - - - minor - minor - - - minb5 - mollb5 - - - sus2 - sus2 - - - sus4 - sus4 - - - aug - aug - - - augsus4 - augsus4 - - - tri - tri - - - 6 - 6 - - - 6sus4 - 6sus4 - - - 6add9 - madd9 - - - 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 - 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 - - - Phrygolydian - Phrygolydian - - - Lydian - Lydian - - - Mixolydian - Mixolydian - - - Aeolian - Aeolian - - - Locrian - Locrian - - - Chords - تار ها(Chords) - - - Chord type - - - - Chord range - محدوده ی تار - - - Minor - - - - Chromatic - - - - Half-Whole Diminished - - - - 5 - - - - - InstrumentFunctionNoteStackingView - - RANGE - - - - Chord range: - محدوده ی تار ها : - - - octave(s) - نت (ها) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - - - STACKING - - - - Chord: - - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - - - - CHANNEL - - - - VELOCITY - - - - ENABLE MIDI OUTPUT - - - - PROGRAM - - - - MIDI devices to receive MIDI events from - - - - MIDI devices to send MIDI events to - - - - NOTE - - - - CUSTOM BASE VELOCITY - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - - - - BASE VELOCITY - - - - - InstrumentMiscView - - MASTER PITCH - - - - Enables the use of Master Pitch - - - - - InstrumentSoundShaping - - VOLUME - حجم - - - Volume - - - - CUTOFF - - - - Cutoff frequency - - - - RESO - - - - Resonance - - - - Envelopes/LFOs - - - - Filter type - - - - Q/Resonance - Q/رزونانس - - - LowPass - پایین گذر - - - HiPass - بالا گذر - - - BandPass csg - میان گذر csg - - - BandPass czpg - میان گذر czpg - - - Notch - نچ - - - Allpass - تمام گذر - - - Moog - موگ Moog - - - 2x LowPass - پایین گذر 2x - - - RC LowPass 12dB - - - - RC BandPass 12dB - - - - RC HighPass 12dB - - - - RC LowPass 24dB - - - - RC BandPass 24dB - - - - RC HighPass 24dB - - - - Vocal Formant Filter - - - - 2x Moog - - - - SV LowPass - - - - SV BandPass - - - - SV HighPass - - - - SV Notch - - - - Fast Formant - - - - Tripole - - - - - InstrumentSoundShapingView - - TARGET - - - - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - - FILTER - - - - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - - - - RESO - - - - Resonance: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - - FREQ - - - - cutoff frequency: - - - - Envelopes, LFOs and filters are not supported by the current instrument. - - - - - InstrumentTrack - - unnamed_track - - - - Volume - - - - Panning - - - - Pitch - - - - FX channel - - - - Default preset - - - - With this knob you can set the volume of the opened channel. - Mit diesem Knopf können Sie die Lautstärke des geöffneten Kanals ändern. - - - Base note - - - - Pitch range - - - - Master Pitch - - - - - InstrumentTrackView - - Volume - - - - Volume: - - - - VOL - - - - Panning - - - - Panning: - - - - PAN - - - - MIDI - - - - Input - - - - Output - - - - - InstrumentTrackWindow - - GENERAL SETTINGS - - - - Instrument volume - - - - Volume: - - - - VOL - - - - Panning - - - - Panning: - - - - PAN - - - - Pitch - - - - Pitch: - - - - cents - درصد - - - PITCH - - - - FX channel - - - - ENV/LFO - - - - FUNC - - - - FX - - - - MIDI - - - - Save preset - - - - XML preset file (*.xpf) - - - - PLUGIN - اضافات - - - Pitch range (semitones) - - - - RANGE - - - - Save current instrument track settings in a preset file - - - - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - - - - MISC - - - - - Knob - - Set linear - - - - Set logarithmic - - - - Please enter a new value between -96.0 dBV and 6.0 dBV: - - - - Please enter a new value between %1 and %2: - - - - - LadspaControl - - Link channels - - - - - LadspaControlDialog - - Link Channels - - - - Channel - - - - - LadspaControlView - - Link channels - - - - Value: - - - - Sorry, no help available. - - - - - LadspaEffect - - Unknown LADSPA plugin %1 requested. - - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - - - - - LfoController - - LFO Controller - - - - Base value - - - - Oscillator speed - - - - Oscillator amount - - - - Oscillator phase - - - - Oscillator waveform - - - - Frequency Multiplier - - - - - LfoControllerDialog - - LFO - - - - LFO Controller - - - - BASE - - - - Base amount: - - - - todo - - - - SPD - - - - LFO-speed: - سرعت-LFO: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - - - - AMT - - - - Modulation amount: - میزان مدولاسیون: - - - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - - PHS - - - - Phase offset: - - - - degrees - درجه ها - - - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - - - - Click here for a sine-wave. - - - - Click here for a triangle-wave. - - - - Click here for a saw-wave. - - - - Click here for a square-wave. - - - - Click here for an exponential wave. - - - - Click here for white-noise. - - - - Click here for a user-defined shape. -Double click to pick a file. - - - - Click here for a moog saw-wave. - - - - - MainWindow - - Working directory - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - - - - Could not save config-file - پرونده ی تنظیمات ذخیره نشد - - - Could not save configuration file %1. You're probably not permitted to write to this file. -Please make sure you have write-access to the file and try again. - - - - &New - &جدید - - - &Open... - &باز کن... - - - &Save - &ذخیره کن - - - Save &As... - ذ&خیره به صورت... - - - Import... - - - - E&xport... - - - - &Quit - &خروج - - - &Edit - - - - Settings - - - - &Tools - - - - &Help - &راهنما - - - Help - راهنما - - - What's this? - این چیست؟ - - - About - درباره - - - Create new project - ایجاد پروژه ی جدید - - - Create new project from template - - - - Open existing project - باز کردن پروژه ی موجود - - - Recently opened projects - - - - Save current project - ذخیره ی پروژه ی جاری - - - Export current project - استخراج پروژه ی جاری - - - Song Editor - - - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - - - - Beat+Bassline Editor - - - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - - - - Piano Roll - - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - - - - Automation Editor - - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - - - - FX Mixer - - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - - - - Project Notes - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - - - - Controller Rack - - - - Untitled - - - - LMMS %1 - LMMS %1 - - - Project not saved - پروژه ذخیره نشده - - - The current project was modified since last saving. Do you want to save it now? - پروژه جاری بعد از آخرین ذخیره تغییر یافته است.آیا اکنون مایل به ذخیره ی آن هستید؟ - - - Help not available - - - - Currently there's no help available in LMMS. -Please visit http://lmms.sf.net/wiki for documentation on LMMS. - - - - LMMS (*.mmp *.mmpz) - - - - Version %1 - - - - Configuration file - - - - Error while parsing configuration file at line %1:%2: %3 - - - - Volumes - - - - Undo - - - - Redo - - - - LMMS Project - - - - LMMS Project Template - - - - My Projects - - - - My Samples - - - - My Presets - - - - My Home - - - - My Computer - - - - Root Directory - - - - &File - - - - &Recently Opened Projects - - - - Save as New &Version - - - - E&xport Tracks... - - - - Online Help - - - - What's This? - - - - Open Project - - - - Save Project - - - - - MeterDialog - - Meter Numerator - - - - Meter Denominator - - - - TIME SIG - - - - - MeterModel - - Numerator - - - - Denominator - - - - - MidiAlsaRaw::setupWidget - - DEVICE - - - - - MidiAlsaSeq - - DEVICE - - - - - MidiController - - MIDI Controller - - - - unnamed_midi_controller - - - - - MidiImport - - Setup incomplete - - - - You do not have 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. - - - - - MidiOss::setupWidget - - DEVICE - - - - - MidiPort - - Input channel - - - - Output channel - - - - Input controller - - - - Output controller - - - - Fixed input velocity - - - - Fixed output velocity - - - - Output MIDI program - - - - Receive MIDI-events - - - - Send MIDI-events - - - - Fixed output note - - - - Base velocity - - - - - 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 - - - - Osc2-3 modulation - - - - Selected view - - - - Vol1-Env1 - - - - Vol1-Env2 - - - - Vol1-LFO1 - - - - Vol1-LFO2 - - - - Vol2-Env1 - - - - Vol2-Env2 - - - - Vol2-LFO1 - - - - Vol2-LFO2 - - - - Vol3-Env1 - - - - Vol3-Env2 - - - - Vol3-LFO1 - - - - Vol3-LFO2 - - - - Phs1-Env1 - - - - Phs1-Env2 - - - - Phs1-LFO1 - - - - Phs1-LFO2 - - - - Phs2-Env1 - - - - Phs2-Env2 - - - - Phs2-LFO1 - - - - Phs2-LFO2 - - - - Phs3-Env1 - - - - Phs3-Env2 - - - - Phs3-LFO1 - - - - Phs3-LFO2 - - - - Pit1-Env1 - - - - Pit1-Env2 - - - - Pit1-LFO1 - - - - Pit1-LFO2 - - - - Pit2-Env1 - - - - Pit2-Env2 - - - - Pit2-LFO1 - - - - Pit2-LFO2 - - - - Pit3-Env1 - - - - Pit3-Env2 - - - - Pit3-LFO1 - - - - Pit3-LFO2 - - - - PW1-Env1 - - - - PW1-Env2 - - - - PW1-LFO1 - - - - PW1-LFO2 - - - - Sub3-Env1 - - - - Sub3-Env2 - - - - Sub3-LFO1 - - - - Sub3-LFO2 - - - - 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 - - - - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - - Matrix view - - - - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - - - MultitapEchoControlDialog - - Length - - - - Step length: - - - - Dry - - - - Dry Gain: - - - - Stages - - - - Lowpass stages: - - - - Swap inputs - - - - Swap left and right input channel 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 - - - - - OscillatorObject - - Osc %1 volume - حجم نوسان ساز %1 - - - Osc %1 panning - تراز نوسان ساز %1 - - - Osc %1 coarse detuning - کوک زمختی نوسان ساز %1 - - - Osc %1 fine detuning left - کوک دقیق چپ نوسان ساز %1 - - - Osc %1 fine detuning right - کوک دقیق راست نوسان ساز %1 - - - Osc %1 phase-offset - انحراف فاز نوسان ساز %1 - - - Osc %1 stereo phase-detuning - کوک فاز استریوی نوسان ساز %1 - - - Osc %1 wave shape - - - - Modulation type %1 - - - - Osc %1 waveform - - - - Osc %1 harmonic - - - - - PatmanView - - Open other patch - - - - Click here to open another patch-file. Loop and Tune settings are not reset. - - - - Loop - - - - Loop mode - - - - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - - - - Tune - - - - Tune mode - - - - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - - - - No file selected - - - - Open patch file - - - - Patch-Files (*.pat) - - - - - PatternView - - double-click to open this pattern in piano-roll -use mouse wheel to set velocity of a step - - - - Open in piano-roll - در غلتک پیانو باز کن - - - Clear all notes - پاک کردن تمامی نت ها - - - Reset name - باز نشانی نام - - - Change name - تغییر نام - - - Add steps - - - - Remove 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 amount: - - - - Modulation amount: - میزان مدولاسیون: - - - Attack: - تهاجم(Attack): - - - Release: - رهایی(Release): + + Period: + + AMNT - + - MULT - + + Amount: + - Amount Multiplicator: - + + PHASE + - ATCK - + + Phase: + - DCAY - + + FDBK + - TRES - + + Feedback amount: + - Treshold: - + + NOISE + - - - PeakControllerEffectControls - Base value - - - - Modulation amount - مقدار مدولاسیون - - - Mute output - - - - Attack - - - - Release - - - - Abs Value - - - - Amount Multiplicator - - - - Treshold - - - - - PianoRoll - - Piano-Roll - %1 - غلتک پیانو - %1 - - - Piano-Roll - no pattern - غلتک پیانو - بدون الگو - - - Please open a pattern by double-clicking on it! - لطفا یک الگو را با دوبار کلیک روی أن باز کنید! - - - Last note - - - - Note lock - - - - Note Velocity - - - - Note Panning - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - - Velocity: %1% - - - - Panning: %1% left - - - - Panning: %1% right - - - - Panning: center - - - - Please enter a new value between %1 and %2: - - - - - PianoRollWindow - - Play/pause current pattern (Space) - پخش/مکث الگوی جاری (فاصله) - - - Record notes from MIDI-device/channel-piano - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - Stop playing of current pattern (Space) - توقف پخش الگوی جاری (فاصله) - - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Detune mode (Shift+T) - - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - برش نت های انتخاب شده(Ctrl+X) - - - Copy selected notes (%1+C) - کپی نت های انتخاب شده(Ctrl+C) - - - Paste notes from clipboard (%1+V) - چسباندن نت ها از حافظه ی موقت(Ctrl+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - - - - - PianoView - - Base 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"! - - - - LMMS plugin %1 does not have a plugin descriptor named %2! - - - - - PluginBrowser - - Instrument plugins - - - - Instrument browser - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - - - - - ProjectNotes - - Project notes - یادداشت های پروژه - - - Put down your 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-File (*.wav) - - - - Compressed OGG-File (*.ogg) - پرونده ی OGG فشرده شده(*.ogg) - - - - QObject - - C - Note name - - - - Db - Note name - - - - C# - Note name - - - - D - Note name - - - - Eb - Note name - - - - D# - Note name - - - - E - Note name - - - - Fb - Note name - - - - Gb - Note name - - - - F# - Note name - - - - G - Note name - - - - Ab - Note name - - - - G# - Note name - - - - A - Note name - - - - Bb - Note name - - - - A# - Note name - - - - B - Note name - - - - - QWidget - - Name: - - - - Maker: - - - - Copyright: - - - - Requires Real Time: - - - - Yes - - - - No - - - - Real Time Capable: - - - - In Place Broken: - - - - Channels In: - - - - Channels Out: - - - - File: - - - - File: %1 - - - - - RenameDialog - - Rename... - تغییر نام... - - - - SampleBuffer - - Open audio file - باز کردن پرونده ی صوتی - - - Wave-Files (*.wav) - Wave- پرونده های(*.wav) - - - OGG-Files (*.ogg) - OGG-پرونده های (*.ogg) - - - DrumSynth-Files (*.ds) - - - - FLAC-Files (*.flac) - - - - SPEEX-Files (*.spx) - - - - VOC-Files (*.voc) - VOC-پرونده های (*.voc) - - - AIFF-Files (*.aif *.aiff) - AIFF-پرونده های (*.aif *.aiff) - - - AU-Files (*.au) - AU-پرونده های (*.au) - - - RAW-Files (*.raw) - RAW-پرونده های (*.raw) - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - - - SampleTCOView - - double-click to select sample - برای انتخاب نمونه دوبار کلیک کنید - - - Delete (middle mousebutton) - - - - Cut - برش - - - Copy - کپی - - - Paste - چسباندن - - - Mute/unmute (<%1> + middle click) - - - - Set/clear record - - - - - SampleTrack - - Sample track - تراک نمونه - - - Volume - - - - Panning - - - - - SampleTrackView - - Track volume - - - - Channel volume: - حجم کانال: - - - VOL - - - - Panning - - - - Panning: - - - - PAN - - - - - SetupDialog - - Setup LMMS - برپایی LMMS - - - General settings - - - - BUFFER SIZE - - - - Reset to default-value - - - - MISC - - - - Enable tooltips - - - - Show restart warning after changing settings - - - - Display volume as dBV - - - - Compress project files per default - - - - One instrument track window mode - - - - HQ-mode for output audio-device - - - - Compact track buttons - - - - Sync VST plugins to host playback - - - - Enable note labels in piano roll - - - - Enable waveform display by default - - - - Keep effects running even without input - - - - Create backup file when saving a project - - - - LANGUAGE - - - - Paths - - - - LMMS working directory - - - - VST-plugin directory - - - - Artwork directory - - - - Background artwork - - - - FL Studio installation directory - - - - LADSPA plugin paths - - - - STK rawwave directory - - - - Default Soundfont File - - - - Performance settings - - - - UI effects vs. performance - - - - Smooth scroll in Song Editor - - - - Enable auto save feature - - - - Show playback cursor in AudioFileProcessor - - - - Audio settings - - - - AUDIO INTERFACE - - - - MIDI settings - - - - MIDI INTERFACE - - - - OK - - - - Cancel - لغو - - - Restart LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - - - - Frames: %1 -Latency: %2 ms - - - - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - - - - Choose your VST-plugin directory - - - - Choose artwork-theme directory - - - - Choose FL Studio installation directory - - - - Choose LADSPA plugin directory - - - - Choose STK rawwave directory - - - - Choose default SoundFont - - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - - Song - - Tempo - - - - Master volume - - - - Master pitch - - - - Project saved - - - - The project %1 is now saved. - - - - Project NOT saved. - پروژه ذخیره نشد. - - - The project %1 was not saved! - - - - Import file - وارد کردن پرونده - - - MIDI sequences - - - - FL Studio projects - - - - Hydrogen projects - - - - All file types - - - - Empty project - - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - - - - Select directory for writing exported tracks... - - - - untitled - بدون نام - - - Select file for project-export... - پرونده را برای استخراج پروژه مشخص کنید... - - - The following errors occured while loading: - - - - - SongEditor - - Could not open file - پرونده باز نشد - - - Could not write 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. - - - - Error in file - - - - The file %1 seems to contain errors and therefore can't be loaded. - - - - Tempo - - - - TEMPO/BPM - - - - tempo of song - گام ترانه(tempo) - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - High quality mode - - - - Master volume - - - - master volume - - - - Master pitch - - - - master pitch - دانگ صدا(Pitch) - - - Value: %1% - - - - Value: %1 semitones - - - - 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. - - - - - 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) - توقف ترانه (فاصله) - - - Add beat/bassline - اضافه ی خط بم/تپش (beat/baseline) - - - Add sample-track - اضافه ی باریکه ی نمونه - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - اگر می خواهید تمام ترانه ی خود را پخش کنید اینجا را کلیک کنید.پخش از محل سازنده ی موقعیت شروع خواهد شد(سبز).همچنین می توانید در حال پخش آن را جابجا کنید. - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - اگر می خواهید پخش ترانه ی خود را متوقف کنید اینجا را کلیک کنید.سازنده موقعیت ترانه به شروع ترانه تنظیم خواهد شد. - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - SpectrumAnalyzerControls - - Linear spectrum - - - - Linear Y axis - - - - Channel mode - - - - - TabWidget - - Settings for %1 - - - - - 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 - - click to change time units - - - - - TimeLineWidget - - Enable/disable auto-scrolling - - - - Enable/disable loop-points - - - - After stopping go back to begin - - - - After stopping go back to position at which playing was started - - - - After stopping keep position - - - - Hint - - - - Press <%1> to disable magnetic loop points. - - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - - - - - 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. - - - - 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... - لطفا صبر کنید... - - - Importing MIDI-file... - وارد کردن پرونده ی MIDI... - - - Importing FLP-file... - - - - - TrackContentObject - - Muted - - - - - TrackContentObjectView - - Current position - - - - Hint - - - - Press <%1> and drag to make a copy. - - - - Current length - - - - Press <%1> for free resizing. - - - - %1:%2 (%3:%4 to %5:%6) - - - - Delete (middle mousebutton) - - - - Cut - برش - - - Copy - کپی - - - Paste - چسباندن - - - Mute/unmute (<%1> + middle click) - - - - - TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - - - - Actions for this track - - - - Mute - - - - Solo - - - - Mute this track - - - - Clone this track - تکثیر این تراک - - - Remove this track - - - - Clear this track - - - - FX %1: %2 - - - - Turn all recording on - - - - Turn all recording off - - - - - TripleOscillatorView - - Use phase modulation for modulating oscillator 1 with oscillator 2 - - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - - - - Mix output of oscillator 1 & 2 - - - - Synchronize oscillator 1 with oscillator 2 - - - - Use frequency modulation for modulating oscillator 1 with oscillator 2 - - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - - - - Mix output of oscillator 2 & 3 - - - - Synchronize oscillator 2 with oscillator 3 - - - - Use frequency modulation for modulating oscillator 2 with oscillator 3 - - - - Osc %1 volume: - حجم نوسان ساز %1: - - - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - با این دستگیره می توانید حجم نوسان ساز %1 را تنظیم کنید.هنگام تنظیم به ۰ ,نوسان ساز خاموش است.در غیر این صورت همان قدر که تنظیم کنید صدای نوسان سار را بلند خواهید شنید. - - - Osc %1 panning: - تراز نوسان ساز %1: - - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - با این دستگیره می توانید تراز نوسان ساز %1 را تنظیم کنید.مقدار ۱۰۰- یعنی ۱۰۰٪ چپ و مقدار ۱۰۰ خروجی نوسان ساز را به راست منتقل می کند. - - - Osc %1 coarse detuning: - کوک زمختی نوسان ساز %1: - - - semitones - - - - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - با این دستگیره می توانید کوک زمختی نوسان ساز %1 را تنظیم کنید.شما می توانید کوک نوسان ساز را در ۱۲ نیم صدا (۱ نت) بالا یا پایین کنید. این برای ایجاد صدا به همراه زه (Chord) مفید خواهد بود. - - - Osc %1 fine detuning left: - کوک دقیق چپ نوسان ساز %1: - - - cents - درصد - - - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - با این دستگیره می توانید کانال چپ نوسان ساز %1 را کوک دقیق کنید.کوک دقیق بین ۱۰۰- در صد و ۱۰۰ در صد محدود شده است.این برای ایجاد صدا های چاق (fat) مفید است. - - - Osc %1 fine detuning right: - کوک دقیق راست نوسان ساز %1: - - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - با این دستگیره می توانید کانال راست نوسان ساز %1 را کوک دقیق کنید.کوک دقیق بین ۱۰۰- در صد و ۱۰۰ در صد محدود شده است.این برای ایجاد صدا های چاق (fat) مفید است. - - - Osc %1 phase-offset: - انحراف فاز نوسان ساز %1: - - - degrees - درجه ها - - - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - با این دستگیره می توانید انحراف فاز نوسان ساز %1 را تنظیم کنید.این یعنی اینکه شما می توانید نقطه ی شروع نوسان نوسان ساز را جابجا کنید.برای مثال اگر یک موج سینوسی و انحراف فاز ۱۸۰ داشته باشید, موج در ابتدا به پایین می رود.برای موج مربعی نیز شبیه همین است. - - - Osc %1 stereo phase-detuning: - کوک فاز استریوی نوسان ساز %1: - - - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - - - - Use a sine-wave for current oscillator. - - - - Use a triangle-wave for current oscillator. - - - - Use a saw-wave for current oscillator. - - - - Use a square-wave for current oscillator. - - - - Use a moog-like saw-wave for current oscillator. - - - - Use an exponential wave for current oscillator. - - - - Use white-noise for current oscillator. - - - - Use a user-defined waveform for current oscillator. - - - - - VersionedSaveDialog - - Increment version number - - - - Decrement version number - - - - - VestigeInstrumentView - - Open other VST-plugin - - - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - - - - Show/hide GUI - - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - - - - Turn off all notes - - - - Open VST-plugin - - - - DLL-files (*.dll) - - - - EXE-files (*.exe) - - - - No VST-plugin loaded - - - - Control VST-plugin from LMMS host - - - - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - - - - Previous (-) - - - - Click here, if you want to switch to another VST-plugin preset program. - - - - Save preset - - - - Click here, if you want to save current VST-plugin preset program. - - - - Next (+) - - - - Click here to select presets that are currently loaded in VST. - - - - Preset - - - - by - - - - - VST plugin control - - - - - VisualizationWidget - - click to enable/disable visualization of master-output - برای فعال / غیرفعال کردن تصور خروجی اصلی کلیک کنید - - - Click to enable - - - - - VstEffectControlDialog - - Show/hide - - - - Control VST-plugin from LMMS host - - - - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - - - - Previous (-) - - - - Click here, if you want to switch to another VST-plugin preset program. - - - - Next (+) - - - - Click here to select presets that are currently loaded in VST. - - - - Save preset - - - - Click here, if you want to save current VST-plugin preset program. - - - - Effect by: - - - - &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - - - - - VstPlugin - - Loading plugin - - - - Open Preset - - - - Vst Plugin Preset (*.fxp *.fxb) - - - - : default - - - - " - - - - ' - - - - Save Preset - - - - .fxp - - - - .FXP - - - - .FXB - - - - .fxb - - - - Please wait while loading VST plugin... - - - - The VST plugin %1 could not be loaded. - - - - - 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 - - Select oscillator A1 - - - - Select oscillator A2 - - - - Select oscillator B1 - - - - Select oscillator B2 - - - - Mix output of A2 to A1 - - - - Modulate amplitude of A1 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with output of B2 - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - Load waveform - - - - Click to load a waveform from a sample file - - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - - - - Click to normalize - + + White noise amount: + + Invert - - - - Click to invert - - - - Smooth - - - - Click to smooth - - - - Sine wave - - - - Click for sine wave - - - - Triangle wave - - - - Click for triangle wave - - - - Click for saw wave - - - - Square wave - - - - Click for square wave - - - - - ZynAddSubFxInstrument - - Portamento - - - - Filter Frequency - - - - Filter Resonance - - - - Bandwidth - - - - FM Gain - - - - Resonance Center Frequency - - - - Resonance Bandwidth - - - - Forward MIDI Control Change Events - - - - - ZynAddSubFxView - - Show GUI - - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - - - - 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 - - - - - audioFileProcessor - - Amplify - تقویت - - - Start of sample - شروع نمونه - - - End of sample - پایان نمونه - - - Reverse sample - - - - Stutter - - - - Loopback point - - - - Loop mode - - - - Interpolation mode - - - - None - - - - Linear - - - - Sinc - - - - Sample not found: %1 - - - - - bitInvader - - Samplelength - - - - - bitInvaderView - - Sample Length - - - - Sine wave - - - - Triangle wave - - - - Saw wave - - - - Square wave - - - - White noise wave - - - - User defined wave - - - - Smooth - - - - Click here to smooth waveform. - - - - Interpolation - - - - Normalize - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - Click for a sine-wave. - - - - Click here for a triangle-wave. - - - - Click here for a saw-wave. - - - - Click here for a square-wave. - - - - Click here for white-noise. - - - - Click here for a user-defined shape. - - - - - dynProcControlDialog - - INPUT - - - - Input gain: - - - - OUTPUT - - - - Output gain: - - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Reset waveform - - - - Click here to reset the wavegraph back to default - - - - Smooth waveform - - - - Click here to apply smoothing to wavegraph - - - - Increase wavegraph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease wavegraph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - - - - Stereomode Maximum - - - - Process based on the maximum of both stereo channels - - - - Stereomode Average - - - - Process based on the average of both stereo channels - - - - Stereomode Unlinked - - - - Process each stereo channel independently - - - - - dynProcControls - - Input gain - - - - Output gain - - - - Attack time - - - - Release time - - - - Stereo mode - - - - - graphModel - - Graph - - - - - kickerInstrument - - Start frequency - - - - End frequency - - - - Gain - - - - Length - - - - Distortion Start - - - - Distortion End - - - - Envelope Slope - - - - Noise - - - - Click - - - - Frequency Slope - - - - Start from note - - - - End to note - - - - - kickerInstrumentView - - Start frequency: - - - - End frequency: - - - - Gain: - - - - Frequency Slope: - - - - Envelope Length: - - - - Envelope Slope: - - - - Click: - - - - Noise: - - - - Distortion Start: - - - - Distortion End: - - - - - ladspaBrowserView - - Available Effects - - - - Unavailable Effects - - - - Instruments - - - - Analysis Tools - - - - Don't know - - - - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - - - - 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: - محو شدن(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. - - - - - lb303Synth - - VCF Cutoff Frequency - - - - VCF Resonance - - - - VCF Envelope Mod - - - - VCF Envelope Decay - - - - Distortion - - - - Waveform - - - - Slide Decay - - - - Slide - - - - Accent - - - - Dead - - - - 24dB/oct Filter - - - - - lb303SynthView - - Cutoff Freq: - - - - CUT - - - - Resonance: - - - - RES - - - - Env Mod: - - - - ENV MOD - - - - Decay: - محو شدن(Decay): - - - DEC - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - Slide Decay: - - - - SLIDE - - - - DIST: - - - - DIST - - - - WAVE: - - - - WAVE - - - - - malletsInstrument - - Hardness - - - - Position - - - - Vibrato Gain - - - - Vibrato Freq - - - - Stick Mix - - - - Modulator - - - - Crossfade - - - - LFO Speed - - - - LFO Depth - - - - ADSR - - - - Pressure - - - - Motion - - - - Speed - - - - Bowed - - - - Spread - - - - Marimba - - - - Vibraphone - - - - Agogo - - - - Wood1 - - - - Reso - - - - Wood2 - - - - Beats - - - - Two Fixed - - - - Clump - - - - Tubular Bells - - - - Uniform Bar - - - - Tuned Bar - - - - Glass - - - - Tibetan Bowl - - - - Missing files - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - - - - - malletsInstrumentView - - Instrument - - - - Spread - - - - Spread: - - - - Hardness - - - - Hardness: - - - - Position - - - - Position: - - - - Vib Gain - - - - Vib Gain: - - - - Vib Freq - - - - Vib Freq: - - - - Stick Mix - - - - Stick Mix: - - - - Modulator - - - - Modulator: - - - - Crossfade - - - - Crossfade: - - - - LFO Speed - - - - LFO Speed: - - - - LFO Depth - - - - LFO Depth: - - - - ADSR - - - - ADSR: - - - - Bowed - - - - Pressure - - - - Pressure: - - - - Motion - - - - Motion: - - - - Speed - - - - Speed: - - - - Vibrato - - - - Vibrato: - - - - - manageVSTEffectView - - - VST parameter control - - - - VST Sync - - - - Click here if you want to synchronize all parameters with VST plugin. - - - - Automated - - - - Click here if you want to display automated parameters only. - - - - Close - - - - Close VST effect knob-controller window. - - - - - manageVestigeInstrumentView - - - VST plugin control - - - - VST Sync - - - - Click here if you want to synchronize all parameters with VST plugin. - - - - Automated - - - - Click here if you want to display automated parameters only. - - - - Close - - - - Close VST plugin knob-controller window. - - - - - opl2instrument - - Patch - - - - Op 1 Attack - - - - Op 1 Decay - - - - Op 1 Sustain - - - - Op 1 Release - - - - Op 1 Level - - - - Op 1 Level Scaling - - - - Op 1 Frequency Multiple - - - - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - - - - Vibrato Depth - - - - Tremolo Depth - - - - - organicInstrument - - Distortion - - - - Volume - - - - - organicInstrumentView - - Distortion: - - - - Volume: - - - - Randomise - - - - Osc %1 waveform: - - - - Osc %1 volume: - حجم نوسان ساز %1: - - - Osc %1 panning: - تراز نوسان ساز %1: - - - cents - درصد - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - - - Osc %1 stereo detuning - - - - Osc %1 harmonic: - + FreeBoyInstrument + Sweep time - + + Sweep direction - + - Sweep RtShift amount - + + Sweep rate shift amount + - Wave Pattern Duty - + + + 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 - - - - 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 - + + 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 Time - + + Sweep time + - Sweep RtShift amount: - + + Sweep rate shift amount: + - Sweep RtShift amount - + + Sweep rate shift amount + - Wave pattern duty: - + + + Wave pattern duty cycle: + - Wave Pattern Duty - + + + Wave pattern duty cycle + - Square Channel 1 Volume: - + + Square channel 1 volume: + + + Square channel 1 volume + + + + + + Length of each step in sweep: - + + + + Length of each step in sweep - + - Wave pattern duty - + + Square channel 2 volume: + - Square Channel 2 Volume: - + + Square channel 2 volume + - Square Channel 2 Volume - + + Wave pattern channel volume: + - Wave Channel Volume: - + + Wave pattern channel volume + - Wave Channel Volume - + + Noise channel volume: + - Noise Channel Volume: - + + Noise channel volume + - Noise Channel Volume - + + SO1 volume (Right): + - SO1 Volume (Right): - + + SO1 volume (Right) + - SO1 Volume (Right) - + + SO2 volume (Left): + - SO2 Volume (Left): - - - - SO2 Volume (Left) - + + SO2 volume (Left) + + Treble: - + + Treble - + + Bass: - + + Bass - + - Sweep Direction - + + Sweep direction + - Volume Sweep Direction - + + + + + + Volume sweep direction + - Shift Register Width - + + Shift register width + - Channel1 to SO1 (Right) - + + Channel 1 to SO1 (Right) + - Channel2 to SO1 (Right) - + + Channel 2 to SO1 (Right) + - Channel3 to SO1 (Right) - + + Channel 3 to SO1 (Right) + - Channel4 to SO1 (Right) - + + Channel 4 to SO1 (Right) + - Channel1 to SO2 (Left) - + + Channel 1 to SO2 (Left) + - Channel2 to SO2 (Left) - + + Channel 2 to SO2 (Left) + - Channel3 to SO2 (Left) - + + Channel 3 to SO2 (Left) + - Channel4 to SO2 (Left) - + + Channel 4 to SO2 (Left) + - Wave Pattern - - - - The amount of increase or decrease in frequency - - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - - - - Draw the wave here - + + Wave pattern graph + - pluginBrowser + MixerLine + + 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 + + + + + MixerLineLcdSpinBox + + + 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 + + + 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 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 + + + + + + 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 + + + + + InstrumentMiscView + + + 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 + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + ولوم + + + + Panning + Panning + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + InstrumentTrackView + + + Volume + ولوم + + + + Volume: + Volume: + + + + VOL + VOL + + + + Panning + Panning + + + + Panning: + Panning: + + + + PAN + PAN + + + + MIDI + + + + + Input + ورودی + + + + Output + خروجی + + + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 + + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + Volume + ولوم + + + + Volume: + Volume: + + + + VOL + VOL + + + + Panning + Panning + + + + Panning: + Panning: + + + + PAN + 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 + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + 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... + + + + + &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 + + + + + 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 + + + + 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) + + + + + 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 + + + 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 + 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 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 + + + + + OK + OK + + + + Cancel + لغو + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.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 + + + + + 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 + انتشار + + + + 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: + + + + + 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 + + + + + + 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 - + - Incomplete monophonic imitation tb303 - + + A native amplifier plugin + - Plugin for freely manipulating stereo output - + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + - Plugin for controlling knobs with sound peaks - + + Boost your bass the fast and simple way + - Plugin for enhancing stereo separation of a stereo input file - + + 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 - - - - Filter for importing FL Studio projects into LMMS - - - - GUS-compatible patch instrument - - - - Additive Synthesizer for organ-like sounds - - - - Tuneful things to bang on - - - - VST-host for using VST(i)-plugins within LMMS - - - - Vibrating string modeler - + + 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. - + - Player for SoundFont files - + + A graphical spectrum analyzer. + - Emulation of GameBoy (TM) APU - + + Plugin for enhancing stereo separation of a stereo input file + - Customizable wavetable synthesizer - + + Plugin for freely manipulating stereo output + - Embedded ZynAddSubFX - - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - - - - LMMS port of sfxr - - - - Monstrous 3-oscillator synth with modulation matrix - + + Tuneful things to bang on + + Three powerful oscillators you can modulate in several ways - + - A native amplifier plugin - + + A stereo field visualizer. + - Carla Rack Instrument - + + VST-host for using VST(i)-plugins within LMMS + - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - + + Vibrating string modeler + + plugin for using arbitrary VST effects inside LMMS. - + - Graphical spectrum analyzer plugin - + + 4-oscillator modulatable wavetable synth + - A NES-like synthesizer - + + plugin for waveshaping + - Player for GIG files - + + Mathematical expression parser + - A multitap echo delay plugin - - - - A native flanger plugin - - - - A native delay plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - + + Embedded ZynAddSubFX + - setupWidget + PluginDatabaseW - JACK (JACK Audio Connection Kit) - + + Carla - Add New + - OSS Raw-MIDI (Open Sound System) - + + Format + - SDL (Simple DirectMedia Layer) - + + Internal + - PulseAudio - + + LADSPA + - Dummy (no MIDI support) - + + DSSI + - ALSA Raw-MIDI (Advanced Linux Sound Architecture) - + + LV2 + - PortAudio - + + VST2 + - Dummy (no sound output) - + + VST3 + - ALSA (Advanced Linux Sound Architecture) - + + AU + - OSS (Open Sound System) - + + Sound Kits + - WinMM MIDI - + + Type + - ALSA-Sequencer (Advanced Linux Sound Architecture) - + + 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 + - sf2Instrument + PluginEdit - Bank - + + Plugin Editor + - Patch - + + Edit + - Gain - + + Control + - Reverb - + + MIDI Control Channel: + - Reverb Roomsize - + + N + - Reverb Damping - + + Output dry/wet (100%) + - Reverb Width - + + Output volume (100%) + - Reverb Level - + + Balance Left (0%) + - Chorus - + + + Balance Right (0%) + - Chorus Lines - + + Use Balance + - Chorus Level - + + Use Panning + - Chorus Speed - + + Settings + - Chorus Depth - + + Use Chunks + - A soundfont %1 could not be loaded. - + + 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: + - sf2InstrumentView + PluginFactory - Open other SoundFont file - + + Plugin not found. + - Click here to open another SF2 file - - - - Choose the patch - - - - Gain - - - - Apply reverb (if supported) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - - - - Reverb Roomsize: - - - - Reverb Damping: - - - - Reverb Width: - - - - Reverb Level: - - - - Apply chorus (if supported) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - - - - Chorus Lines: - - - - Chorus Level: - - - - Chorus Speed: - - - - Chorus Depth: - - - - Open SoundFont file - - - - SoundFont2 Files (*.sf2) - + + LMMS plugin %1 does not have a plugin descriptor named %2! + - sfxrInstrument + PluginParameter - Wave Form - + + Form + + + + + Parameter Name + + + + + ... + - sidInstrument + PluginRefreshW - Cutoff - + + Carla - Refresh + - Resonance - + + Search for new... + - Filter type - + + LADSPA + - Voice 3 off - + + DSSI + - Volume - + + LV2 + - Chip model - + + 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 + - sidInstrumentView + PluginWidget - Volume: - + + + + + + Frame + - Resonance: - + + Enable + - Cutoff frequency: - + + On/Off + - High-Pass filter - + + + + + PluginName + - Band-Pass filter - + + MIDI + - Low-Pass filter - + + AUDIO IN + - Voice3 Off - + + AUDIO OUT + - MOS6581 SID - + + GUI + - MOS8580 SID - + + Edit + - Attack: - تهاجم(Attack): + + Remove + - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - + + Plugin Name + - Decay: - محو شدن(Decay): - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - Sustain: - تقویت(Sustain): - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - Release: - رهایی(Release): - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - Pulse Width: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - Coarse: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - Pulse Wave - - - - Triangle Wave - - - - SawTooth - - - - Noise - - - - Sync - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - Ring-Mod - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - Filtered - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - Test - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - + + Preset: + - stereoEnhancerControlDialog + ProjectNotes - WIDE - + + Project Notes + یادداشت پروژه - Width: - + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + &Undo + + + + %1+Z + %1+Z + + + + &Redo + &Redo + + + + %1+Y + %1+Y + + + + &Copy + &کپی + + + + %1+C + %1+C + + + + Cu&t + Cu&t + + + + %1+X + %1+X + + + + &Paste + &چسباندن + + + + %1+V + %1+V + + + + Format Actions + + + + + &Bold + &Bold + + + + %1+B + %1+B + + + + &Italic + &Italic + + + + %1+I + %1+I + + + + &Underline + &Underline + + + + %1+U + %1+U + + + + &Left + &چپ + + + + %1+L + %1+L + + + + C&enter + C&enter + + + + %1+E + %1+E + + + + &Right + &راست + + + + %1+R + %1+R + + + + &Justify + &Justify + + + + %1+J + %1+J + + + + &Color... + &رنگ... - stereoEnhancerControls + ProjectRenderer - Width - + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + - stereoMatrixControlDialog + QObject - Left to Left Vol: - + + Reload Plugin + - Left to Right Vol: - + + Show GUI + - Right to Left Vol: - - - - Right to Right Vol: - + + Help + - stereoMatrixControls + QWidget - Left to Left - + + + + + Name: + نام: - Left to Right - + + URI: + - Right to Left - + + + + Maker: + سازنده: - Right to Right - + + + + Copyright: + حق چاپ: + + + + + Requires Real Time: + + + + + + + + + + Yes + بله + + + + + + + + + No + نه + + + + + Real Time Capable: + + + + + + In Place Broken: + + + + + + Channels In: + + + + + + Channels Out: + + + + + File: %1 + فایل: %1 + + + + File: + فایل: - vestigeInstrument + RecentProjectsMenu - Loading plugin - - - - Please wait while loading VST-plugin... - + + &Recently Opened Projects + - vibed + RenameDialog - String %1 volume - - - - String %1 stiffness - - - - Pick %1 position - - - - Pickup %1 position - - - - Pan %1 - - - - Detune %1 - - - - Fuzziness %1 - - - - Length %1 - - - - Impulse %1 - - - - Octave %1 - + + Rename... + تغییر نام... - vibedView + ReverbSCControlDialog - Volume: - - - - The 'V' knob sets the volume of the selected string. - - - - String stiffness: - - - - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - - - - Pick position: - برگزیدن موقعیت: - - - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - - - - Pickup position: - برداشتن موقعیت: - - - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - - - - Pan: - - - - The Pan knob determines the location of the selected string in the stereo field. - - - - Detune: - - - - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - - - - Fuzziness: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - - - - Length: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - Impulse or initial state - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - - - - Octave - - - - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - - - - Impulse Editor - - - - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - - - - Enable waveform - - - - Click here to enable/disable waveform. - - - - String - - - - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - - - - Sine wave - - - - Triangle wave - - - - Saw wave - - - - Square wave - - - - White noise wave - - - - User defined wave - - - - Smooth - - - - Click here to smooth waveform. - - - - Normalize - - - - Click here to normalize waveform. - - - - Use a sine-wave for current oscillator. - - - - Use a triangle-wave for current oscillator. - - - - Use a saw-wave for current oscillator. - - - - Use a square-wave for current oscillator. - - - - Use white-noise for current oscillator. - - - - Use a user-defined waveform for current oscillator. - - - - - 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 + ورودی + Input gain: - + افزایش ورودی: - OUTPUT - + + Size + اندازه + + Size: + اندازه: + + + + Color + رنگ + + + + Color: + رنگ: + + + + Output + خروجی + + + Output gain: - - - - Reset waveform - - - - Click here to reset the wavegraph back to default - - - - Smooth waveform - - - - Click here to apply smoothing to wavegraph - - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - - - - Clip input - - - - Clip input signal to 0dB - + افزایش خروجی: - waveShaperControls + 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 + + + + + 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 (<%1> + middle click) + + + + Mute/unmute selection (<%1> + middle click) + + + + + Reverse sample + + + + + Set clip color + + + + + Use track color + + + + + SampleTrack + + + Volume + ولوم + + + + Panning + Panning + + + + Mixer channel + + + + + + Sample track + تراک نمونه + + + + SampleTrackView + + + Track volume + ولوم تراک + + + + Channel volume: + + + + + VOL + VOL + + + + Panning + Panning + + + + Panning: + Panning: + + + + PAN + PAN + + + + Channel %1: %2 + + + + + SampleTrackWindow + + + GENERAL SETTINGS + + + + + Sample volume + + + + + Volume: + ولوم: + + + + VOL + VOL + + + + Panning + Panning + + + + 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 + + + + + + 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 + باشه + + + + Cancel + لغو + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + دقایق + + + + minute + دقیقه + + + + Disabled + غیرفعال + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + 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 + + + + + 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 + + + + + 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 + + + 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 + پروژه + + + + 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 + + + + + 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 + + + + + Maximize + + + + + Restore + + + + + 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 + + + + + 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. + + + + + 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 (<%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 + + + + + + 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 + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + 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 + + + + + Xpressive + + + 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: + 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 + 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: + افزایش خروجی: + + + + + 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 + افزایش خروجی diff --git a/data/locale/fr.ts b/data/locale/fr.ts index f8209d5d1..2c65444a8 100644 --- a/data/locale/fr.ts +++ b/data/locale/fr.ts @@ -2,93 +2,112 @@ AboutDialog + About LMMS À propos de LMMS - Version %1 (%2/%3, Qt %4, %5) - Version %1 (%2/%3, Qt %4, %5) - - - About - À propos - - - LMMS - easy music production for everyone - LMMS - la production musicale à la portée de tous - - - Authors - Auteurs - - - Translation - Traduction - - - 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! - Traduction française par Yann Collet (ycollet), midi-pascal, Olivier Humbert (trebmuh/olinuxx) et d'autres. - -Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou si vous souhaitez améliorer des traductions existantes, votre aide est la bienvenue ! Contactez simplement le mainteneur ! - - - License - Licence - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + Version %1 (%2/%3, Qt %4, %5). + + + + About + À propos + + + + LMMS - easy music production for everyone. + LMMS - une production musicale facile pour tous. + + + + Copyright © %1. + Copyright © %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> + + + + Authors + Auteurs + + + Involved Personnes impliquées + Contributors ordered by number of commits: Contributeurs classés par nombre de commits : - Copyright © %1 - Copyright © %1 + + Translation + Traduction - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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! + Langue actuelle non traduite (ou anglais natif). +Si vous souhaitez traduire LMMS dans une autre langue ou améliorer les traductions existantes, vous pouvez nous aider ! Il vous suffit simplement de contacter le responsable ! + + + + License + Licence AmplifierControlDialog + VOL VOL + Volume: Volume : + PAN PAN + Panning: Panoramisation : + LEFT GAUCHE + Left gain: Gain de gauche : + RIGHT DROITE + Right gain: Gain de droite : @@ -96,18 +115,22 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou AmplifierControls + Volume Volume + Panning Panoramisation + Left gain Gain de gauche + Right gain Gain de droite @@ -115,10 +138,12 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou AudioAlsaSetupWidget + DEVICE PÉRIPHÉRIQUE + CHANNELS CANAUX @@ -126,85 +151,60 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou AudioFileProcessorView - Open other sample - Ouvrir un autre échantillon - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Cliquez ici si vous souhaitez ouvrir un autre fichier audio. Une boîte de dialogue dans laquelle vous pourrez choisir le fichier apparaîtra. Des réglages comme le mode de jeu en boucle, les marqueurs de début et de fin, la valeur d'amplication, et ainsi de suite ne sont pas réinitialisés. Par conséquent, il peut ne pas ressembler à l'échantillon original. + + Open sample + Ouvrir un échantillon + Reverse sample Inverser l'échantillon - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Si vous activez ce bouton, l'échantillon complet est inversé. Ceci est utile pour certains effets, par exemple une cymbale crash inversée. - - - Amplify: - Amplifier : - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Ce bouton permet de régler le facteur d'amplification. Lorsque vous indiquez une valeur de 100%, votre échantillon n'est pas modifié. Sinon, il sera plus ou moins amplifié (votre fichier d'échantillon n'est pas modifié !) - - - Startpoint: - Marqueur de début : - - - Endpoint: - Marqueur de fin : - - - Continue sample playback across notes - Continuer de jouer l'échantillon à traver les notes - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Activer cette option fait que l'échantillon continue de jouer à travers les différentes notes - si vous changez la tonalité, ou si la longueur de la note s'arrête avant la fin de l'échantillon, alors la note suivante jouée continuera où elle aura été arrêtée. Pour remettre à zéro le jeu au début de l'échantillon, insérez une note en bas du clavier (< 20 Hz) - - + Disable loop Désactiver la boucle - This button disables looping. The sample plays only once from start to end. - Ce bouton désactive la boucle. L'échantillon n'est joué qu'une seule fois, du début à la fin. - - + Enable loop Activer la boucle - This button enables forwards-looping. The sample loops between the end point and the loop point. - Ce bouton active le bouclage permanent. L'échantillon boucle entre le point de fin et le point de bouclage. + + Enable ping-pong loop + Activer la boucle ping-pong - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Ce bouton active le bouclage en ping-pong. L'échantillon boucle d'avant en arrière entre son point de fin et le point de bouclage. + + Continue sample playback across notes + Continuer de jouer l'échantillon à traver les notes - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Ce bouton permet d'ajuster le point à partir duquel AudioFileProcessor démarre la lecture de l'échantillon. + + Amplify: + Amplifier : - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Ce bouton permet d'ajuster le point où AudioFileProcessor arrête la lecture de l'échantillon. + + Start point: + Point de départ : + + End point: + Point d'arrivée : + + + Loopback point: Point de bouclage : - - With this knob you can set the point where the loop starts. - Ce bouton pemet de déterminer le point à partir duquel la boucle commence. - AudioFileProcessorWaveView + Sample length: Longueur de l'échantillon : @@ -212,447 +212,469 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou 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 + + Client name + Nom du client - CHANNELS - CANAUX + + Channels + Canaux - AudioOss::setupWidget + AudioOss - DEVICE - PÉRIPHÉRIQUE + + Device + Périphérique - CHANNELS - CANAUX + + Channels + Canaux AudioPortAudio::setupWidget - BACKEND - SERVEUR + + Backend + Backend - DEVICE - PÉRIPHÉRIQUE + + Device + Périphérique - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - PÉRIPHÉRIQUE + + Device + Périphérique - CHANNELS - CANAUX + + Channels + Canaux AudioSdl::setupWidget - DEVICE - PÉRIPHÉRIQUE + + Device + Périphérique - AudioSndio::setupWidget + AudioSndio - DEVICE - PÉRIPHÉRIQUE + + Device + Périphérique - CHANNELS - CANAUX + + Channels + Canaux AudioSoundIo::setupWidget - BACKEND - SERVEUR + + Backend + Backend - DEVICE - PÉRIPHÉRIQUE + + 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 - 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... - - + 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 - Please open an automation pattern with the context menu of a control! + + 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 ! - - Values copied - Les valeurs ont été copiées - - - All selected values were copied to the clipboard. - Toutes les valeurs sélectionnées ont été copiées dans le presse-papier. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) Jouer/mettre en pause le motif (barre d'espace) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Cliquez ici pour jouer le motif actuel. Ceci est utile lors son édition. Le motif est automatiquement rejoué lorsque sa fin est atteinte. - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Arrêter de jouer le motif actuel (barre d'espace) - Click here if you want to stop playing of the current pattern. - Cliquez ici pour arrêter de jouer le motif actuel. - - - Draw mode (Shift+D) - Mode dessin (Shift+D) - - - Erase mode (Shift+E) - Mode effacement (Shift+E) - - - Flip vertically - Tourner verticalement - - - Flip horizontally - Tourner horizontalement - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Cliquer ici pour inverser le modèle. Les points sont inversés sur l'axe des y. - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Cliquer ici pour inverser le modèle. Les points sont inversés sur l'axe des x. - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Cliquez ici pour activer le mode dessin. Dans ce mode, vous pouvez ajouter et déplacer des valeurs particulières. Ceci est le mode par défaut qui est utilisé la plupart du temps. Vous pouvez aussi appuyer sur les touches 'Shift+D' de votre clavier pour activer ce mode. - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Cliquez ici pour activer le mode effacement. Dans ce mode, vous pourrez effacer des valeurs particulières. Vous pouvez aussi appuyer sur les touches 'Shift+E' de votre clavier pour activer ce mode. - - - 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 - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Une valeur de tension supérieure peut produire une courbe plus douce mais dépasser certaines valeurs. Une valeur de tension basse fera que la pente de la courbe se stabilisera à chaque point de contrôle. - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Cliquez ici pour choisir la progression discrète pour ce motif d'automation. La valeur de l'objet connecté restera contante entre les points de contrôle et se verra affecter immédiatement une nouvelle valeur quand un point de contrôle est atteint. - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Cliquez ici pour choisir la progression linéaire pour ce motif d'automation. La valeur de l'objet connecté changera à un taux constant entre les points de contrôle et atteindra la valeur correcte à chaque point de contrôle sans changement soudain. - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Cliquez ici pour choisir la progression cubique de Hermite pour ce motif d'automation. La valeur de l'objet connecté changera suivant une courbe lisse et adoucira les pics et les creux. - - - Cut selected values (%1+X) - Couper les valeurs sélectionnées (%1+X) - - - Copy selected values (%1+C) - Copier les valeurs sélectionnées (%1+C) - - - Paste values from clipboard (%1+V) - Coller les valeurs depuis le presse-papier (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Cliquez ici pour couper et coller les valeurs sélectionnées dans le presse-papier. Vous pourrez alors les coller n'importe où dans n'importe quel motif en cliquant sur le bouton coller. - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Cliquez ici pour copier les valeurs sélectionnées dans le presse-papier. Vous pourrez alors les coller n'importe où dans n'importe quel motif en cliquant sur le bouton coller. - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Cliquez ici et les valeurs se trouvant dans le presse-papier seront alors collées sur la première mesure visible. - - - Tension: - Tension : - - - Automation Editor - no pattern - Éditeur d'automation - pas de motif - - - Automation Editor - %1 - Éditeur d'automation - %1 - - + 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 - Timeline controls - Contrôles de la ligne de temps + + 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 - Model is already connected to this pattern. - Ce modèle est déjà connecté à ce motif. - - + Quantization Quantification - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Quantification. Paramètre la taille de pas la plus petite pour le point d'automation. Par défaut, ceci paramètre également la longueur, nettoyant les autres points dans la gamme. Pressez <Ctrl> pour écraser ce comportement. + + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> Déplacer un contrôle en appuyant sur <%1> - AutomationPatternView + AutomationClipView + Open in Automation editor Ouvrir dans l'éditeur d'automation + Clear Effacer + Reset name Réinitialiser le nom + Change name Modifier le nom - %1 Connections - %1 connexions - - - Disconnect "%1" - Déconnecter "%1" - - + Set/clear record Armer/désarmer l'enregistrement + Flip Vertically (Visible) Tourner verticalement (visible) + Flip Horizontally (Visible) Tourner horizontalement (visible) - Model is already connected to this pattern. + + %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 - BBEditor + 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) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Cliquez ici pour jouer le rythme ou la ligne de basse actuel. Le rythme ou la ligne de basse est rejoué lorsque sa fin est atteinte. - - - Click here to stop playing of current beat/bassline. - Cliquez ici pour arrêter de jouer le rythme ou la ligne de basse. - - - Add beat/bassline - Ajouter un rythme ou une ligne de basse - - - Add automation-track - Ajouter une piste d'automation - - - Remove steps - Supprimer des pas - - - Add steps - Ajouter des pas - - + Beat selector Sélecteur de rythme + Track and step actions Actions des pas et de piste - Clone Steps - Cloner des pas + + 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 + - BBTCOView + 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 - - Change color - Modifier la couleur - - - Reset color to default - Réinitialiser la couleur par défaut - - BBTrack + PatternTrack + Beat/Bassline %1 Rythme ou ligne de basse %1 + Clone of %1 Clone de %1 @@ -660,26 +682,32 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou BassBoosterControlDialog + FREQ FRÉQ + Frequency: Fréquence : + GAIN GAIN + Gain: Gain : + RATIO RATIO + Ratio: Ratio : @@ -687,14 +715,17 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou BassBoosterControls + Frequency Fréquence + Gain Gain + Ratio Ratio @@ -702,107 +733,2627 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou BitcrushControlDialog + IN - IN + ENTRÉE + OUT - OUT + SORTIE + + GAIN GAIN - Input Gain: + + Input gain: Gain en entrée : - Input Noise: - Bruit en entrée : - - - Output Gain: - Gain en sortie : - - - CLIP - CLIP - - - Output Clip: - Clip en sortie : - - - Rate Enabled - Taux activé - - - Enable samplerate-crushing - Activer l'écrasement de fréquence - - - Depth Enabled - Profondeur activée - - - Enable bitdepth-crushing - Activer l'écrasement de la profondeur - - - Sample rate: - Taux d'échantillonnage : - - - Stereo difference: - Différence stéréo : - - - Levels: - Niveaux : - - + 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 : + - CaptionMenu + 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 + + + + CarlaAboutW + + + About Carla + À propos de Carla + + + + About + À propos + + + + About text here + À propos du texte ici + + + + Extended licensing here + 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 + + 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 + + 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 + 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) + + + + CarlaHostW + + + MainWindow + Fenêtre principale + + + + Rack + Rack + + + + Patchbay + Baie de connexions + + + + Logs + Journaux + + + + Loading... + Chargement... + + + + 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 - Help (not available) - Aide (non disponible) + + toolBar + Barre d'outils + + + + 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 + + + + &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... + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - Cliquez ici pour montrer ou cacher l'interface graphique utilisateur de Carla. + + Settings + Configuration + + + + main + principal + + + + canvas + + + + + engine + moteur + + + + osc + osc + + + + file-paths + chemins d'accès des fichiers + + + + plugin-paths + chemins d'accès des plugins + + + + wine + wine + + + + experimental + expérimental + + + + Widget + Widget + + + + + Main + Principal + + + + + Canvas + + + + + + Engine + Moteur + + + + File Paths + Chemins d'accès des fichiers + + + + Plugin Paths + chemins d'accès des plugins + + + + Wine + Wine + + + + + 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 + + + + 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 + + + + 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 + + + + 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 + + + + 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) + + + + Whenever possible, run the plugins in bridge mode. + Exécutez les plugins en mode bridge si cela est possible. + + + + 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 @@ -810,58 +3361,73 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou 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é. @@ -869,18 +3435,22 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou 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. @@ -888,116 +3458,158 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou ControllerView + Controls Contrôles - Controllers are able to automate the value of a knob, slider, and other controls. - Les contrôleurs sont capables d'automatiser le réglage d'un bouton, d'un curseur et d'autres 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 - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: + + Band 1/2 crossover: Fréquence de croisement des bandes 1/2 : - Band 2/3 Crossover: + + Band 2/3 crossover: Fréquence de croisement des bandes 2/3 : - Band 3/4 Crossover: + + Band 3/4 crossover: Fréquence de croisement des bandes 3/4 : - Band 1 Gain: - Gain bande 1 : + + Band 1 gain + Gain de la bande 1 - Band 2 Gain: - Gain bande 2 : + + Band 1 gain: + Gain de la bande 1 : - Band 3 Gain: - Gain bande 3 : + + Band 2 gain + Gain de la bande 2 - Band 4 Gain: - Gain bande 4 : + + Band 2 gain: + Gain de la bande 2 : - Band 1 Mute + + 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 + + Mute band 1 Mettre la bande 1 en sourdine - Band 2 Mute - Bande 2 en sourdine - - - Mute Band 2 + + Band 2 mute Mettre la bande 2 en sourdine - Band 3 Mute - Bande 3 en sourdine + + Mute band 2 + - Mute Band 3 - Mettre la bande 3 en sourdine + + Band 3 mute + - Band 4 Mute - Bande 4 en sourdine + + Mute band 3 + - Mute Band 4 - Mettre la bande 4 en sourdine + + Band 4 mute + + + + + Mute band 4 + DelayControls - Delay Samples - Délai d'échantillonnage + + Delay samples + + Feedback Réinjection - Lfo Frequency - Fréquence LFO + + LFO frequency + - Lfo Amount + + LFO amount Niveau LFO + Output gain Gain en sortie @@ -1005,228 +3617,528 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou DelayControlsDialog - Lfo Amt - Niveau LFO - - - Delay Time - Durée du délai - - - Feedback Amount - Niveau de réaction - - - Lfo - LFO - - - Out Gain - Gain en sortie - - - Gain - Gain - - + 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 + + + + + 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 + Mode valeur + + + + TextLabel + TextLabel + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + + + + + Buffer size: + + + + + Sample rate: + Taux d'échantillonnage : + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + Redémarrez le moteur pour charger les nouveaux paramètres + DualFilterControlDialog - Filter 1 enabled - Filtre 1 activé - - - Filter 2 enabled - Filtre 2 activé - - - Click to enable/disable Filter 1 - Cliquez ici pour activer/désactiver le filtre 1 - - - Click to enable/disable Filter 2 - Cliquez ici pour activer/désactiver le filtre 2 - - + + 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 1 frequency - Fréquence de coupure 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 2 frequency - Fréquence de coupure 2 + + Cutoff frequency 2 + + Q/Resonance 2 Q/Résonance 2 + Gain 2 Gain 2 - LowPass + + + Low-pass Passe-bas - HiPass + + + Hi-pass Passe-haut - BandPass csg + + + Band-pass csg Passe-bande "csg" - BandPass czpg + + + Band-pass czpg Passe-bande "czpg" + + Notch Coupe-bande - Allpass + + + All-pass Passe-tout + + Moog Moog - 2x LowPass + + + 2x Low-pass Passe-bas x2 - RC LowPass 12dB - RC passe-bas 12dB + + + RC Low-pass 12 dB/oct + RC Passe-bas 12 dB - RC BandPass 12dB - RC passe-bande 12dB + + + RC Band-pass 12 dB/oct + RC Passe-bande 12 dB - RC HighPass 12dB - RC passe-haut 12dB + + + RC High-pass 12 dB/oct + RC Passe-haut 12 dB - RC LowPass 24dB - RC passe-bas 24dB + + + RC Low-pass 24 dB/oct + RC Passe-bas 24 dB - RC BandPass 24dB - RC passe-bande 24dB + + + RC Band-pass 24 dB/oct + RC Passe-bande 24 dB - RC HighPass 24dB - RC Passe-haut 24dB + + + RC High-pass 24 dB/oct + RC Passe-haut 24 dB - Vocal Formant Filter - Filtre Formant Vocal + + + Vocal Formant + Formant vocal + + 2x Moog 2x Moog - SV LowPass - SV passe-bas + + + SV Low-pass + SV Passe-bas - SV BandPass - SV passe-bande + + + SV Band-pass + SV Passe-bande - SV HighPass - SV passe-haut + + + SV High-pass + SV Passe-bas + + SV Notch SV coupe-bande + + Fast Formant Formant rapide + + Tripole Tripôle @@ -1234,41 +4146,55 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou 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 - Transport controls - Contrôle du transport + + Toggle Step Recording + Effect + Effect enabled Effet activé + Wet/Dry mix Mélange originel/traité + Gate Seuil + Decay Affaiblissement (decay) @@ -1276,6 +4202,7 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou EffectChain + Effects enabled Effets activés @@ -1283,10 +4210,12 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou EffectRackView + EFFECTS CHAIN CHAÎNE D'EFFETS + Add effect Ajouter un effet @@ -1294,22 +4223,28 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou EffectSelectDialog + Add effect Ajouter un effet + + Name Nom + Type Type + Description Description + Author Auteur @@ -1317,90 +4252,57 @@ Si vous êtes intéressé par la traduction de LMMS dans une nouvelle langue ou EffectView - Toggles the effect on or off. - Active ou désactive l'effet. - - + On/Off On/Off + W/D W/D + Wet Level: Niveau avec effet : - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - Le bouton « Wet/Dry » règle le rapport entre le signal d'entrée et le signal d'effet qui produit la sortie. - - + DECAY DECAY + Time: Durée : - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - Le bouton « Decay » contrôle le nombre de tampons de silence qui doivent s'écouler avant que le greffon arrête le traitement. Les valeurs faibles réduiront la charge du processeur mais feront courrir le risque de couper la fin sur des effets de délai et de réverbération. - - + GATE GATE + Gate: Gate : - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - Le bouton « Gate » contrôle le niveau du signal qui est considéré comme étant un 'silence' lorsque l'on doit décider d'arrêter le traitement des signaux. - - + Controls Contrôles - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Les greffons d'effet agissent comme une série d'effets enchaînés dans laquelle le signal sera traité du haut vers le bas. - -Le bouton « On/Off » vous permet de court-circuiter un greffon donné à n'importe quel moment. - -Le bouton « Mix Wet/Dry » contrôle l'équilibre entre le signal en entrée et le signal traité qui est le résultat en sortie de l'effet. L'entrée d'un étage est la sortie de l'étage précédent. De ce fait, l'importance du signal 'original' diminue au fur et à mesure de l'application des effets. - -Le bouton « Decay » contrôle le temps pendant lequel le signal continuera d'être traité après que les notes aient été relachées. L'effet arrêtera de traiter le signal lorsque le volume sera passé en dessous d'un seuil donné pendant une période de temps donnée. Ce bouton règle la 'période de temps donnée'. Les périodes longues nécessiteront plus de processeur, ce qui fait que ce nombre devrait être réglé assez bas pour la plupart des effets. Il a besoin d'être augmenté pour les effets qui produisent de longues périodes de silence, p. ex. les délais. - -Le bouton « Gate » contrôle le 'seuil donné' pour l'arrêt automatique de l'effet. L'horloge pour la 'période de temps donnée' démarrera dès que le niveau du signal traité passera sous le niveau spécifié avec ce bouton. - -Le bouton « Contrôles » ouvre un boîte de dialogue permettant de modifier la configuration de l'effet. - -Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l'ordre dans lequel les effets sont traités ou bien également supprimer un effet. - - + Move &up Déplacer vers le &haut + Move &down Déplacer vers le &bas + &Remove this plugin &Supprimer cet effet @@ -1408,408 +4310,409 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo EnvelopeAndLfoParameters - Predelay - Pré-délai + + Env pre-delay + - Attack - Attaque + + Env attack + - Hold - Maintien + + Env hold + - Decay - Affaiblissement (decay) + + Env decay + Affaiblissement de l'enveloppe - Sustain - Soutien + + Env sustain + - Release - Relâchement + + Env release + - Modulation - Modulation + + Env mod amount + - LFO Predelay - Pré-délai du LFO + + LFO pre-delay + - LFO Attack - Attaque du LFO + + LFO attack + - LFO speed - Vitesse du LFO + + LFO frequency + - LFO Modulation - Modulation du LFO + + LFO mod amount + - LFO Wave Shape - Forme d'onde du LFO + + LFO wave shape + - Freq x 100 - Fréq x 100 + + LFO frequency x 100 + - Modulate Env-Amount - Moduler le niveau de l'enveloppe + + Modulate env amount + EnvelopeAndLfoView + + DEL DEL - Predelay: - Pré-délai : - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Utilisez ce bouton pour régler le pré-délai de l'enveloppe. Plus la valeur est importante, plus le temps sera long avant de démarrer l'enveloppe. + + + Pre-delay: + + + ATT ATT + + Attack: Attaque : - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Utilisez ce bouton pour régler le temps d'attaque de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour monter au niveau d'attaque. Choisissez une petite valeur pour des instruments comme le piano et une grande valeur pour les cordes. - - + HOLD HOLD + Hold: Maintien : - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Utilisez ce bouton pour régler le temps de maintien de l'enveloppe. Plus la valeur est importante, plus l'enveloppe maintien longtemps le niveau d'attaque avant de commencer à descendre vers le niveau de soutien. - - + DEC DEC + Decay: Affaiblissement (decay) : - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Utilisez ce bouton pour régler le temps d'affaiblissement de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour descendre du niveau d'attaque au niveau de soutien. Choisissez une petite valeur pour des instruments comme le piano. - - + SUST SUST + Sustain: Soutien : - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Utilisez ce bouton pour régler le niveau de soutien de l'enveloppe. Plus la valeur est importante, plus l'enveloppe reste longtemps à un niveau élevé avant de descendre à zéro. - - + REL REL + Release: Relâchement : - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Utilisez ce bouton pour régler le temps de relâchement de l'enveloppe. Plus la valeur est importante, plus l'enveloppe met du temps pour descendre du niveau de soutien à zéro. Choisissez une grande valeur pour des instruments comme les cordes. - - + + AMT AMT + + Modulation amount: Niveau de modulation : - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Utilisez ce bouton pour régler le niveau de modulation de l'enveloppe. Plus la valeur est importante, plus la composante correspondante (p. ex. volume ou fréquence de coupure) sera influencée par l'enveloppe. - - - LFO predelay: - Pré-délai du LFO : - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Utilisez ce bouton pour régler le temps de pré-délai du LFO. Plus la valeur est importante, plus le LFO met du temps avant de commencer à osciller. - - - LFO- attack: - Attaque du LFO : - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Utilisez ce bouton pour régler le temps d'attaque du LFO. Plus la valeur est importante, plus le LFO met du temps pour monter à son amplitude maximale. - - + SPD SPD - LFO speed: - Vitesse du LFO : - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Utilisez ce bouton pour régler la vitesse du LFO. Plus la valeur est importante, plus le LFO oscillera vite et plus votre effet sera rapide. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Utilisez ce bouton pour régler le niveau de modulation du LFO. Plus la valeur est importante, plus la composante choisie (p. ex. volume ou fréquence de coupure) sera influencée par le LFO. - - - Click here for a sine-wave. - Cliquez ici pour une onde sinusoïdale. - - - Click here for a triangle-wave. - Cliquez ici pour une onde triangulaire. - - - Click here for a saw-wave for current. - Cliquez ici pour une onde en dents-de-scie. - - - Click here for a square-wave. - Cliquez ici pour une onde carrée. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Cliquez ici pour une onde définie par l'utilisateur. Ensuite, faites glisser un fichier d'échantillon correspondant sur le graphique du LFO. + + Frequency: + Fréquence : + FREQ x 100 FRÉQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Cliquez ici si la fréquence de ce LFO doit être multipliée par 100. + + Multiply LFO frequency by 100 + - multiply LFO-frequency by 100 - multiplier la fréquence du LFO par 100 + + MODULATE ENV AMOUNT + - MODULATE ENV-AMOUNT - MODULER LA QUANTITÉ D'ENVELOPPE - - - Click here to make the envelope-amount controlled by this LFO. - Cliquez ici pour que le niveau de l'enveloppe soit contrôlé par ce LFO. - - - control envelope-amount by this LFO - Contrôler le niveau de l'enveloppe avec ce LFO + + Control envelope amount by this LFO + + ms/LFO: ms/LFO : + Hint Astuce - Drag a sample from somewhere and drop it in this window. - Faites glisser un échantillon et déposez-le dans cette fenêtre. - - - Click here for random wave. - Cliquez ici pour une onde aléatoire. + + Drag and drop a sample into this window. + EqControls + Input gain Gain en entrée + Output gain Gain en sortie - Low shelf gain - Gain du low-shelf + + 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 - Gain du high-shelf + + High-shelf gain + + HP res PH rés - Low Shelf res - Rés du low-shelf + + 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 - Rés du high-shelf + + High-shelf res + + LP res Rés. du passe-base + HP freq Fréquence du passe-haut - Low Shelf freq - Fréquence du low-shelf + + 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 - Fréquence du high-shelf + + High-shelf freq + + LP freq Fréq. passe-base + HP active Passe-haut actif - Low shelf active - Low-shelf 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 - High-shelf actif + + 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 - type de passe-bas + + Low-pass type + - high pass type - type de passe-haut + + High-pass type + + Analyse IN Analyse d'entrée + Analyse OUT Analyse de sortie @@ -1817,85 +4720,108 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo EqControlsDialog + HP PH - Low Shelf - Low-shelf + + Low-shelf + + Peak 1 Crête 1 + Peak 2 Crête 2 + Peak 3 Crête 3 + Peak 4 Crête 4 - High Shelf - High-shelf + + High-shelf + + LP Passe-bas - In Gain - Gain d'entrée + + Input gain + Gain en entrée + + + Gain Gain - Out Gain + + Output gain Gain en sortie + Bandwidth: Largeur de bande : + + Octave + Octave + + + Resonance : Résonance : + Frequency: Fréquence : - lp grp - passe-bas grp + + LP group + - hp grp - passe-haut grp - - - Octave - Octave + + HP group + EqHandle + Reso: Réso : + BW: Bande-passante : + + Freq: Fréquence : @@ -1903,254 +4829,272 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo ExportProjectDialog + Export project Exporter le projet - Output - Sortie - - - File format: - Format de fichier : - - - Samplerate: - Taux d'échantillonnage : - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Débit : - - - 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 - - - Depth: - Profondeur : - - - 16 Bit Integer - Entier sur 16 bits - - - 32 Bit Float - Flottant sur 32 bits - - - Quality settings - Réglages de qualité - - - Interpolation: - Interpolation : - - - Zero Order Hold - Bloqueur d'ordre zéro - - - Sinc Fastest - Sync plus rapide - - - Sinc Medium (recommended) - Sync moyenne (recommandée) - - - Sinc Best (very slow!) - Sync optimale (trés lent !) - - - Oversampling (use with care!): - Sur-échantillonnage (utiliser avec précaution !) : - - - 1x (None) - 1x (Aucun) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Démarrer - - - Cancel - Annuler - - - Export as loop (remove end silence) - Exporter sous la forme d'une boucle (supprime le silence de fin) + + Export as loop (remove extra bar) + + Export between loop markers Exporter la section entre les marqueurs de boucle + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + Format de fichier : + + + + 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: + Mode stéréo : + + + + Mono + Mono + + + + Stereo + Stéréo + + + + Joint stereo + + + + + Compression level: + Niveau de compression : + + + + Bitrate: + Débit : + + + + 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 + Utiliser un taux variable + + + + Quality settings + Réglages de qualité + + + + Interpolation: + Interpolation : + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + 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 - Export project to %1 - Exporter le projet vers %1 - - - 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% - - + 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 ! - 24 Bit Integer - Entier 24 bits + + Export project to %1 + Exporter le projet vers %1 - Use variable bitrate - Utiliser un taux variable + + ( Fastest - biggest ) + - Stereo mode: - Mode stéréo : + + ( Slowest - smallest ) + - Stereo - Stéréo + + Error + Erreur - Joint Stereo - Stéréo conjointe + + 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. - Mono - Mono - - - Compression level: - Niveau de compression : - - - (fastest) - (le plus rapide) - - - (default) - (par défaut) - - - (smallest) - (le plus petit) - - - - Expressive - - Selected graph - Graphique sélectionné - - - A1 - A1 - - - A2 - A2 - - - A3 - A3 - - - W1 smoothing - Adoucissement W1 - - - W2 smoothing - Adoucissement W2 - - - W3 smoothing - Adoucissement W3 - - - PAN1 - PAN1 - - - PAN2 - PAN2 - - - REL TRANS - TRANS REL + + 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 : @@ -2158,14 +5102,27 @@ Veuillez vous assurez que vous avez les droits d'écriture sur le fichier e FileBrowser + + User content + + + + + Factory content + + + + Browser Explorateur + Search Chercher + Refresh list Rafraîchir la liste @@ -2173,65 +5130,105 @@ Veuillez vous assurez que vous avez les droits d'écriture sur le fichier e FileBrowserTreeWidget + Send to active instrument-track Envoyer vers la piste d'instrument actif - Open in new instrument-track/B+B Editor - Ouvrir dans une nouvelle piste d'instrument / éditeur de rythme et de ligne de basse + + 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... - --- Factory files --- - --- Fichiers usine --- - - - Open in new instrument-track/Song Editor - Ouvrir dans une nouvelle piste d'instrument / éditeur de morceau - - + Error Erreur - does not appear to be a valid - ne semble pas être valide + + %1 does not appear to be a valid %2 file + - file - fichier + + --- Factory files --- + --- Fichiers usine --- FlangerControls - Delay Samples - Délai d'échantillonnage + + Delay samples + - Lfo Frequency - Fréquence LFO + + LFO frequency + + Seconds Secondes + + Stereo phase + + + + Regen Régén + Noise Bruit + Invert Inverser @@ -2239,145 +5236,516 @@ Veuillez vous assurez que vous avez les droits d'écriture sur le fichier e FlangerControlsDialog - Delay Time: - Temps de délai : - - - Feedback Amount: - Niveau de réinjection : - - - White Noise Amount: - Niveau de bruit blanc : - - + DELAY - 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 - Period: - Période : + + 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 - FxLine + 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 + + + + + MixerLine + + Channel send amount Quantité de signal envoyé du canal - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Le canal d'effet reçoit l'entrée depuis une ou plusieurs pistes d'instrument. - Il peut, à son tour, être routé vers de multiples autres canaux d'effets. LMMS prend automatiquement soin de vous en empêchant des boucles infinies et ne permet pas de faire une connexion qui résulterait en une boucle infinier. - -Afin de router le canal vers un autre canal, sélectionnez le canal d'effet et cliquez sur le bouton "envoyer" sur le canal auquel vous voulez envoyer. Le bouton en dessous du bouton d'envoi contrôle le niveau du signal qui est envoyé au canal. - -Vous pouvez supprimer et déplacer les canaux d'effets dans le menu contextuel, qui est accessible en cliquant-droit sur le canal d'effet. - - + 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 + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + Assigner à : + + + + New mixer Channel + Nouveau canal d'effet + + + + Mixer + + Master Général - FX %1 + + + + Channel %1 Effet %1 + Volume Volume + Mute Mettre en sourdine + Solo Solo - FxMixerView + MixerView - FX-Mixer + + Mixer Mélangeur d'effets - FX Fader %1 + + Fader %1 Chariot d'effet %1 + Mute Mettre en sourdine - Mute this FX channel + + Mute this mixer channel Mettre ce canal d'effet en sourdine + Solo Solo - Solo FX channel + + Solo mixer channel Mettre ce canal d'effet en solo - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 Quantité à envoyer du canal %1 au canal %2 @@ -2385,14 +5753,17 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context GigInstrument + Bank Banque + Patch Son + Gain Gain @@ -2400,46 +5771,23 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context GigInstrumentView - Open other GIG file - Ouvrir un autre fichier GIG - - - Click here to open another GIG file - Cliquez ici pour ouvrir un autre fichier GIG - - - Choose the patch - Choisir un son - - - Click here to change which patch of the GIG file to use - Cliquez ici pour modifier le son du fichier GIG à utiliser - - - Change which instrument of the GIG file is being played - Modifier quel instrument du fichier GIG est joué - - - Which GIG file is currently being used - Quel fichier GIG est actuellement utilisé - - - Which patch of the GIG file is currently being used - Quel instrument du fichier GIG est actuellement utilisé - - - Gain - Gain - - - Factor to multiply samples by - Facteur multiplicatif des échantillons - - + + Open GIG file Ouvrir un fichier GIG + + Choose patch + + + + + Gain: + Gain : + + + GIG Files (*.gig) Fichiers GIG (*.gig) @@ -2447,42 +5795,52 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context 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 @@ -2490,650 +5848,798 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context InstrumentFunctionArpeggio + Arpeggio Arpège + Arpeggio type Type d'arpège + Arpeggio range Plage d'arpège - Arpeggio time - Temps d'arpège + + Note repeats + - 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 - - - Random - Aléatoire - - - Free - Libre - - - Sort - Tri - - - Sync - Sync - - - Down and up - Descendant et ascendant + + Cycle steps + Pas de cycle + Skip rate Taux de saut + Miss rate Taux de manqué - Cycle steps - Pas de cycle + + 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 - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Un arpège est une façon de jouer des instruments (en particulier ceux à cordes pincées), qui rend la musique plus vivante. Les cordes de tels instruments (p. ex. les harpes) sont pincées comme des accords. La seule différence est que cela est fait de manière séquentielle, ce qui fait que les notes ne sont pas jouées en même temps. Les arpèges typiques sont des triades majeures ou mineures, mais il y a beaucoup d'autres accords possibles, vous pouvez choisr. - - + RANGE PLAGE + Arpeggio range: Plage d'arpège : + octave(s) octave(s) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Utilisez ce bouton pour régler la plage de l'arpège en octaves. L'arpège sélectionné sera joué sur le nombre d'octaves choisi. + + REP + - TIME - TEMPS + + Note repeats: + - Arpeggio time: - Temps d'arpège : - - - ms - ms - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Utilisez ce bouton pour régler le temps d'arpège en millisecondes. Le temps d'arpège indique la durée pendant laquelle chaque note de l'arpège sera joué. - - - GATE - DUREE - - - Arpeggio gate: - Durée d'arpège : - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Utilisez ce bouton pour régler la durée d'arpège. La durée d'arpège indique le pourcentage d'une note complète de l'arpège qui sera joué. Avec ceci vous pouvez faire de beaux arpèges staccato. - - - Chord: - Accord : - - - Direction: - Direction : - - - Mode: - Mode : - - - SKIP - SAUT - - - Skip rate: - Taux de saut : - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - La fonction de saut fera que l'arpéggiateur mettra un pas en pause au hasard. Il commencera en position anti-horaire complète et, sans effet, il progressera graduellement vers une amnésie complète à son paramétrage maximum. - - - MISS - MANQUÉ - - - Miss rate: - Taux de manqué : - - - The miss function will make the arpeggiator miss the intended note. - La fonction manqué fera que l'arpégiateur manquera la note attendue. + + time(s) + + CYCLE CYCLE + Cycle notes: Notes de cycle : + note(s) note(s) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - Saute de n pas dans l'arpège et les cycles si nous sommes au délà de la gamme de note. Si la gamme de note totale est divisible en parts égales par le nombre de pas au dessus desquels on saute, vous serez coincé dans un arpège plus court ou bien même dans une note. + + 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 - Phrygolydian - Phrygo-lydienne + + Phrygian + Phrygien + Lydian Lydienne + Mixolydian Mixolydienne + Aeolian Éolienne + Locrian Locrienne - Chords - Accords - - - Chord type - Type d'accord - - - Chord range - Gamme d'accord - - + 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 - RANGE - GAMME - - - Chord range: - Gamme d'accord : - - - octave(s) - octave(s) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Utilisez ce bouton pour régler la gamme d'accord en octaves. L'accord sélectionné sera joué sur le nombre d'octaves choisi. - - + STACKING EMPILEMENT + Chord: Accord : + + + RANGE + GAMME + + + + Chord range: + Gamme d'accord : + + + + octave(s) + octave(s) + InstrumentMidiIOView + ENABLE MIDI INPUT ACTIVER L'ENTRÉE MIDI - CHANNEL - CANAL - - - VELOCITY - VÉLOCITÉ - - + ENABLE MIDI OUTPUT ACTIVER LA SORTIE MIDI - PROGRAM - PROGRAMME + + + 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 - NOTE - NOTE - - + 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 vélocité normalisée de base des instruments MIDI pour un volume de note de 100% + + 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 @@ -3141,137 +6647,171 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context InstrumentMiscView + MASTER PITCH TONALITÉ GÉNÉRALE - Enables the use of Master Pitch - Active l'utilisation de la 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 - LowPass + + Low-pass Passe-bas - HiPass + + Hi-pass Passe-haut - BandPass csg - Passe-bande "csg" + + Band-pass csg + Passe-bande CSG - BandPass czpg - Passe-bande "czpg" + + Band-pass czpg + Passe-bande CZPG + Notch Coupe-bande - Allpass + + All-pass Passe-tout + Moog Moog - 2x LowPass - Passe-bas x2 + + 2x Low-pass + 2x Passe-bas - RC LowPass 12dB - RC passe-bas 12dB + + RC Low-pass 12 dB/oct + RC Passe-bas 12 dB - RC BandPass 12dB - RC passe-bande 12dB + + RC Band-pass 12 dB/oct + RC Passe-bande 12 dB - RC HighPass 12dB - RC passe-haut 12dB + + RC High-pass 12 dB/oct + RC Passe-haut 12 dB - RC LowPass 24dB - RC Passe Bas 24dB + + RC Low-pass 24 dB/oct + RC Passe-bas 24 dB - RC BandPass 24dB - RC Passe Bande 24dB + + RC Band-pass 24 dB/oct + RC Passe-bande 24 dB - RC HighPass 24dB - RC Passe Haut 24dB + + RC High-pass 24 dB/oct + RC Passe-haut 24 dB - Vocal Formant Filter - Filtre formant vocal + + Vocal Formant + Formant vocal + 2x Moog 2x Moog - SV LowPass - SV passe-bas + + SV Low-pass + SV Passe-bas - SV BandPass - SV passe-bande + + SV Band-pass + SV Passe-bande - SV HighPass - SV passe-haut + + SV High-pass + SV Passe-haut + SV Notch SV coupe-bande + Fast Formant Formant rapide + Tripole Tripôle @@ -3279,50 +6819,42 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context InstrumentSoundShapingView + TARGET CIBLE - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Ces onglets contiennent des enveloppes. Elles sont très important pour la modification d'un son, dans le sens où elles sont presque toujours nécessaires pour la synsthèse soustractive. Par exemple si vous avez une enveloppe de volume, vous pouvez régler quand le son devra avoir un volume spécifique. Si vous souhaitez créer des cordes douces alors votre son doit commencer et se terminer très doucement. Ceci peut être obtenu en réglant des temps d'attaque et de descente longs. C'est la même chose pour les autres composantes comme le panoramisation, la fréquence de coupure pour le filtre utilisé et ainsi de suite. Amusez-vous un peu avec ! Vous pouvez vraiment faire de beaux sons à partir d'une onde en dents-de-scie avec juste quelques enveloppes... ! - - + FILTER FILTRE - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Ici, vous pouvez choisir le filtre intégré que vous souhaitez utiliser pour cette piste d'instrument. Les filtres sont très important pour la modification des caractéristiques d'un son. - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Utilisez ce bouton pour régler la fréquence de coupure du filtre choisi. La fréquence de coupure spécifie la fréquence à laquelle un filtre coupera le signal. Par exemple un filtre passe-bas coupera toutes les fréquences au-dessus de la fréquence de coupure. Un filtre passe-haut coupera toutes les fréquences en-dessous de la fréquence de coupure, et ainsi de suite... - - - RESO - RESO - - - Resonance: - Résonance : - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Utilisez ce bouton pour régler la Q/Résonance pour le filtre choisi. La Q/Résonance indique au filtre dans quelle proportion il devra amplifier les fréquences proches de la fréquence de coupure. - - + FREQ FRÉQ - cutoff frequency: + + 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. @@ -3330,222 +6862,352 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context InstrumentTrack + + unnamed_track piste_sans_nom - Volume - Volume - - - Panning - Panoramisation - - - Pitch - Tonalité - - - FX channel - Canal d'effet - - - Default preset - Pré-réglage par défaut - - - With this knob you can set the volume of the opened channel. - Avec ce bouton vous pouvez régler le volume du canal ouvert. - - + Base note Note de base + + First note + + + + + Last note + Dernière note + + + + Volume + Volume + + + + Panning + Panoramisation + + + + Pitch + Tonalité + + + Pitch range Plage de hauteur - Master Pitch + + Mixer channel + Canal d'effet + + + + Master pitch Tonalité générale + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + 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 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 Effet %1 : %2 InstrumentTrackWindow + GENERAL SETTINGS CONFIGURATION GÉNÉRALE - Instrument volume - Volume de l'instrument + + Volume + Volume + Volume: Volume : + VOL VOL + Panning Panoramisation + Panning: Panoramisation : + PAN PAN + Pitch Tonalité + Pitch: Tonalité : + cents centièmes + PITCH PITCH - FX channel - Canal d'effet - - - FX - EFFETS - - - Save preset - Enregistrer le pré-réglage - - - XML preset file (*.xpf) - Fichier XML de pré-réglage (*.xpf) - - + Pitch range (semitones) Plage de hauteur (demi-tons) + RANGE PLAGE + + Mixer channel + Canal d'effet + + + + CHANNEL + EFFET + + + 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 - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Cliquer ici pour sauvegarder les pré-réglages actuels de la piste instrumentale dans un fichier de pré-réglages. Vous pourrez recharger ces pré-réglages en double-cliquant dessus dans le navigateur de pré-réglages. - - - Use these controls to view and edit the next/previous track in the song editor. - Utiliser ces contôles pour voir ou éditer la piste suivante ou précédente dans l'éditeur de morceau. - - + SAVE SAUV + Envelope, filter & LFO Enveloppe, filtre, et LFO + Chord stacking & arpeggio Empilement d'accords et arpège + Effects Effets - MIDI settings - Configurations MIDI + + 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 - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : + + + 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 @@ -3553,10 +7215,12 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context LadspaControlDialog + Link Channels Lier les canaux + Channel Canal @@ -3564,28 +7228,46 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context LadspaControlView + Link channels Lier les canaux + Value: Valeur : - - Sorry, no help available. - Désolé, l'aide n'est pas disponible. - LadspaEffect + Unknown LADSPA plugin %1 requested. - Le greffon LDASPA %1 demandé est inconnu. + 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 : @@ -3593,18 +7275,26 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context LeftRightNav + + + Previous Précédent + + + Next Suivant + Previous (%1) Précédent (%1) + Next (%1) Suivant (%1) @@ -3612,30 +7302,37 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context 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 @@ -3643,115 +7340,132 @@ Vous pouvez supprimer et déplacer les canaux d'effets dans le menu context LfoControllerDialog + LFO LFO - LFO Controller - Contrôleur du LFO - - + BASE BASE - Base amount: - Niveau de base : + + Base: + Base : - todo - à faire + + FREQ + FRÉQ - SPD - SPD + + LFO frequency: + Fréquence du LFO : - LFO-speed: - Vitesse du LFO : - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Utilisez ce bouton pour régler la vitesse du LFO. Plus la valeur est importante, plus l'oscillateur oscille vite et plus l'effet est rapide. + + AMNT + AMNT + Modulation amount: Niveau de modulation : - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Utilisez ce bouton pour régler le niveau de modulation du LFO. Plus la valeur est importante, plus le contrôle connecté (p. ex. volume ou fréquence de coupure) sera influencé par le LFO. - - + PHS PHS + Phase offset: Décalage de phase : - degrees - degrés + + degrees + degrés - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Avec ce bouton vous pouvez régler le décalage de phase du LFO. Cela signifie que vous pouvez déplacer, dans une oscillation, le point où l'oscillateur commence à osciller. Par exemple, si vous avez une onde sinusoïdale et un décalage de phase de 180 degrés, l'onde commencera par descendre. C'est la même chose avec une onde carrée. + + Sine wave + Onde sinusoïdale - Click here for a sine-wave. - Cliquez ici pour une onde sinusoïdale. + + Triangle wave + Onde triangulaire - Click here for a triangle-wave. - Cliquez ici pour une onde triangulaire. + + Saw wave + Onde en dents-de-scie - Click here for a saw-wave. - Cliquez ici pour une onde en dents-de-scie. + + Square wave + Onde carrée - Click here for a square-wave. - Cliquez ici pour une onde carrée. + + Moog saw wave + Onde en dents-de-scie Moog - Click here for an exponential wave. - Cliquez ici pour une onde exponentielle. + + Exponential wave + Onde exponentielle - Click here for white-noise. - Cliquez ici pour un bruit blanc. + + White noise + Bruit blanc - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Cliquez ici pour une forme définie par l'utilisateur. + Forme définie par l'utilisateur. Double-cliquez pour choisir un fichier. - Click here for a moog saw-wave. - Cliquez ici pour une onde Moog en dents-de-scie. + + Mutliply modulation frequency by 1 + Multiplier la fréquence de modulation par 1 - AMNT - AMNT + + 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 - LmmsCore + 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 @@ -3759,397 +7473,510 @@ Double-cliquez pour choisir un fichier. MainWindow - &New - &Nouveau - - - &Open... - &Ouvrir... - - - &Save - &Enregistrer - - - Save &As... - Enregistrer &sous... - - - Import... - Importer... - - - E&xport... - E&xporter... - - - &Quit - &Quitter - - - &Edit - &Éditer - - - Settings - Configuration - - - &Tools - Ou&tils - - - &Help - &Aide - - - Help - Aide - - - What's this? - Qu'est-ce que c'est ? - - - 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 - - - Song Editor - Éditeur de morceau - - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - En appuyant sur ce bouton, vous pouvez montrer ou cacher l'éditeur de morceau. À l'aide de l'éditeur de morceau vous pouvez éditer la liste de lecture du morceau et indiquer quelle piste devra être jouée. Vous pouvez également insérer et déplacer des échantillons (p. ex. des échantillons de Rap) directement dans la liste de lecture. - - - Beat+Bassline Editor - Éditeur de rythme et de ligne de basse - - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - En appuyant sur ce bouton, vous pouvez montrer ou cacher l'éditeur de rythme et de ligne de basse. L'éditeur de rythme et de ligne de basse est nécessaire pour la création de rythmes, pour ouvrir, ajouter et supprimer des canaux, pour couper, copier et coller des motifs rythmiques, et pour d'autres choses similaires. - - - Piano Roll - Piano virtuel - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Cliquez ici pour montrer ou cacher le piano virtuel. À l'aide du piano virtuel vous pouvez éditer facilement des mélodies. - - - Automation Editor - Éditeur d'automation - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Cliquez ici pour montrer ou cacher l'éditeur d'automation. À l'aide de l'éditeur d'automation vous pouvez éditer facilement des valeurs dynamiques. - - - FX Mixer - Mélangeur d'effets - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Cliquez ici pour montrer et cacher le mélangeur d'effets. Le mélangeur d'effet est un outil très puissant pour la gestion des effets de votre morceau. Vous pouvez insérer des effets dans différents canaux d'effets. - - - Project Notes - Montrer/cacher les notes du projet - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Cliquez ici pour montrer et cacher la fenêtre de notes du projet. Dans cette fenêtre vous pouvez inscrire les notes de votre projet. - - - Controller Rack - Rack de contrôleurs - - - Untitled - Sans titre - - - LMMS %1 - LMMS %1 - - - 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 ? - - - 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. - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - Version %1 - Version %1 - - + 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 - Volumes - Volumes - - - Undo - Défaire - - - Redo - Refaire - - - My Projects - Mes projets - - - My Samples - Mes échantillons - - - My Presets - Mes pré-réglages - - - My Home - Mon répertoire - - - My Computer - Mon ordinateur - - - &File - &Fichier - - - &Recently Opened Projects - Projets ouverts &Récemment - - - Save as New &Version - Enregistrer en tant que nouvelle &version - - - E&xport Tracks... - E&xporter les pistes... - - - Online Help - Aide en ligne - - - What's This? - Qu'est-ce que c'est? - - - Open Project - Ouvrir le projet - - - Save Project - Enregistrer le projet - - - 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 ne s'est pas fermée proprement ou bien qu'une aute instance de LMMS est déjà ouverte. Voulez-vous récupérer le projet de cette 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. - - - Preparing plugin browser - Préparation du navigateur de greffons - - - Preparing file browsers - Préparation du navigateur de fichiers - - - Root directory - Répertoire racine - - - Loading background artwork - Chargement du thème graphique d'arrière-plan - - - New from template - Nouveau à partir d'un modèle - - - Save as default template - Sauvegarder en tant que modèle par défaut - - - &View - &Afficher - - - Toggle metronome - Activer/désactiver le métronome - - - Show/hide Song-Editor - Afficher/cacher l'éditeur de morceau - - - Show/hide Beat+Bassline Editor - Afficher/cacher l'éditeur de rythme et de ligne de basse - - - Show/hide Piano-Roll - Afficher/cacher le piano virtuel - - - Show/hide Automation Editor - Afficher/cacher l'éditeur d'automation - - - Show/hide FX Mixer - Afficher/cacher le mixeur d'effets - - - Show/hide project notes - Afficher/cacher les notes de projet - - - Show/hide controller rack - Afficher/cacher le rack de contrôleurs - - - Recover session. Please save your work! - Récupération de session. Veuillez sauvegarder votre travail ! - - - 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 ? - - - LMMS Project - Projet LMMS - - - LMMS Project Template - Modèle de projet LMMS - - - 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. - - - Smooth scroll - Déplacement fluide - - - Enable note labels in piano roll - Activer les étiquettes de note dans le piano virtuel - - - Save project template - Sauvegarder le modèle de projet - - - Volume as dBFS - Volume en dBFS - - + 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 @@ -4157,21 +7984,44 @@ Veuillez vous assurez que vous avez les droits d'écriture sur le fichier e 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 @@ -4179,18 +8029,43 @@ Veuillez vous assurez que vous avez les droits d'écriture sur le fichier e MidiImport + + Setup incomplete Paramétrage incomplet - You do not have 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 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 @@ -4198,541 +8073,911 @@ Veuillez vous assurez que vous avez les droits d'écriture sur le fichier e 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 + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Fichier + + + + &Edit + &Éditer + + + + &Quit + &Quitter + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + D + + + + Select All + + + + + 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 - Output MIDI program - Programme MIDI de sortie - - - Receive MIDI-events - Recevoir des événements MIDI - - - Send MIDI-events - Envoyer des événements MIDI - - + 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 - PERIPHERIQUES + + Device + Périphérique MonstroInstrument - Osc 1 Volume - Volume de l'oscillateur 1 + + Osc 1 volume + - Osc 1 Panning - Panoramisation de l'oscillateur 1 + + Osc 1 panning + Panoramique du 1er oscillateur - Osc 1 Coarse detune - Désaccordage grossier de l'oscillateur 1 + + Osc 1 coarse detune + - Osc 1 Fine detune left - Désaccordage fin de gauche de l'oscillateur 1 + + Osc 1 fine detune left + - Osc 1 Fine detune right - Désaccordage fin de droite de l'oscillateur 1 + + Osc 1 fine detune right + - Osc 1 Stereo phase offset - Décalage de phase stéréo de l'oscillateur 1 + + Osc 1 stereo phase offset + - Osc 1 Pulse width - Largeur de la pulsation de l'oscillateur 1 + + Osc 1 pulse width + - Osc 1 Sync send on rise - Synchronisation envoyée lors de la montée de l'oscillateur 1 + + Osc 1 sync send on rise + - Osc 1 Sync send on fall - Synchronisation envoyée lors de la descente de l'oscillateur 1 + + Osc 1 sync send on fall + - Osc 2 Volume - Volume de l'oscillateur 2 + + Osc 2 volume + - Osc 2 Panning - Panoramisation de l'oscillateur 2 + + Osc 2 panning + Panoramique du 2e oscillateur - Osc 2 Coarse detune - Désaccordage grossier de l'oscillateur 2 + + Osc 2 coarse detune + - Osc 2 Fine detune left - Désaccordage fin de gauche de l'oscillateur 2 + + Osc 2 fine detune left + - Osc 2 Fine detune right - Désaccordage fin de droite de l'oscillateur 2 + + Osc 2 fine detune right + - Osc 2 Stereo phase offset - Décalage de phase stéréo de l'oscillateur 2 + + Osc 2 stereo phase offset + - Osc 2 Waveform - Forme d'onde de l'oscillateur 2 + + Osc 2 waveform + - Osc 2 Sync Hard - Synchronisation dure de l'oscillateur 2 + + Osc 2 sync hard + - Osc 2 Sync Reverse - Synchronisation inverse de l'oscillateur 2 + + Osc 2 sync reverse + - Osc 3 Volume - Volume de l'oscillateur 3 + + Osc 3 volume + - Osc 3 Panning - Panoramisation de l'oscillateur 3 + + Osc 3 panning + Panoramique du 3e oscillateur - Osc 3 Coarse detune - Désaccordage grossier de l'oscillateur 3 + + 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 - Mélange du sous-oscillateur de l'oscillateur 3 + + Osc 3 sub-oscillator mix + - Osc 3 Waveform 1 - Forme d'onde 1 de l'oscillateur 3 + + Osc 3 waveform 1 + - Osc 3 Waveform 2 - Forme d'onde 2 de l'oscillateur 3 + + Osc 3 waveform 2 + - Osc 3 Sync Hard - Synchronisation dure de l'oscillateur 3 + + Osc 3 sync hard + - Osc 3 Sync Reverse - Synchronisation inverse de l'oscillateur 3 + + Osc 3 Sync reverse + - LFO 1 Waveform - Forme d'onde du LFO 1 + + LFO 1 waveform + - LFO 1 Attack - Attaque du LFO 1 + + LFO 1 attack + - LFO 1 Rate - Taux du LFO 1 + + LFO 1 rate + - LFO 1 Phase - Phase du LFO 1 + + LFO 1 phase + - LFO 2 Waveform - Forme d'onde du LFO 2 + + LFO 2 waveform + - LFO 2 Attack - Attaque du LFO 2 + + LFO 2 attack + - LFO 2 Rate - Taux du LFO 2 + + LFO 2 rate + - LFO 2 Phase - Phase du LFO2 + + LFO 2 phase + - Env 1 Pre-delay - Pré-délai de l'enveloppe 1 + + Env 1 pre-delay + - Env 1 Attack - Attaque de l'enveloppe 1 + + Env 1 attack + - Env 1 Hold - Tenue de l'enveloppe 1 + + Env 1 hold + - Env 1 Decay - Affaiblissement (decay) de l'enveloppe 1 + + Env 1 decay + - Env 1 Sustain - Soutien (sustain) de l'enveloppe 1 + + Env 1 sustain + - Env 1 Release - Relâche (release) de l'enveloppe 1 + + Env 1 release + - Env 1 Slope - Pente de l'enveloppe 1 + + Env 1 slope + - Env 2 Pre-delay - Pré-délai de l'enveloppe 2 + + Env 2 pre-delay + - Env 2 Attack - Attaque de l'enveloppe 2 + + Env 2 attack + - Env 2 Hold - Tenue de l'enveloppe 2 + + Env 2 hold + - Env 2 Decay - Affaiblissement (decay) de l'enveloppe 2 + + Env 2 decay + - Env 2 Sustain - Soutien (sustain) de l'enveloppe 2 + + Env 2 sustain + - Env 2 Release - Relâche (release) de l'enveloppe 2 + + Env 2 release + Relâchement de l'enveloppe 2 - Env 2 Slope - Pente de l'enveloppe 2 + + Env 2 slope + - Osc2-3 modulation - Modulation des oscillateurs 2 et 3 + + Osc 2+3 modulation + + Selected view Affichage sélectionné - Vol1-Env1 - Vol1-Env1 + + Osc 1 - Vol env 1 + - Vol1-Env2 - Vol1-Env2 + + Osc 1 - Vol env 2 + - Vol1-LFO1 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 + - Vol1-LFO2 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 + - Vol2-Env1 - Vol2-Env1 + + Osc 2 - Vol env 1 + - Vol2-Env2 - Vol2-Env2 + + Osc 2 - Vol env 2 + - Vol2-LFO1 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 + - Vol2-LFO2 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 + - Vol3-Env1 - Vol3-Env1 + + Osc 3 - Vol env 1 + - Vol3-Env2 - Vol3-Env2 + + Osc 3 - Vol env 2 + - Vol3-LFO1 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 + - Vol3-LFO2 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 + - Phs1-Env1 - Phase1-Env1 + + Osc 1 - Phs env 1 + - Phs1-Env2 - Phase1-Env2 + + Osc 1 - Phs env 2 + - Phs1-LFO1 - Phase1-LFO1 + + Osc 1 - Phs LFO 1 + - Phs1-LFO2 - Phase1-LFO2 + + Osc 1 - Phs LFO 2 + - Phs2-Env1 - Phase2-Env1 + + Osc 2 - Phs env 1 + - Phs2-Env2 - Phase2-Env2 + + Osc 2 - Phs env 2 + - Phs2-LFO1 - Phase2-LFO1 + + Osc 2 - Phs LFO 1 + - Phs2-LFO2 - Phase2-LFO2 + + Osc 2 - Phs LFO 2 + - Phs3-Env1 - Phase3-Env1 + + Osc 3 - Phs env 1 + - Phs3-Env2 - Phase3-Env2 + + Osc 3 - Phs env 2 + - Phs3-LFO1 - Phase3-LFO1 + + Osc 3 - Phs LFO 1 + - Phs3-LFO2 - Phase3-LFO2 + + Osc 3 - Phs LFO 2 + - Pit1-Env1 - Ton1-Env1 + + Osc 1 - Pit env 1 + - Pit1-Env2 - Ton1-Env2 + + Osc 1 - Pit env 2 + - Pit1-LFO1 - Ton1-LFO1 + + Osc 1 - Pit LFO 1 + - Pit1-LFO2 - Ton1-LFO2 + + Osc 1 - Pit LFO 2 + - Pit2-Env1 - Ton2-Env1 + + Osc 2 - Pit env 1 + - Pit2-Env2 - Ton2-Env2 + + Osc 2 - Pit env 2 + - Pit2-LFO1 - Ton2-LFO1 + + Osc 2 - Pit LFO 1 + - Pit2-LFO2 - Ton2-LFO2 + + Osc 2 - Pit LFO 2 + - Pit3-Env1 - Ton3-Env1 + + Osc 3 - Pit env 1 + - Pit3-Env2 - Ton3-Env2 + + Osc 3 - Pit env 2 + - Pit3-LFO1 - Ton3-LFO1 + + Osc 3 - Pit LFO 1 + - Pit3-LFO2 - Ton3-LFO2 + + Osc 3 - Pit LFO 2 + - PW1-Env1 - PW1-Env1 + + Osc 1 - PW env 1 + - PW1-Env2 - PW1-Env2 + + Osc 1 - PW env 2 + - PW1-LFO1 - PW1-LFO1 + + Osc 1 - PW LFO 1 + - PW1-LFO2 - PW1-LFO2 + + Osc 1 - PW LFO 2 + - Sub3-Env1 - Sub3-Env1 + + Osc 3 - Sub env 1 + - Sub3-Env2 - Sub3-Env2 + + Osc 3 - Sub env 2 + - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 + - Sub3-LFO2 - Sub3-LFO2 + + 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 @@ -4740,294 +8985,240 @@ Veuillez vous assurez que vous avez les droits d'écriture sur le fichier e MonstroView + Operators view Vue des opérateurs - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - La vue des opérateurs contient tous les opérateurs. Ceci inclut les opérateurs audibles (oscillateurs) et les opérateurs inaudibles, ou modulateurs : oscillateurs basse fréquence et enveloppes. - -Les boutons et autres gadgets dans la vue des opérateurs ont leurs propres textes Qu'est-ce que c'est ?, de sorte que vous pouvez obtenir une aide plus spécifique pour chacun de cette façon. - - + Matrix view Vue de la matrice - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - La vue de la matrice contient la matrice de modulation. Vous pouvez ici définir les relations de modulation entre les différents opérateurs : Chaque opérateur audible (oscillateurs 1-3) possède 3 ou 4 propriétés pouvant être modulées par l'un des modulateurs. Utiliser davantage de modulation consomme davantage de puissance processeur. - -Cette vue est divisée en cibles de modulation, groupée par l'oscillateur cible. Les cibles disponibles sont le volume, la hauteur, la phase, la largeur de pulsation et le ratio du sous-oscillateur. Remarque : certaines cibles sont spécifiques à un oscillateur uniquement. - -Chaque cible de modulation dispose de 4 boutons, un pour chaque modulateur. Par défaut, les boutons sont à 0, ce qui signifie pas de modulation. Tourner un bouton à 1 affecte la cible de modulation au maximum. Mis à -1 a le même effet mais la modulation est inversée. - - - Mix Osc2 with Osc3 - Mélanger l'oscillateur 2 avec l'oscillateur 3 - - - Modulate amplitude of Osc3 with Osc2 - Moduler l'amplitude de l'oscillateur 3 avec l'oscillateur 2 - - - Modulate frequency of Osc3 with Osc2 - Moduler la fréquence de l'oscillateur 3 avec l'oscillateur 2 - - - Modulate phase of Osc3 with Osc2 - Moduler la phase de l'oscillateur 3 avec l'oscillateur 2 - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - Le bouton CRS modifie le réglage de l'oscillateur 1 en pas de demi-ton. - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - Le bouton CRS modifie le réglage de l'oscillateur 2 en pas de demi-ton. - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - Le bouton CRS modifie le réglage de l'oscillateur 3 en pas de demi-ton. - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL et FTR modifient le réglage fin de l'oscillateur pour les canaux respectifs de gauche et de droite. Ceux-ci peuvent ajouter un dé-réglage stéréo à l'oscillateur ce qui élargit l'image stéréo et provoque une illusion d'espace. - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - Le bouton SPO modifie la différence de phase entre les canaux de droite et de gauche. Une plus grande différence crée une image stéréo plus large. - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - Le bouton PW contrôle la largeur de la pulsation, également connue sous le nom de cycle de service, de l'oscillateur 1. L'oscillateur 1 est un oscillateur d' pulsée numérique, il ne produit pas de sortie à bande limitée, ce qui signifie que vous pouvez l'utiliser comme un oscillateur audible mais qu'il provoquera du crénelage. Vous pouvez également l'utiliser comme une source audible d'un signal synchronisé, ce qui peut être utilisé pour synchroniser les oscillateurs 2 et 3. - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Synchronisation d'envoi lors de la montée : lorsqu'activé, le signal de synchronisation est envoyé à chaque fois que l'état de l'oscillateur 1 change du bas vers le haut, c'est à dire, lorsque l'amplitude change de -1 à 1. La tonalité, la phase et la largeur de la pulsation de l'oscillateur 1 peuvent affecter le timing des synchronisations, mais son volume n'a pas d'effet sur eux. Les signaux synchronisés sont envoyés indépendamment pour les canaux de droite et de gauche. - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Synchronisation d'envoi lors de la descente : lorsqu'activé, le signal de synchronisation est envoyé à chaque fois que l'état de l'oscillateur 1 change du haut vers le bas, c'est à dire, lorsque l'amplitude change de 1 à -1. La tonalité, la phase et la largeur de la pulsation de l'oscillateur 1 peuvent affecter le timing des synchronisations, mais son volume n'a pas d'effet sur eux. Les signaux synchronisés sont envoyés indépendamment pour les canaux de droite et de gauche. - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Synchronisation dure : à chaque fois que l'oscillateur reçoit un signal de synchronisation depuis l'oscillateur 1, sa phase est réinitialisée à 0 + son décalage. - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Synchronisation inversée : à chaque fois que l'oscillateur reçoit un signal de synchronisation depuis l'oscillateur 1, l'amplitude de l'oscillateur est inversée. - - - Choose waveform for oscillator 2. - Choisir une forme d'onde pour l'oscillateur 2. - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Choisir une forme d'onde pour le premier sous-oscillateur de l'oscillateur 3. L'oscillateur 3 peut interpoler doucement entre deux formes d'onde différentes. - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Choisir une forme d'onde pour le second sous-oscillateur de l'oscillateur 3. L'oscillateur 3 peut interpoler doucement entre deux formes d'onde différentes. - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - Le bouton SUB modifie le ratio de mélange des deux sous-oscillateurs de l'oscillateur 3. Chaque sous-oscillateur peut être régler pour produire un forme d'onde différente, et l'oscillateur 3 peut interpoler doucement entre eux. Toutes les modulations entrantes dans l'oscillateur 3 sont appliquées aux sous-oscillateurs / formes d'onde exactement de la même manière. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - En addition aux modulateurs dédiées, Monstro permet à l'oscillateurs 3 d'être modulé par la sortie de l'oscillateur 2. - -Le mode mélange signifie sans modulation : les sorties des oscillateurs sont simplement mélangées ensemble. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - En addition aux modulateurs dédiées, Monstro permet à l'oscillateurs 3 d'être modulé par la sortie de l'oscillateur 2. - -AM signifie Modulation d'Amplitude : l'amplitude de l' oscillateur 3 (son volume) est modulée par l'oscillateur 2. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - En addition aux modulateurs dédiées, Monstro permet à l'oscillateurs 3 d'être modulé par la sortie de l'oscillateur 2. - -FM signifie Modulation de Fréquence : la fréquence de l'oscillateur 3 (sa tonalité) est modulée par l'oscillateur 2. La modulation de fréquence est implémentée comme un modulation de phase, ce qui offre une tonalité généralement plus stable qu' modulation de fréquence "pure". - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - En addition aux modulateurs dédiées, Monstro permet à l'oscillateurs 3 d'être modulé par la sortie de l'oscillateur 2. - -PM signifie Modulation de Phase : la phase de l'oscillateur 3 est modulée par l'oscillateur 2. Elle fiddère de la modulation de fréquence en ce que les changements de phase ne sont pas cumulatifs. - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Sélectionnez la forme d'onde du LFO 1. -"Random" et "Random smooth" sont des formes d' spéciales : elles produisent des sorties aléatoires, dans lesquelles le taux des LFO contrôle la fréquence des changements d' des LFO. La version smooth interpole entre ces deux états avec une interpolation cosinusoïdale. Ces modes de hasard peuvent être utilisés pour donner de la "vie" à vos pré-réglages - ça ajoute certaines de ces choses imprévisibles de l'analogique... - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Sélectionnez la forme d'onde du LFO 2. -"Random" et "Random smooth" sont des formes d' spéciales : elles produisent des sorties aléatoires, dans lesquelles le taux des LFO contrôle la fréquence des changements d' des LFO. La version smooth interpole entre ces deux états avec une interpolation cosinusoïdale. Ces modes de hasard peuvent être utilisés pour donner de la "vie" à vos pré-réglages - ça ajoute certaines de ces choses imprévisibles de l'analogique... - - - Attack causes the LFO to come on gradually from the start of the note. - L'attaque fait que le LFO arrive graduellement à partir du début de la note. - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - Le taux règle la vitesse du LFO, mesuré en millisecondes par cycle. Peut être synchronisé au tempo. - - - PHS controls the phase offset of the LFO. - PHS contrôle le décalage de phase du LFO. - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE, ou pré-délai, délaie le départ de l'enveloppe du début de la note. 0 signifie sans délai. - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - ATT, ou attaque, contrôle la rapidité de la rampe de l'enveloppe au départ, mesuré en milliscondes. Une valeur de 0 signifie instantanné. - - - HOLD controls how long the envelope stays at peak after the attack phase. - HOLD contrôle la durée à laquelle l'enveloppe reste au pic après la phase d'attaque. - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - DEC, ou affaiblissement (decay), contrôle la rapidité avec laquelle l'enveloppe redescend de son pic, mesuré en millisecondes, elle va prendre pour aller du pic à zéro. L'affaiblissement réel peut être plus court si le soutien (sustain) est utilisé. - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - SUS, ou soutien (sustain), contrôle le niveau de soutien de l'enveloppe. La phase d'affaiblissment n'ira pas en dessous de ce niveau aussi longtemps que la note est tenue. - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - REL, ou relâche, contrôle la longueur de la relâche pour une note, mesurée en combien de temps cela prendrait pour redescendre du pic à zéro. La relâche réelle peut être plus courte en fonction de quelle phase est active lorsque la note est relâchée. - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - Le bouton de pente contrôle la courbe ou la forme de l'enveloppe. Une valeur de 0 crée des montées et des descentes sèches. Des valeurs négatives créent des courbes qui démarrent lentement, font un pic rapide, et redescendent lentement de nouveau. Des valeurs positives créent des courbes qui démarrent et finnissent rapidement, et restent plus longtemps à côté des pics. - - + + + Volume Volume + + + Panning Panoramisation + + + Coarse detune Désaccordage grossier + + + semitones demi-tons - Finetune left - Désaccordage fin (gauche) + + + Fine tune left + + + + + cents centièmes - Finetune right - Désaccordage fin (droite) + + + 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 @@ -5035,117 +9226,145 @@ PM signifie Modulation de Phase : la phase de l'oscillateur 3 est modulée MultitapEchoControlDialog + Length Longueur + Step length: Longueur de pas : + Dry Sec - Dry Gain: - Gain sec : + + Dry gain: + + Stages Niveaux - Lowpass stages: - Niveaux passe-bas : + + Low-pass stages: + + Swap inputs Permutation des entrées - Swap left and right input channel for reflections - Permuter les canaux d'entrée gauche et droit pour réflections + + Swap left and right input channels for reflections + NesInstrument - Channel 1 Coarse detune - Dé-réglage grossier du canal 1 + + Channel 1 coarse detune + - Channel 1 Volume + + Channel 1 volume Volume du canal 1 - Channel 1 Envelope length - Longueur d'enveloppe du canal 1 + + Channel 1 envelope length + - Channel 1 Duty cycle - Cycle de service du canal 1 + + Channel 1 duty cycle + - Channel 1 Sweep amount - Quantité de balayage du canal 1 + + Channel 1 sweep amount + - Channel 1 Sweep rate - Taux de balayage du canal 1 + + 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 - Longueur d'enveloppe du canal 2 + + Channel 2 envelope length + - Channel 2 Duty cycle - Cycle de service du canal 2 + + Channel 2 duty cycle + - Channel 2 Sweep amount + + Channel 2 sweep amount Quantité de balayage du canal 2 - Channel 2 Sweep rate - Taux de balayage du canal 2 + + Channel 2 sweep rate + - Channel 3 Coarse detune - Dé-réglage grossier du canal 3 + + Channel 3 coarse detune + - Channel 3 Volume + + Channel 3 volume Volume du canal 3 - Channel 4 Volume + + Channel 4 volume Volume du canal 4 - Channel 4 Envelope length - Longueur d'enveloppe du canal 4 + + Channel 4 envelope length + - Channel 4 Noise frequency - Fréquence de bruit du canal 4 + + Channel 4 noise frequency + - Channel 4 Noise frequency sweep - Balayage de fréquence de bruit de canal 4 + + Channel 4 noise frequency sweep + + Master volume Volume général + Vibrato Vibrato @@ -5153,196 +9372,447 @@ PM signifie Modulation de Phase : la phase de l'oscillateur 3 est modulée 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 + + 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 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 - - - Osc %1 fine detuning left - Désaccordage fin (gauche) 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 - - + 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 @@ -5350,77 +9820,85 @@ PM signifie Modulation de Phase : la phase de l'oscillateur 3 est modulée PatmanView - Open other patch - Ouvrir un autre son - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Cliquez ici pour ouvrir un autre fichier de son. Les réglages de boucle et d'accord ne sont pas réinitialisés. + + Open patch + + Loop Boucler + Loop mode Mode de jeu en boucle - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Ici, vous pouvez permuter le mode de jeu en boucle. S'il est activé, PatMan utilisera les informations de jeu en boucle disponibles dans le fichier. - - + Tune Accorder + Tune mode Mode accordage - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Ici, vous pouvez permuter le mode d'accordage. S'il est activé, PatMan accordera l'échantillon en fonction de la fréquence de la note. - - + No file selected Aucun fichier sélectionné + Open patch file Ouvrir un fichier de son + Patch-Files (*.pat) Fichiers de son (*.pat) - PatternView + 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 @@ -5428,14 +9906,17 @@ PM signifie Modulation de Phase : la phase de l'oscillateur 3 est modulée 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. @@ -5443,10 +9924,12 @@ PM signifie Modulation de Phase : la phase de l'oscillateur 3 est modulée PeakControllerDialog + PEAK CRÊTE + LFO Controller Contrôleur du LFO @@ -5454,327 +9937,519 @@ PM signifie Modulation de Phase : la phase de l'oscillateur 3 est modulée PeakControllerEffectControlDialog + BASE BASE - Base amount: - Niveau de base : - - - Modulation amount: - Niveau de modulation : - - - Attack: - Attaque : - - - Release: - Relâchement : + + Base: + Base : + AMNT AMNT + + Modulation amount: + Niveau de modulation : + + + MULT MULT - Amount Multiplicator: - Multiplicateur de quantité : + + Amount multiplicator: + + ATCK ATCK + + Attack: + Attaque : + + + DCAY DCAY + + Release: + Relâchement : + + + + TRSH + TRSH + + + Treshold: Seuil : - TRSH - TRSH + + Mute output + Mettre la sortie en sourdine + + + + Absolute value + PeakControllerEffectControls + Base value Valeur de base + Modulation amount Niveau de modulation - Mute output - Mettre la sortie en sourdine - - + Attack Attaque + Release Relâchement - Abs Value - Valeur Abs - - - Amount Multiplicator - Multiplicateur de quantité - - + Treshold Seuil + + + Mute output + Mettre la sortie en sourdine + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - Veuillez ouvrir un motif en double-cliquant dessus ! - - - Last note - Dernière note - - - Note lock - Verrouiller la note - - + 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 current scale - Marquer la gamme actuelle - - - Mark current chord - Marquer l'accord actuel - - - Unmark all - Démarquer tout - - - No scale - Pas de gamme - - - No chord - Pas d'accord - - - Velocity: %1% - Vélocité : %1% - - - Panning: %1% left - Panoramisation : %1% gauche - - - Panning: %1% right - Panoramisation : %1% droite - - - Panning: center - Panoramisation : centre - - - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : - - + 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 pattern (Space) + + 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 - Stop playing of current pattern (Space) + + 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) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Cliquez ici pour jouer le motif. Ceci est utile pendant son édition. Le motif est automatiquement rejoué lorsque sa fin est atteinte. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Cliquez ici pour enregistrer des notes à partir d'un périphérique MIDI ou du piano de test virtuel de la fenêtre correspondant au canal du motif. Lors de l'enregistrement toutes les notes seront écrites dans ce motif et vous pourrez ensuite les jouer et les éditer. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Cliquez ici pour enregistrer des notes à partir d'un périphérique MIDI ou du piano de test virtuel de la fenêtre correspondant au canal du motif. Lors de l'enregistrement toutes les notes seront écrites dans ce motif et vous entendrez le morceau ou bien le rythme ou la ligne de basse en fond sonore. - - - Click here to stop playback of current pattern. - Cliquez ici pour arrêter de jouer le motif. - - - 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) - - - Detune mode (Shift+T) - Mode désaccordage (Shift+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Cliquez ici et le mode dessin sera activé. Dans ce mode vous pourrez ajouter, redimensionner et déplacer des notes. Ceci est le mode par défaut qui est utilisé la plupart du temps. Vous pouvez aussi appuyer sur les touches 'Shift+D' de votre clavier pour activer ce mode. Dans ce mode, appuyez sur %1 pour passer temporairement dans le mode sélection. - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Cliquez ici et le mode effacement sera activé. Dans ce mode vous pourrez effacer des notes. Vous pouvez aussi appuyer sur les touches 'Shift+E' de votre clavier pour activer ce mode. - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Cliquez ici et le mode sélection sera activé. Dans ce mode vous pourrez sélectionner des notes. Dans ce mode, appuyez appuyer sur %1 pour passer temporairement en mode dessin. - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - Cliquez ici et le mode désaccordage sera activé. Dans ce mode vous pourrer cliquer sur une note pour accéder à l'automation de son désaccordage. Vous pouvez utiliser ceci pour lier des notes entre-elles. Vous pouvez aussi appuyer sur les touches 'Shift+T' de votre clavier pour activer ce mode. - - - Cut selected notes (%1+X) - Couper les notes sélectionnées (%1+X) - - - Copy selected notes (%1+C) - Copier les notes sélectionnées (%1+C) - - - Paste notes from clipboard (%1+V) - Coller les notes se trouvant dans le presse-papier (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Cliquez ici et les valeurs sélectionnées seront coupées et copiées dans le presse-papier. Vous pourrez les coller n'importe où dans n'importe quel motif en cliquant sur le bouton coller. - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Cliquez ici et les valeurs sélectionnées seront copiées dans le presse-papier. Vous pourrez les coller n'importe où dans n'importe quel motif en cliquant sur le bouton coller. - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Cliquez ici et les valeurs se trouvant dans le presse-papier seront collées sur la première mesure visible. - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Ceci contrôle l'agrandissement d'un axe. Il est utile de choisir l'agrandissement pour une tâche spécifique. Pour l'édition normale, l'agrandissement est ajusté aux plus petites notes. - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - Le 'Q' signifie quantification, et il contrôle la grille sur laquelle se calent la taiile des notes et les points de contôle. Une valeur de quantification plus petite permet de dessiner des notes plus courtes dans le piano virtuel et des points de contrôle plus précis dans l'éditeur d'automation. - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - Ceci vous permet de sélectionner la longueur des nouvelles notes. 'Dernière Note' signifie que LMMS utilisera la longueur de la dernière note éditée - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - La fonction est directement reliée au menu contextuel du clavier virtuel, à la gauche du piano virtuel. Après avoir choisi l'échelle que vous voulez dans ce menu déroulant, vous pouvez faire un clic droit sur la touche de votre choix du clavier virtuel, puis choisissez 'Marquer Échelle Actuelle'. LMMS mettra en évidence toutes les notes qui appartiennent à l'échelle choisie, et ce dans la clé que vous avez sélectionnée! - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - Permet de sélectionner un accord que LMMS peut ensuite dessiner ou mettre en évidence.Vous trouverez les accords les plus courants dans ce menu déroulant. Après avoir sélectionné un accord, cliquez n'importe où pour placer l'accord, et cliquez à droite sur le clavier virtuel pour ouvrir le menu contextuel et souligner l'accord. Pour revenir à la mise en place d'une seule note, vous devez choisir 'Aucun accord' dans ce menu déroulant. - - + 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 pattern + + + Piano-Roll - no clip Piano virtuel - pas de motif - Quantize - Quantifier + + + 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é ! @@ -5782,221 +10457,1293 @@ Raison : "%2" 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. - Instrument Plugins - Greffons d'instrument + + 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. + + + + + 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 + + + + plugin for using arbitrary LV2-effects inside LMMS. + + + + + plugin for using arbitrary LV2 instruments inside 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. + + + + + 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. + + + + + 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 + + + + + Format + + + + + Internal + + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + AU + + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + Contrôle + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + Utiliser le panoramique + + + + Settings + Configuration + + + + 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: + Type : + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + 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 ! + + 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 + Fermer + + + + PluginWidget + + + + + + + Frame + + + + + Enable + Activer + + + + On/Off + On/Off + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + Supprimer + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - 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... - - + 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... + ProjectRenderer - WAV-File (*.wav) - Fichier WAV (*.wav) + + WAV (*.wav) + - Compressed OGG-File (*.ogg) - Fichier OGG compressé (*.ogg) + + FLAC (*.flac) + - FLAC-File (*.flac) - Fichier FLAC (*.flac) + + OGG (*.ogg) + - Compressed MP3-File (*.mp3) - Fichier MP3 compressé (*.mp3) + + MP3 (*.mp3) + + + + + QObject + + + Reload Plugin + + + + + Show GUI + Montrer l'interface graphique + + + + Help + Aide 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 - File: %1 - Fichier : %1 + + &Recently Opened Projects + Projets ouverts &Récemment RenameDialog + Rename... Renommer... @@ -6004,716 +11751,1606 @@ Raison : "%2" ReverbSCControlDialog + Input Entrée - Input Gain: + + Input gain: Gain en entrée : + Size Taille + Size: Taille : + Color Couleur + Color: Couleur : + Output Sortie - Output Gain: + + Output gain: Gain en sortie : ReverbSCControls - Input Gain + + Input gain Gain en entrée + Size Taille + Color Couleur - Output Gain + + Output gain Gain en sortie + + SaControls + + + Pause + + + + + Reference freeze + + + + + 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 - Open audio file - Ouvrir un fichier audio - - - 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) - - - 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) - - + 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 - - - SampleTCOView - double-click to select sample - Double-cliquez pour choisir un échantillon + + 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 - Sample track - Piste d'échantillon - - + 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 - Setup LMMS - Configuration de LMMS + + Reset to default value + - General settings - Configuration générale + + Use built-in NaN handler + Utiliser le gestionnaire NaN intégré - BUFFER SIZE - TAILLE DE LA MÉMOIRE TAMPON + + Settings + Configuration - Reset to default-value - Réinitialiser à la valeur par défaut + + + General + - MISC - DIVERS + + Graphical user interface (GUI) + + + Display volume as dBFS + Afficher le volume en dBFS + + + Enable tooltips Activer les info-bulles - Show restart warning after changing settings - Invitation à redémarrer après modification de la configuration + + Enable master oscilloscope by default + - Compress project files per default - Compresser les fichiers de projet par défaut + + Enable all note labels in piano roll + - One instrument track window mode - Mode une piste d'instrument par fenêtre + + Enable compact track buttons + - HQ-mode for output audio-device - Périphérique de sortie audio en mode HQ + + Enable one instrument-track-window mode + - Compact track buttons - Boutons compacts de piste + + 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 - Enable note labels in piano roll - Activer les étiquettes de note dans le piano virtuel - - - Enable waveform display by default - Activer l'affichage de forme d'onde par défaut - - + Keep effects running even without input Laisser les effets opérer même sans entrée - Create backup file when saving a project - Créer un fichier de sauvegarde lors de l'enregistrement d'un projet + + + Audio + Audio - LANGUAGE - LANGAGE + + Audio interface + - Paths - Chemins d'accès + + 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-plugin directory - Répertoire des greffons VST + + 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 - STK rawwave directory - Répertoire de STK + + Some changes require restarting. + - Default Soundfont File - Fichier SoundFont par défaut + + Autosave interval: %1 + - Performance settings - Configuration des performances + + Choose the LMMS working directory + - UI effects vs. performance - Effets graphiques versus perfomances + + Choose your VST plugins directory + - Smooth scroll in Song Editor - Déplacement fluide dans l'éditeur de morceau + + Choose your LADSPA plugins directory + - Show playback cursor in AudioFileProcessor - Afficher le curseur de lecture dans AudioFileProcessor + + Choose your default SF2 + - Audio settings - Configurations audio + + Choose your theme directory + - AUDIO INTERFACE - INTERFACE AUDIO + + Choose your background picture + - MIDI settings - Configurations MIDI - - - MIDI INTERFACE - INTERFACE MIDI + + + Paths + Chemins d'accès + OK OK + Cancel Annuler - Restart LMMS - Redémarrer LMMS - - - Please note that most changes won't take effect until you restart LMMS! - Veuillez noter que la plupart des modifications ne prendront pas effet avant que vous ne redémarriez LMMS ! - - + Frames: %1 Latency: %2 ms Trames : %1 Latence : %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Ici, vous pouvez régler la taille de la mémoire tampon interne utilisée par LMMS. Les valeurs faibles réduisent la latence mais peuvent aussi rendre le son inutilisable ou induire de mauvaises performances, en particulier sur des ordinateurs anciens ou des systèmes sans noyau temps-réel. - - - Choose LMMS working directory - Choisissez le répertoire de travail de LMMS - - - Choose your VST-plugin directory - Choisissez le répertoire des greffons VST - - - Choose artwork-theme directory - Choisissez le répertoire des thèmes graphiques - - - Choose LADSPA plugin directory - Choisissez le répertoire des greffons LADSPA - - - Choose STK rawwave directory - Choisissez le répertoire de STK - - - Choose default SoundFont - Choisissez la SoundFont par défaut - - - Choose background artwork - Choisissez le thème graphique d'arrière-plan - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - Ici, vous pouvez choisir l'interface audio que vous préférez. En fonction de la configuration de votre système au moment de la compilation, vous pouvez choisir entre ALSA, JACK, OSS et d'autres. Vous voyez ci-dessous une fenêtre contenant des contrôles pour régler l'interface audio choisie. - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - Ici, vous pouvez choisir l'interface MIDI que vous préférez. En fonction de la configuration de votre système au moment de la compilation, vous pouvez choisir entre ALSA, JACK, OSS et d'autres. Vous voyez ci-dessous une fenêtre contenant des contrôles pour régler l'interface MIDI choisie. - - - Reopen last project on start - Ré-ouvrir le dernier projet à l'ouverture - - - Directories - Répertoires - - - Themes directory - Répertoire des thèmes graphiques - - - GIG directory - Répertoire des GIG - - - SF2 directory - Répertoire des SF2 - - - LADSPA plugin directories - Répertoire des greffons LADSPA - - - Auto save - Sauvegarde automatique - - + 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 - Display volume as dBFS - Afficher le volume en dBFS - - - Enable auto-save - Activer la sauvegarde automatique - - - Allow auto-save while playing - Permettre la sauvegarde automatique pendant la lecture - - + Disabled Désactivé + + + SidInstrument - Auto-save interval: %1 - Intervalle de sauvegarde automatique : %1 + + Cutoff frequency + Fréquence de coupure - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Paramétrer le temps entre les sauvegardes automatiques à %1. -Souvenez-vous de sauvegarder aussi votre projet manuellement. Vous pouvez choisir de désactiver la sauvegarde pendant la lecture, c'est quelque chose qui peut être difficile sur d'anciens systèmes. + + Resonance + Résonance + + + + Filter type + Type de filtre + + + + Voice 3 off + Voix 3 coupée + + + + Volume + Volume + + + + Chip model + Modèle de circuit + + + + SidInstrumentView + + + Volume: + Volume : + + + + Resonance: + Résonance : + + + + + Cutoff frequency: + Fréquence de coupure : + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + 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 + + + + + Triangle wave + Onde triangulaire + + + + Saw wave + Onde en dents-de-scie + + + + Noise + Bruit + + + + Sync + Sync + + + + Ring modulation + + + + + Filtered + Filtré + + + + Test + Test + + + + Pulse width: + + + + + SideBarWidget + + + Close + Fermer Song + Tempo Tempo + Master volume Volume général + Master pitch Tonalité générale - Project saved - Projet sauvegardé + + Aborting project load + - The project %1 is now saved. - Le projet %1 est maintenant sauvegardé. + + Project file contains local paths to plugins, which could be used to run malicious code. + - 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 - - - Empty project - Le projet est vide - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - L'exportation n'a pas de sens car ce projet est vide. Veuillez d'abord mettre quelques éléments dans l'éditeur de morceau ! - - - Select directory for writing exported tracks... - Sélectionnez le répertoire pour écrire les pistes exportées... - - - untitled - sans titre - - - Select file for project-export... - Sélectionnez un fichier vers lequel exporter le projet... - - - The following errors occured while loading: - Les erreurs suivantes sont survenues lors du chargement : - - - MIDI File (*.mid) - Fichier MIDI (*.mid) + + Can't load project: Project file contains local paths to plugins. + + LMMS Error report Rapport d'erreur LMMS - Save project - Sauvegarder le projet + + (repeated %1 times) + + + + + The following errors occurred while loading: + SongEditor + Could not open file Le fichier n'a pas pu être ouvert - Could not write file - Le fichier n'a pas pu être écrit - - + 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. + + 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 + Erreur + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + 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. + + + + + This %1 was created with LMMS %2 + + + + Error in file Erreur dans le fichier + 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é. - Tempo - Tempo - - - TEMPO/BPM - TEMPO/BPM - - - tempo of song - tempo du morceau - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - Le tempo d'un morceau est spécifié en battements par minute (BPM). Si vous souhaitez modifier le tempo de votre morceau, modifiez cette valeur. Chaque mesure à quatre battements, ce qui fait que le tempo en BPM indique le nombre de mesures / 4 qui doivent être jouées dans une minute (ou le nombre de mesures qui doivent être jouées en quatre minutes). - - - High quality mode - Mode haute qualité - - - Master volume - Volume général - - - master volume - volume général - - - Master pitch - Tonalité générale - - - master pitch - tonalité générale - - - Value: %1% - Valeur : %1% - - - Value: %1 semitones - Valeur : %1 demi-tons - - - 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. - Ne peux pas ouvrir %1 en écriture. Vous n'avez probablement pas les droits pour écrire dans ce fichier. Assurez vous que vous avez les droits d'accès en écriture pour ce fichier et essayez à nouveau. - - - template - modèle - - - project - projet - - + Version difference Différence de version - This %1 was created with LMMS %2. - Ce %1 a été créé avec LMMS %2. + + template + modèle + + + + project + projet + + + + 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 SongEditorWindow + Song-Editor Éditeur de morceau + 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) - 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 - - - Draw mode - Mode dessin - - - Edit mode (select and move) - Mode édition (sélectionner et déplacer) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Cliquez ici si vous souhaitez jouer le morceau en entier. L'écoute commencera à partir du marqueur (vert) de position dans le morceau. Vous pouvez aussi déplacer ce curseur pendant l'écoute. - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Cliquez ici si vous souhaitez ne plus jouer le morceau. Le curseur de position sera placé au début du morceau. - - + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum - Spectre linéaire + + Horizontal zooming + Zoom horizontal - Linear Y axis - Axe Y linéaire + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - Spectre linéaire + + Hint + Astuce - Linear Y axis - Axe Y linéaire - - - Channel mode - Mode du canal + + Move recording curser using <Left/Right> arrows + SubWindow + Close Fermer + Maximize Maximiser + Restore Restorer @@ -6721,81 +13358,110 @@ Veuillez vérifier que vous avez au moins les droits en lecture pour ce fichier TabWidget + + Settings for %1 Réglages pour %1 + + TemplatesMenu + + + New from template + Nouveau à partir d'un modèle + + TempoSyncKnob + + Tempo Sync Synchronisation du tempo + 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 @@ -6803,30 +13469,37 @@ Veuillez vérifier que vous avez au moins les droits en lecture pour ce fichier TimeDisplayWidget - click to change time units - cliquez pour modifier les unités de temps + + Time units + + MIN MIN + SEC DEC + MSEC MSEC + BAR BAR + BEAT BATT + TICK TICK @@ -6834,45 +13507,50 @@ Veuillez vérifier que vous avez au moins les droits en lecture pour ce fichier TimeLineWidget - Enable/disable auto-scrolling - Activer/désactiver l'auto-défilement + + Auto scrolling + - Enable/disable loop-points - Activer/désactiver les marqueurs de jeu en boucle + + Loop points + - After stopping go back to begin - Revenir au début après l'arrêt + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Maintenez <Shift> pour déplacer le marqueur de début de jeu en boucle. Appuyez sur <%1> pour désactiver les marqueurs magnétiques de jeu en boucle. - Track + Mute Mettre en sourdine + Solo Solo @@ -6880,305 +13558,492 @@ Veuillez vérifier que vous avez au moins les droits en lecture pour ce fichier TrackContainer + Couldn't import file Le fichier n'a pas pu être importé + 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... - Importing MIDI-file... - Importation du fichier MIDI... + + 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... + - TrackContentObject + Clip + Mute Mettre en sourdine - TrackContentObjectView + ClipView + Current position Position actuelle - Hint - Astuce - - - Press <%1> and drag to make a copy. - Appuyez sur <%1> et glissez pour faire une copie. - - + Current length Longueur actuelle - Press <%1> for free resizing. - Appuyez sur <%1> pour un redimensionnement libre. - - + + %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) - Mettre en sourdine (ou pas) (<%1> + clic-milieu) + Sourdine (ou non) (<%1> + clic-milieu) + + + + Mute/unmute selection (<%1> + middle click) + + + + + Set clip color + + + + + Use track color + + + + + TrackContentWidget + + + Paste + Coller TrackOperationsWidget - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Appuyez sur <%1> en cliquant sur la poignée de déplacement pour commencer un nouveau glisser/déposer. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + - Actions for this track - Actions pour cette piste + + Actions + + + Mute Mode sourdine + + Solo Mode solo - Mute this track - Mettre cette piste en sourdine + + 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 - FX %1: %2 + + 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 - Assign to new FX Channel - Assigner à un nouveau canal d'effet + + Change color + Modifier la couleur + + + + Reset color to default + Réinitialiser la couleur par défaut + + + + Set random color + + + + + Clear clip colors + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - Utiliser la modulation de phase pour moduler l'oscillateur 1 avec l'oscillateur 2 + + Modulate phase of oscillator 1 by oscillator 2 + Moduler la phase de l'oscillateur 1 par l'oscillateur 2 - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Utiliser la modulation d'amplitude pour moduler l'oscillateur 1 avec l'oscillateur 2 + + Modulate amplitude of oscillator 1 by oscillator 2 + - Mix output of oscillator 1 & 2 - Mélanger la sortie des oscillateurs 1 et 2 + + Mix output of oscillators 1 & 2 + + Synchronize oscillator 1 with oscillator 2 Synchroniser l'oscillateur 1 avec l'oscillateur 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Utiliser la modulation de fréquence pour moduler l'oscillateur 1 avec l'oscillateur 2 + + Modulate frequency of oscillator 1 by oscillator 2 + - Use phase modulation for modulating oscillator 2 with oscillator 3 - Utiliser la modulation de phase pour moduler l'oscillateur 2 avec l'oscillateur 3 + + Modulate phase of oscillator 2 by oscillator 3 + - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Utiliser la modulation d'amplitude pour moduler l'oscillateur 2 avec l'oscillateur 3 + + Modulate amplitude of oscillator 2 by oscillator 3 + - Mix output of oscillator 2 & 3 - Mélanger la sortie des oscillateurs 2 et 3 + + Mix output of oscillators 2 & 3 + + Synchronize oscillator 2 with oscillator 3 Synchroniser l'oscillateur 2 avec l'oscillateur 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Utiliser la modulation de fréquence pour moduler l'oscillateur 2 avec l'oscillateur 3 + + Modulate frequency of oscillator 2 by oscillator 3 + + Osc %1 volume: Volume de l'oscillateur %1 : - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Avec ce bouton vous pouvez régler le volume de l'oscillateur %1. Lorsque mettez la valeur 0 l'oscillateur est arrêté. Sinon vous pouvez entendre l'oscillateur aussi fort que vous l'avez réglé. - - + Osc %1 panning: Panoramisation de l'oscillateur %1 : - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Avec ce bouton vous pouvez régler le panoramisation de l'oscillateur %1. Une valeur de -100 corespond à 100 % à gauche et une valeur de 100 déplace la sortie de l'oscillateur à droite. - - + Osc %1 coarse detuning: Désaccordage grossier de l'oscillateur %1 : + semitones demi-tons - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Avec ce bouton vous pouvez régler le désaccord grossier de l'oscillateur %1. Vous pouvez désaccorder l'oscillateur de 24 demi-tons (2 octaves) vers le haut et vers le bas. Ceci est utile pour la création de sons avec un accord. - - + Osc %1 fine detuning left: Désaccordage fin (gauche) de l'oscillateur %1 : + + cents centièmes - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Avec ce bouton vous pouvez régler le désaccord fin du canal gauche de l'oscillateur %1. Le désaccordage fin varie entre -100 centièmes et +100 centièmes. Ceci est utile pour la création de sons 'gras'. - - + Osc %1 fine detuning right: Désaccordage fin (droite) de l'oscillateur %1 : - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Avec ce bouton vous pouvez régler le désaccord fin du canal droit de l'oscillateur %1. Le désaccordage fin varie entre -100 centièmes et +100 centièmes. Ceci est utile pour la création de sons 'gras'. - - + Osc %1 phase-offset: Décalage de phase de l'oscillateur %1 : + + degrees degrés - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Avec ce bouton vous pouvez régler le décalage de phase de l'oscillateur %1. Cela signifie que vous pouvez déplacer dans une oscillation le point où l'oscillateur commence à osciller. Par exemple si vous avez une onde sinusoïdale et un décalage de phase de 180 degrés l'onde commencera par descendre. C'est la même chose avec une onde carrée. - - + Osc %1 stereo phase-detuning: Désaccordage stéréo de la phase de l'oscillateur %1 : - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Avec ce bouton vous pouvez régler le désaccordage stéréo de la phase de l'oscillateur %1. Le désaccordage stéréo de la phase précise l'importance de la différence entre le décalage de phase du canal gauche et droit. Ceci est très bien pour la création de sons stéréo amples. + + Sine wave + Onde sinusoïdale - Use a sine-wave for current oscillator. - Utiliser une onde sinusoïdale pour cet oscillateur. + + Triangle wave + Onde triangulaire - Use a triangle-wave for current oscillator. - Utiliser une onde triangulaire pour cet oscillateur. + + Saw wave + Onde en dents-de-scie - Use a saw-wave for current oscillator. - Utiliser une onde en dents-de-scie pour cet oscillateur. + + Square wave + Onde carrée - Use a square-wave for current oscillator. - Utiliser une onde carrée pour cet oscillateur. + + Moog-like saw wave + - Use a moog-like saw-wave for current oscillator. - Utiliser une onde en dents-de-scie de type Moog pour cet oscillateur. + + Exponential wave + Onde exponentielle - Use an exponential wave for current oscillator. - Utiliser une onde exponentielle pour cet oscillateur. + + White noise + Bruit blanc - Use white-noise for current oscillator. - Utiliser un bruit blanc pour cet oscillateur. + + User-defined wave + + + + + VecControls + + + Display persistence amount + - Use a user-defined waveform for current oscillator. - Utiliser une onde définie par l'utilisateur pour cet oscillateur. + + 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 Incrémenter le numéro de version + Decrement version number Décrémenter le numéro de version + + Save Options + + + + already exists. Do you want to replace it? existe déjà. Souhaitez-vous le remplacer ? @@ -7186,156 +14051,117 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré VestigeInstrumentView - Open other VST-plugin - Ouvrir un autre greffon VST + + + Open VST plugin + Ouvrir un plugin VST - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Cliquez ici si vous souhaitez ouvrir un autre greffon VST. Après avoir cliqué sur ce bouton, une boîte de dialogue d'ouverture de fichier apparaîtra et vous pourrez sélectionner votre fichier. + + Control VST plugin from LMMS host + - Show/hide GUI - Montrer/cacher l'interface utilisateur graphique - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Cliquez ici pour montrer ou cacher l'interface utilisateur graphique de votre greffon VST. - - - Turn off all notes - Arrêter de jouer toutes les notes - - - Open VST-plugin - Ouvrir un greffon VST - - - DLL-files (*.dll) - Fichiers DLL (*.dll) - - - EXE-files (*.exe) - Fichiers EXE (*.exe) - - - No VST-plugin loaded - Aucun greffon VST n'a été chargé - - - Control VST-plugin from LMMS host - Contrôler le greffon VST à partir de l'hôte LMMS - - - Click here, if you want to control VST-plugin from host. - Cliquez ici si vous voulez contrôler le greffon VST à partir de l'hôte. - - - Open VST-plugin preset - Ouvrir les pré-réglages du greffon VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Cliquez ici si vous voulez ouvrir un autre pré-réglage de greffon VST *.fxp, *.fxb. + + Open VST plugin preset + + Previous (-) Précédent (-) - Click here, if you want to switch to another VST-plugin preset program. - Cliquez ici si vous voulez passer à un autre programme de pré-réglage de plugin VST. - - + Save preset Enregistrer le pré-réglage - Click here, if you want to save current VST-plugin preset program. - Cliquez ici si vous voulez sauvegarder le programme de pré-réglage de greffon VST actuel. - - + Next (+) Suivant (+) - Click here to select presets that are currently loaded in VST. - Cliquez ici pour sélectionner les pré-réglages qui sont actuellement chargés dans le VST. + + 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) + + + + No VST plugin loaded + + + + Preset Pré-réglage + by par + - VST plugin control - contrôle de greffon VST - - VisualizationWidget - - click to enable/disable visualization of master-output - Cliquez pour activer/désactiver la visualisation de la sortie maîtresse - - - Click to enable - Cliquez pour activer - - VstEffectControlDialog + Show/hide Montrer/cacher - Control VST-plugin from LMMS host - Contrôler le greffon VST à partir de l'hôte LMMS + + Control VST plugin from LMMS host + - Click here, if you want to control VST-plugin from host. - Cliquez ici si vous voulez contrôler le greffon VST à partir de l'hôte. - - - Open VST-plugin preset - Ouvrir le pré-réglage du greffon VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Cliquez ici si vous voulez ouvrir un autre pré-réglage de greffon VST *.fxp, *.fxb. + + Open VST plugin preset + + Previous (-) Précédent (-) - Click here, if you want to switch to another VST-plugin preset program. - Cliquez ici si vous voulez passer à un autre programme de pré-réglage de plugin VST. - - + Next (+) Suivant (+) - Click here to select presets that are currently loaded in VST. - Cliquez ici pour sélectionner les pré-réglages qui sont actuellement chargés dans le VST. - - + Save preset Enregistrer le pré-réglage - Click here, if you want to save current VST-plugin preset program. - Cliquez ici si vous voulez sauvegarder le programme de pré-réglage de greffon VST actuel. - - + + Effect by: Effet par : + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7343,173 +14169,207 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré VstPlugin - Loading plugin - Chargement du greffon + + + The VST plugin %1 could not be loaded. + Le greffon "%1" n'a pas pu être chargé. + Open Preset - Ouvrir le Pré-réglage + Ouvrir le pré-réglage + + Vst Plugin Preset (*.fxp *.fxb) - Pré-réglage de Greffon VST (*.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 - Please wait while loading VST plugin... - Veuillez patienter pendant le chargement du greffon VST... + + Loading plugin + Chargement du greffon - The VST plugin %1 could not be loaded. - Le greffon "%1" n'a pas pu être chargé. + + 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é @@ -7517,2802 +14377,2251 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré WatsynView - 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 with output of A2 - Moduler l'amplitude de A1 avec la sortie de A2 - - - Ring-modulate A1 and A2 - Moduler en anneau A1 et A2 - - - Modulate phase of A1 with output of A2 - Moduler la phase de A1 avec la sortie de A2 - - - Mix output of B2 to B1 - Mélanger la sortie de B2 dans B1 - - - Modulate amplitude of B1 with output of B2 - Moduler l'amplitude de B1 avec la sortie de B2 - - - Ring-modulate B1 and B2 - Moduler en anneau B1 et B2 - - - Modulate phase of B1 with output of B2 - Moduler la phase de B1 avec la sortie de 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 - - - Click to load a waveform from a sample file - Cliquez pour charger une forme d'onde depuis un fichier d'échantillon - - - Phase left - Phase gauche - - - Click to shift phase by -15 degrees - Cliquez pour décaler la phase de -15 degrés - - - Phase right - Phase droite - - - Click to shift phase by +15 degrees - Cliquez pour décaler la phase de +15 degrés - - - Normalize - Normaliser - - - Click to normalize - Cliquez pour normaliser - - - Invert - Inverser - - - Click to invert - Cliquez pour inverser - - - Smooth - Adoucir - - - Click to smooth - Cliquez pour adoucir - - - Sine wave - Onde sinusoïdale - - - Click for sine wave - Cliquez pour une onde sinusoïdale - - - Triangle wave - Onde triangulaire - - - Click for triangle wave - Cliquez pour une onde triangulaire - - - Click for saw wave - Cliquez pour une onde en dents-de-scie - - - Square wave - Onde carrée - - - Click for square wave - Cliquez pour une onde carrée - - + + + + Volume Volume + + + + Panning Panoramisation + + + + Freq. multiplier Multiplicateur de fréquence + + + + Left detune Déréglage gauche + + + + + + + + cents centièmes + + + + 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 - - - ZynAddSubFxInstrument - Portamento - Portamento + + Select oscillator A1 + Sélectionner l'oscillateur A1 - Filter Frequency - Fréquence du filtre + + Select oscillator A2 + Sélectionner l'oscillateur A2 - Filter Resonance - Résonance du filtre + + Select oscillator B1 + Sélectionner l'oscillateur B1 - Bandwidth - Largeur de bande + + Select oscillator B2 + Sélectionner l'oscillateur B2 - FM Gain - Gain FM + + Mix output of A2 to A1 + Mélanger la sortie de A2 dans A1 - Resonance Center Frequency - Fréquence Centrale de la Résonance + + Modulate amplitude of A1 by output of A2 + - Resonance Bandwidth - Largeur de Bande de la Résonance + + Ring modulate A1 and A2 + - Forward MIDI Control Change Events - Transmet les événements MIDI Control Change - - - - ZynAddSubFxView - - Show GUI - Montrer l'interface utilisateur graphique + + Modulate phase of A1 by output of A2 + - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Cliquez ici pour montrer ou cacher l'interface utilisateur graphique de ZynAddSubFX. + + Mix output of B2 to B1 + Mélanger la sortie de B2 dans B1 - Portamento: - Portamento : + + Modulate amplitude of B1 by output of B2 + - PORT - PORT + + Ring modulate B1 and B2 + - Filter Frequency: - Fréquence du filtre : - - - FREQ - FRÉQ - - - Filter Resonance: - Résonance du filtre : - - - RES - RES - - - Bandwidth: - Largeur de bande : - - - BW - LB - - - FM Gain: - Gain FM : - - - 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 - Transmet les événements MIDI Control Change - - - - audioFileProcessor - - Amplify - Amplifier - - - Start of sample - Début de l'échantillon - - - End of sample - Fin de l'échantillon - - - Reverse sample - Inverser l'échantillon - - - Stutter - Bégaiement - - - Loopback point - Point de bouclage - - - Loop mode - Mode de jeu en boucle - - - Interpolation mode - Mode interpolation - - - None - Aucun - - - Linear - Linéaire - - - Sinc - Sync - - - Sample not found: %1 - Échantillon %1 non trouvé - - - - bitInvader - - Samplelength - Longueur de l'échantillon - - - - bitInvaderView - - Sample Length - Longueur de l'échantillon - - - Sine wave - Onde sinusoïdale - - - Triangle wave - Onde triangulaire - - - Saw wave - Onde en dents-de-scie - - - Square wave - Onde carrée - - - White noise wave - Bruit blanc - - - User defined wave - Onde définie par l'utilisateur - - - Smooth - Lisser - - - Click here to smooth waveform. - Cliquez ici pour lisser la forme d'onde. - - - Interpolation - Interpolation - - - Normalize - Normaliser + + 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. - Click for a sine-wave. - Cliquez ici pour une onde sinusoïdale. + + Load waveform + Charger la forme d'onde - Click here for a triangle-wave. - Cliquez ici pour une onde triangulaire. + + Load a waveform from a sample file + - Click here for a saw-wave. - Cliquez ici pour une onde en dents-de-scie. + + Phase left + Phase gauche - Click here for a square-wave. - Cliquez ici pour une onde carrée. + + Shift phase by -15 degrees + - Click here for white-noise. - Cliquez ici pour un bruit blanc. + + Phase right + Phase droite - Click here for a user-defined shape. - Cliquez ici pour une onde définie par l'utilisateur. - - - - dynProcControlDialog - - INPUT - ENTRÉE + + Shift phase by +15 degrees + - Input gain: - Gain en entrée : + + + Normalize + Normaliser - OUTPUT - SORTIE + + + Invert + Inverser - 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 waveform - Réinitialiser la forme d'onde - - - Click here to reset the wavegraph back to default - Cliquer ici pour réinitialiser le graphique d'onde par défaut - - - Smooth waveform - Forme d'onde adoucie - - - Click here to apply smoothing to wavegraph - Cliquer ici pour adoucir la forme d'onde - - - Increase wavegraph amplitude by 1dB - Augmenter l'amplitude du graphique de l'onde d'1 dB - - - Click here to increase wavegraph amplitude by 1dB - Cliquez ici pour augmenter l'amplitude du graphique de l'onde d'1 dB - - - Decrease wavegraph amplitude by 1dB - Réduire l'amplitude du graphique de l'onde d'1 dB - - - Click here to decrease wavegraph amplitude by 1dB - Cliquer ici pour réduire l'amplitude du graphique de l'onde d'1 dB - - - Stereomode Maximum - Maximum du mode stéréo - - - Process based on the maximum of both stereo channels - Traitement basé sur le maximum des deux canaux stéréo - - - Stereomode Average - Moyenne du mode stéréo - - - Process based on the average of both stereo channels - Traitement basé sur la moyenne des deux canaux stéréo - - - Stereomode Unlinked - Mode stéréo détaché - - - 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 - - - - expressiveView - - 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 1 - Sélectionner la SORTIE 1 - - - Select OUTPUT 2 - Sélectionner la SORTIE 2 - - - Open help window - Ouvrir la fenêtre d'aide + + + Smooth + Adoucir + + Sine wave Onde sinusoïdale - Click for a sine-wave. - Cliquez ici pour une onde sinusoïdale. - - - Moog-Saw wave - Onde en dents-de-scie-Moog - - - Click for a Moog-Saw-wave. - Cliquez pour une onde-en-dents-de-scie-Moog. - - - Exponential wave - Onde exponentielle - - - Click for an exponential wave. - Cliquez pour une onde exponentielle. - - - Saw wave - Onde en dents-de-scie - - - Click here for a saw-wave. - Cliquez ici pour une onde en dents-de-scie. - - - User defined wave - Onde définie par l'utilisateur - - - Click here for a user-defined shape. - Cliquez ici pour une onde définie par l'utilisateur. - - + + + Triangle wave Onde triangulaire - Click here for a triangle-wave. - Cliquez ici pour une 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 + + + 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 - Click here for a square-wave. - Cliquez ici pour une onde carrée. - - - White noise wave + + + White noise Bruit blanc - Click here for white-noise. - Cliquez ici pour un 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 - fxLineLcdSpinBox + ZynAddSubFxInstrument - Assign to: - Assigner à : + + Portamento + Portamento - New FX Channel - Nouveau canal d'effet + + 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 + KickerInstrument + Start frequency Fréquence de début + End frequency Fréquence de fin - Gain - Gain - - + Length Longueur - Distortion Start - Début de distorsion + + Start distortion + - Distortion End - Fin de distorsion + + End distortion + - Envelope Slope - Pente d'enveloppe + + Gain + Gain + + Envelope slope + + + + Noise Bruit + Click Clic - Frequency Slope - Pente de fréquence + + Frequency slope + + Start from note Commencer à la note + End to note Finir à la note - kickerInstrumentView + KickerInstrumentView + Start frequency: Fréquence de début : + End frequency: Fréquence de fin : + + Frequency slope: + + + + Gain: Gain : - Frequency Slope: - Pente de fréquence : + + Envelope length: + - Envelope Length: - Longueur de l'enveloppe : - - - Envelope Slope: - Pente de l'enveloppe : + + Envelope slope: + + Click: Clic : + Noise: Bruit : - Distortion Start: - Début de distorsion : + + Start distortion: + - Distortion End: - Fin de distorsion : + + End distortion: + - ladspaBrowserView + LadspaBrowserView + + Available Effects Effets disponibles + + Unavailable Effects Effets indisponibles + + Instruments Instruments + + Analysis Tools Outils d'analyse + + Don't know Divers - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Cette boîte de dialogue affiche des informations sur tous les greffons LADSPA que LMMS a pu localiser. Ces greffons sont répartis en cinq catégories en fonction de l'interprétation des types et des noms de port. - -Les « Effets disponibles » sont ceux qui peuvent être utilisés par LMMS. Pour que LMMS puisse utiliser un effet, il doit, tout d'abord, être un effet, ce qui revient à dire qu'il doit avoir à la fois des canaux d'entrée et de sortie. LMMS identifie un canal d'entrée comme un port audio contenant 'in' dans son nom. Les canaux de sortie sont identifiés par les lettres 'out'. De plus, l'effet doit avoir le même nombre d'entrée que de sorties et doit pouvoir fonctionner en temps réel. - -Les « Effets indisponibles » sont ceux qui ont été identifiés comme des effets, mais qui soit n'ont pas le même nombre de canaux d'entrée et de sortie, soit ne peuvent fonctionner en temps réel. - -Les « Instruments » sont des greffons pour lesquels seuls des canaux de sortie ont été identifiés. - -Les « Outils d'analyse » sont des greffons pour lesquels seuls des canaux d'entrée ont été identifiés. - -Les « Divers » sont des greffons pour lesquels aucun canaux d'entrée ou de sortie n'ont été identifiés. - -En double-cliquant sur ces greffons vous ferez apparaître des informations sur les ports. - - + Type: Type : - ladspaDescription + LadspaDescription + Plugins Greffons + Description Description - ladspaPortDialog + 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 + 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 + 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 + MalletsInstrument + Hardness Dureté + Position Position - Vibrato Gain - Gain du vibrato + + Vibrato gain + - Vibrato Freq - Fréquence du vibrato + + Vibrato frequency + - Stick Mix - Stick Mix + + Stick mix + + Modulator Modulateur + Crossfade Fondu enchainé - LFO Speed + + LFO speed Vitesse du LFO - LFO Depth - Profondeur du LFO + + LFO depth + + ADSR ADSR + Pressure Pression + Motion Mouvement + Speed Vitesse + Bowed Courbé + Spread Diffusion + Marimba Marimba + Vibraphone Vibraphone + Agogo Agogo - Wood1 - Bois1 + + Wood 1 + + Reso Réso - Wood2 - Bois2 + + Wood 2 + + Beats Battements - Two Fixed - Deux fixes + + Two fixed + + Clump Bruit lourd - Tubular Bells - Cloches tubulaires + + Tubular bells + - Uniform Bar - Barre uniforme + + Uniform bar + - Tuned Bar - Barre accordée + + Tuned bar + + Glass Verre - Tibetan Bowl - Bol tibétain + + Tibetan bowl + - malletsInstrumentView + MalletsInstrumentView + Instrument Instrument + Spread Diffusion + Spread: Diffusion : - Hardness - Dureté - - - Hardness: - Dureté : - - - Position - Position - - - Position: - Position : - - - Vib Gain - Gain Vib - - - Vib Gain: - Gain Vib : - - - Vib Freq - Fréq Vib - - - Vib Freq: - Fréq Vib : - - - Stick Mix - Stick Mix - - - 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 - Profondeur du LFO - - - LFO Depth: - Profondeur du LFO : - - - ADSR - ADSR - - - ADSR: - ADSR : - - - Pressure - Pression - - - Pressure: - Pression : - - - Speed - Vitesse - - - Speed: - Vitesse : - - + 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 + ManageVSTEffectView + - VST parameter control - Paramètre de contrôle VST - VST Sync - VST Sync - - - Click here if you want to synchronize all parameters with VST plugin. - Cliquez ici si vous voulez synchroniser tous les paramètres avec le greffon VST. + + VST sync + + + Automated Automatique - Click here if you want to display automated parameters only. - Cliquez ici si vous voulez seulement afficher les paramètres automatiques. - - + Close Fermer - - Close VST effect knob-controller window. - Fermer la fenêtre des boutons contrôleurs des effets VST. - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - contrôle de greffon VST + VST Sync VST Sync - Click here if you want to synchronize all parameters with VST plugin. - Cliquez ici si vous voulez synchroniser tous les paramètres avec le greffon VST. - - + + Automated Automatique - Click here if you want to display automated parameters only. - Cliquez ici si vous voulez seulement afficher les paramètres automatiques. - - + Close Fermer - - Close VST plugin knob-controller window. - Fermer la fenêtre des boutons contrôleurs des effets VST. - - opl2instrument - - Patch - Son - - - Op 1 Attack - Attaque Op 1 - - - Op 1 Decay - Affaiblissement (decay) Op 1 - - - Op 1 Sustain - Soutien (sustain) Op 1 - - - Op 1 Release - Relâchement Op 1 - - - Op 1 Level - Niveau Op 1 - - - Op 1 Level Scaling - Graduation de niveau Op 1 - - - Op 1 Frequency Multiple - Multiple de fréquence Op 1 - - - Op 1 Feedback - Réinjection Op 1 - - - Op 1 Key Scaling Rate - Taux de graduation de clé Op 1 - - - Op 1 Percussive Envelope - Enveloppe percussive Op 1 - - - Op 1 Tremolo - Trémolo Op 1 - - - Op 1 Vibrato - Vibrato Op 1 - - - Op 1 Waveform - Forme d'onde Op 1 - - - Op 2 Attack - Attaque Op 2 - - - Op 2 Decay - Affaiblissement (decay) Op 2 - - - Op 2 Sustain - Soutien (sustain) Op 2 - - - Op 2 Release - Relâchement Op 2 - - - Op 2 Level - Niveau Op 2 - - - Op 2 Level Scaling - Graduation de niveau Op 2 - - - Op 2 Frequency Multiple - Multiple de fréquence Op 2 - - - Op 2 Key Scaling Rate - Taux de graduation de clé Op 2 - - - Op 2 Percussive Envelope - Enveloppe percussive Op 2 - - - Op 2 Tremolo - Trémolo Op 2 - - - Op 2 Vibrato - Vibrato Op 2 - - - Op 2 Waveform - Forme d'onde Op 2 - - - FM - FM - - - Vibrato Depth - Profondeur de Vibrato - - - Tremolo Depth - Profondeur de Trémolo - - - - opl2instrumentView - - Attack - Attaque - - - Decay - Affaiblissement (decay) - - - Release - Relâchement - - - Frequency multiplier - Multiplicateur de fréquence - - - - organicInstrument + OrganicInstrument + Distortion Distorsion + Volume Volume - organicInstrumentView + 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 : - cents - centièmes - - - The distortion knob adds distortion to the output of the instrument. - Le bouton de distorsion ajoute de la distorsion à la sortie de l'instrument. - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - Le bouton de volume contrôle le volume de la sortie de l'instrument. Il est cumulatif avec le volume de contrôle de la fenêtre de l'instrument. - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - Le bouton d'aléation ajoute du hasard à tous les boutons sauf les boutons d'harmoniques, de volume principal, et de distorsion. - - + 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 : - FreeBoyInstrument - - Sweep time - Temps de balayage - - - Sweep direction - Sens de balayage - - - Sweep RtShift amount - Niveau de décalage vers la droite du balayage - - - Wave Pattern Duty - Motif d'onde - - - 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 - - - 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 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 - - - Shift Register width - Largeur du registre de décalage - - - - FreeBoyInstrumentView - - Sweep Time: - Temps de balayage : - - - Sweep Time - Temps de balayage - - - Sweep RtShift amount: - Niveau de décalage vers la droite du balayage : - - - Sweep RtShift amount - Niveau de décalage vers la droite du balayage - - - Wave pattern duty: - Motif d'onde : - - - Wave Pattern Duty - Motif d'onde - - - Square Channel 1 Volume: - Volume du canal carré 1 : - - - Length of each step in sweep: - Longueur de chaque pas du balayage : - - - Length of each step in sweep - Longueur de chaque pas du balayage - - - Wave pattern duty - Motif d'onde - - - Square Channel 2 Volume: - Volume du canal carré 2 : - - - Square Channel 2 Volume - Volume du canal carré 2 - - - Wave Channel Volume: - Volume du canal onde : - - - Wave Channel Volume - Volume du canal onde - - - Noise Channel Volume: - Volume du canal bruit : - - - Noise Channel Volume - Volume du canal bruit - - - SO1 Volume (Right): - Volume SO1 (droite) : - - - SO1 Volume (Right) - Volume SO1 (droite) - - - SO2 Volume (Left): - Volume SO2 (droite) : - - - SO2 Volume (Left) - Volume SO2 (droite) - - - Treble: - Aigus : - - - Treble - Aigus - - - Bass: - Graves : - - - Bass - Graves - - - Sweep Direction - Sens de balayage - - - Volume Sweep Direction - Sens du volume du balayage - - - Shift Register Width - Largeur du registre de décalage - - - Channel1 to SO1 (Right) - Canal 1 vers SO1 (droite) - - - Channel2 to SO1 (Right) - Canal 2 vers SO1 (droite) - - - Channel3 to SO1 (Right) - Canal 3 vers SO1 (droite) - - - Channel4 to SO1 (Right) - Canal 4 vers SO1 (droite) - - - Channel1 to SO2 (Left) - Canal 1 vers SO2 (gauche) - - - Channel2 to SO2 (Left) - Canal 2 vers SO2 (gauche) - - - Channel3 to SO2 (Left) - Canal 3 vers SO2 (gauche) - - - Channel4 to SO2 (Left) - Canal 4 vers SO2 (gauche) - - - Wave Pattern - Motif d'onde - - - The amount of increase or decrease in frequency - Le niveau d'augmentation ou de diminution de la fréquence - - - The rate at which increase or decrease in frequency occurs - La vitesse à laquelle l'augmentation ou la diminution de la fréquence se produit - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - Le cycle de travail est le rapport entre la durée (temps) pendant laquelle un signal est présent et la période totale du signal. - - - Square Channel 1 Volume - Volume du canal carré 1 - - - The delay between step change - Le délai entre chaque changement de pas - - - Draw the wave here - Dessinez votre onde ici - - - - patchesDialog + 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 - pluginBrowser - - no description - pas de description - - - Incomplete monophonic imitation tb303 - Imitation incomplète de TB303 monophonique - - - Plugin for freely manipulating stereo output - Greffon pour la manipulation de la sortie stéréo - - - Plugin for controlling knobs with sound peaks - Greffon pour des boutons de contrôles avec des crêtes de son - - - 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 - - - List installed LADSPA plugins - Liste des greffons LADSPA installés - - - GUS-compatible patch instrument - Sons d'instruments compatibles avec la carte Gravis UltraSound (GUS) - - - Additive Synthesizer for organ-like sounds - Synthétiseur additif pour sons d'orgue - - - Tuneful things to bang on - Instruments à percussion mélodiques - - - 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 LADSPA-effects inside LMMS. - Greffon pour l'utilisation de tout effet LADSPA dans LMMS. - - - Filter for importing MIDI-files into LMMS - Filtre pour importer des fichiers MIDI dans LMMS - - - 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. - - - Player for SoundFont files - Lecteur de fichiers SoundFont - - - Emulation of GameBoy (TM) APU - Émulateur de l'APU de la GameBoy (TM) - - - Customizable wavetable synthesizer - Synthétiseur de table d'ondes personnalisable - - - Embedded ZynAddSubFX - ZynAddSubFX intégré - - - 2-operator FM Synth - Synthé FM à 2 opérateurs - - - Filter for importing Hydrogen files into LMMS - Filtre pour importer des fichiers Hydrogen dans LMMS - - - LMMS port of sfxr - Port LMMS de sfxr - - - Monstrous 3-oscillator synth with modulation matrix - Synthétiseur à 3 oscillateurs monstrueux avec matrice de modulation - - - Three powerful oscillators you can modulate in several ways - Trois oscillateurs puissants que vous pouvez moduler de différentes manières - - - A native amplifier plugin - Un greffon d'amplification natif - - - Carla Rack Instrument - Rack d'instruments Carla - - - 4-oscillator modulatable wavetable synth - Synthétiseur de table d'ondes modulables à 4 oscillateurs - - - plugin for waveshaping - Greffon pour du modelage d'onde - - - Boost your bass the fast and simple way - Renforcer vos basses de la manière la plus simple et la plus rapide - - - Versatile drum synthesizer - Synthétiseur de batterie polyvalent - - - 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 - - - plugin for processing dynamics in a flexible way - Greffon pour transformer la dynamique sonore de façon flexible - - - Carla Patchbay Instrument - Baie d'instruments Carla - - - plugin for using arbitrary VST effects inside LMMS. - Greffon pour l'utilisation de tout effet VST dans LMMS. - - - Graphical spectrum analyzer plugin - Greffon analyseur graphique de spectre - - - A NES-like synthesizer - Un synthétiseur genre 'NES' - - - A native delay plugin - Greffon délai natif - - - Player for GIG files - Lecteur de fichiers GIG - - - A multitap echo delay plugin - Un greffon d'écho et délai multitap - - - A native flanger plugin - Un greffon flanger natif - - - An oversampling bitcrusher - Un bitcrusher sur-échantillonneur - - - A native eq plugin - Un greffon égaliseur natif - - - A 4-band Crossover Equalizer - Un égaliseur crossover à 4 bandes - - - A Dual filter plugin - Un greffon de filtre double - - - Filter for exporting MIDI-files from LMMS - Filtre pour l'exportation de fichiers MIDI depuis LMMS - - - Reverb algorithm by Sean Costello - Algorithme de réverbération par Sean Costello - - - Mathematical expression parser - Analyseur d'expression mathématique - - - - sf2Instrument + Sf2Instrument + Bank Banque + Patch Son + Gain Gain + Reverb Réverbération - Reverb Roomsize - Réverbération (taille de la salle) + + Reverb room size + - Reverb Damping - Amortissement de la réverbération + + Reverb damping + - Reverb Width - Largeur de la réverbération + + Reverb width + - Reverb Level - Niveau de la réverbération + + Reverb level + + Chorus Chorus - Chorus Lines - Lignes de chorus + + Chorus voices + - Chorus Level - Niveau de chorus + + Chorus level + - Chorus Speed - Vitesse de chorus + + Chorus speed + - Chorus Depth - Profondeur de chorus + + Chorus depth + + A soundfont %1 could not be loaded. La banque de sons %1 n'a pu être chargée. - sf2InstrumentView - - Open other SoundFont file - Ouvrir un fichier SoundFont - - - Click here to open another SF2 file - Cliquez ici pour ouvrir un autre fichier SF2 - - - Choose the patch - Choisir un son - - - Gain - Gain - - - Apply reverb (if supported) - Appliquer la réverbération (si prise en charge) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Ce bouton active l'effet réverbération. Ceci est utile pour de beaux effets, mais ne fonctionne que sur les fichiers qui le prennent en charge. - - - Reverb Roomsize: - Réverbération (taille de la salle) : - - - Reverb Damping: - Amortissement de la réverbération : - - - Reverb Width: - Largeur de la réverbération : - - - Reverb Level: - Niveau de la réverbération : - - - Apply chorus (if supported) - Appliquer le chorus (si pris en charge) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Ce bouton active l'effet chorus. Ceci est utile pour de beaux effets, mais ne fonctionne que sur les fichiers qui le prennent en charge. - - - Chorus Lines: - Lignes de chorus : - - - Chorus Level: - Niveau de chorus : - - - Chorus Speed: - Vitesse de chorus : - - - Chorus Depth: - Profondeur de chorus : - + Sf2InstrumentView + + Open SoundFont file Ouvrir un fichier SoundFont - SoundFont2 Files (*.sf2) - Fichiers SoundFont2 (*.sf2) + + 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 + SfxrInstrument - Wave Form - Forme d'onde + + Wave + - sidInstrument + StereoEnhancerControlDialog - Cutoff - Coupure - - - Resonance - Résonance - - - Filter type - Type de filtre - - - Voice 3 off - Voix 3 coupée - - - Volume - Volume - - - Chip model - Modèle de circuit - - - - sidInstrumentView - - Volume: - Volume : - - - Resonance: - Résonance : - - - Cutoff frequency: - Fréquence de coupure : - - - High-Pass filter - Filtre passe-haut - - - Band-Pass filter - Filtre passe-bande - - - Low-Pass filter - Filtre passe-bas - - - Voice3 Off - Voix 3 coupée - - - MOS6581 SID - SID MOS6581 - - - MOS8580 SID - SID MOS8580 - - - Attack: - Attaque : - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - La vitesse d'attaque détermine la rapidité à laquelle la sortie de la Voix %1 passera de zéro à l'amplitude de crête. - - - Decay: - Affaiblissement : - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - La vitesse d'affaiblissement détermine la rapidité à laquelle la vitesse la sortie passera de l'amplitude de crête au niveau de soutien (sustain) choisi. - - - Sustain: - Soutien : - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - La sortie de la Voix %1 restera au niveau d'amplitude de soutien choisi tant que la note sera maintenu. - - - Release: - Relâchement : - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - La sortie de la Voix %1 descendra de l'amplitude de soutien à l'amplitude zéro à la vitesse de relâchement choisie. - - - Pulse Width: - Largeur de pulsation : - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - La résolution de la largeur de la pulsation permet à la largeur d'être balayée doucement sans pas discernable. La forme d'onde de la plusation de l'oscillateur %1 doit être choisie pour n'avoir aucun effet audible. - - - Coarse: - Grossier : - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - Le désaccordage grossier permet de désaccorder la Voix %1 d'une octave vers le haut ou vers le bas. - - - Pulse Wave - Onde de pulsation - - - Triangle Wave - Onde triangulaire - - - SawTooth - Dents-de-scie - - - Noise - Bruit - - - Sync - Sync - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Sync synchronise la fréquence fondamentale de l'oscillateur %1 avec la fréquence fondamentale de l'oscillateur %2 en produisant des effets "Hard Sync". - - - Ring-Mod - Mode anneau - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Le mode anneau remplace la sortie en forme d'onde triangulaire de l'oscillateur %1 par une combinaison "Modulée en anneau" des oscillateurs %1 et %2. - - - Filtered - Filtré - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Lorsque Filtré est activé, la Voix %1 sera traitée par le filtre. Lorsque Filtré est désactivé, la Voix %1 va directement en sortie, et le filtre n'a aucun effet sur elle. - - - Test - Test - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Lorsqu'il est activé, Test réinitialise et vérouille l'oscillateur %1 à zéro jusqu'à ce que Test soit désactivé. - - - - stereoEnhancerControlDialog - - WIDE - AMPL + + WIDTH + + Width: Ampleur : - stereoEnhancerControls + StereoEnhancerControls + Width Ampleur - stereoMatrixControlDialog + 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 + StereoMatrixControls + Left to Left Gauche à gauche + Left to Right Gauche à droite + Right to Left Droite à gauche + Right to Right Droite à droite - vestigeInstrument + VestigeInstrument + Loading plugin Chargement du greffon - Please wait while loading VST-plugin... - Veuillez patienter pendant le chargement du greffon VST... + + Please wait while loading the VST plugin... + - vibed + 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 - Pan %1 - Panoramisation %1 + + String %1 panning + Panoramique de la corde %1 - Detune %1 - Désaccordage %1 + + String %1 detune + Désaccordage de la corde %1 - Fuzziness %1 - Flou %1 + + String %1 fuzziness + Flou de la corde %1 - Length %1 - Longueur %1 + + String %1 length + Longueur de la corde %1 + Impulse %1 Pulsation %1 - Octave %1 - Octave %1 + + String %1 + Corde %1 - vibedView + VibedView - Volume: - Volume : - - - The 'V' knob sets the volume of the selected string. - Le bouton « V » règle le volume de la corde choisie. + + String volume: + Volume de la corde : + String stiffness: Rigidité de la corde : - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - Le bouton « S » règle la rigidité de la corde choisie. La rigidité de la corde affecte le temps pendant lequel la corde sonnera. Plus la valeur est faible, plus la corde sonnera longtemps. - - + Pick position: Point de contact : - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - Le bouton « P » règle l'endroit où la corde sera 'grattée'. Plus la valeur est faible, plus le point de contact sera proche du chevalet. - - + Pickup position: Point d'écoute : - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - Le bouton « PU » règle l'endroit où les vibrations de la corde choisie seront écoutées. Plus la valeur est faible, plus le point d'écoute sera proche du chevalet. + + String panning: + Panoramique de la corde : - Pan: - Panoramisation : + + String detune: + Désaccordage de la corde : - The Pan knob determines the location of the selected string in the stereo field. - Le bouton « Pan » détermine l'emplacement de la corde choisie dans le champ stéréo. + + String fuzziness: + Flou de la corde : - Detune: - Detune : + + String length: + Longueur de la corde : - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - Le bouton « Detune » modifie la hauteur de la corde choisie. Les valeurs négatives produiront un son grave. Les valeurs positives produiront un son aigu. - - - Fuzziness: - Flou : - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - Le bouton « Slap » ajoute un peu de flou à la corde choisie, plus sensible pendant l'attauqe, bien qu'il puisse aussi être utilisé pour rendre le son de la corde plus 'métallique'. - - - Length: - Longueur : - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - Le bouton « Length » règle la longueur de la corde choisie. Les cordes les plus longues vibrent plus longtemps et sonnent plus brillament; cependant, elles consommeront également plus de cycles du processeur. - - - Impulse or initial state - Impulsion ou état initial - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - Le sélecteur « Imp » détermine si la forme d'onde dans le graphique doit être traitée comme une impulsion donnée à la corde par le contact ou l'état initial de la corde. + + Impulse + + Octave Octave - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - Le sélecteur « Octave » est utilisé pour choisir l'harmonique de la note à laquelle la corde sonnera. Par exemple, '-2' signifie que la corde sonnera deux octaves sous la fondamentale, 'F' signifie que la corde sonnera à la fondamentale, et '6' signifie que la corde sonnera six octaves au-dessus de la fondamentale. - - + Impulse Editor Éditeur d'impulsion - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - L'éditeur de forme d'onde permet de contrôler l'état initial ou l'impulsion qui sera utilisé pour commencer à faire vibrer la corde. Les boutons situés à droite du graphique initialiseront la forme d'onde en fonction du type choisi. Le bouton « ? » chargera la forme d'onde à partir d'un fichier - seuls les 128 premiers échantillons seront chargés. - -La forme d'onde peu également être dessinée dans le graphique. - -Le bouton « S » lissera la forme d'onde. - -Le bouton « N » normalisera la forme d'onde. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Vibed modélise jusqu'à neuf cordes vibrant indépendamment. Le sélecteur « Corde » vous permet de choisir la corde à éditer. Le sélecteur « Imp » choisi si le graphique représente une impulsion ou l'état initial de la corde. Le sélecteur « Octave » choisi à quelle harmonique la corde devra vibrer. - -Le graphique vous permet de contrôler l'état initial ou l'impulsion utilisée pour mettre la corde en mouvement. - -Le bouton « V » contrôle le volume. Le bouton « S » contrôle la rigidité de la corde. Le bouton « P » contrôle le point de contact. Le bouton « PU » contrôle le point d'écoute. - -« Pan » et « Désaccorder » n'ont heureusement pas besoin d'explications. Le bouton « Slap » ajoute un peu de flou au son de la corde. - -Le bouton « Longueur » contrôle la longueur de la corde. - -Le LED situé dans le coin en bas à droite de l'éditeur de forme d'onde indique si la corde est utilisé dans l'instrument. - - + Enable waveform Activer la forme d'onde - Click here to enable/disable waveform. - Cliquez ici pour activer/désactiver la forme d'onde. + + Enable/disable string + Activer/désactiver la corde + String Corde - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - Le sélecteur « String » est utilisé pour choisir la corde que les contrôles sont en train d'éditer. Un instrument Vibed peut contenir jusqu'à neuf cordes vibrant indépendamment. Le LED situé dans le coin en bas à droite de l'éditeur de forme indique si la corde choisie est utilisée. - - + + Sine wave Onde sinusoïdale + + Triangle wave Onde triangulaire + + Saw wave Onde en dents-de-scie + + Square wave Onde carrée - White noise wave + + + White noise Bruit blanc - User defined wave - Onde définie par l'utilisateur + + + User-defined wave + - Smooth - Lisser + + + Smooth waveform + Forme d'onde adoucie - Click here to smooth waveform. - Cliquez ici pour lisser la forme d'onde. - - - Normalize - Normaliser - - - Click here to normalize waveform. - Cliquez ici pour normaliser la forme d'onde. - - - Use a sine-wave for current oscillator. - Utiliser une onde sinusoïdale pour cet oscillateur. - - - Use a triangle-wave for current oscillator. - Utiliser une onde triangulaire pour cet oscillateur. - - - Use a saw-wave for current oscillator. - Utiliser une onde en dents-de-scie pour cet oscillateur. - - - Use a square-wave for current oscillator. - Utiliser une onde carrée pour cet oscillateur. - - - Use white-noise for current oscillator. - Utiliser un bruit blanc pour cet oscillateur. - - - Use a user-defined waveform for current oscillator. - Utiliser une onde définie par l'utilisateur pour cet oscillateur. + + + Normalize waveform + Normaliser la forme d'onde - voiceObject + 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 + WaveShaperControlDialog + INPUT ENTRÉE + Input gain: Gain en entrée : + OUTPUT SORTIE + Output gain: Gain en sortie : - Reset waveform - Réinitialiser la forme d'onde + + + Reset wavegraph + - Click here to reset the wavegraph back to default - Cliquez ici pour réinitialiser le graphique d'onde par défaut + + + Smooth wavegraph + - Smooth waveform - Forme d'onde adoucie + + + Increase wavegraph amplitude by 1 dB + - Click here to apply smoothing to wavegraph - Cliquer ici pour adoucir la forme d'onde - - - Increase graph amplitude by 1dB - Augmenter l'amplitude du graphe de 1 dB - - - Click here to increase wavegraph amplitude by 1dB - Cliquez ici pour augmenter l'amplitude du graphe de 1dB - - - Decrease graph amplitude by 1dB - Réduire l'amplitude du graphique d'1 dB - - - Click here to decrease wavegraph amplitude by 1dB - Cliquer ici pour réduire l'amplitude du graphique d'1 dB + + + Decrease wavegraph amplitude by 1 dB + + Clip input Couper le signal d'entrée - Clip input signal to 0dB - Couper le signal d'entrée à 0dB + + Clip input signal to 0 dB + - waveShaperControls + WaveShaperControls + Input gain Gain en entrée + Output gain Gain en sortie - \ No newline at end of file + diff --git a/data/locale/gl.ts b/data/locale/gl.ts index 657ed1291..cf04fd5d4 100644 --- a/data/locale/gl.ts +++ b/data/locale/gl.ts @@ -2,93 +2,111 @@ AboutDialog + About LMMS Sobre o LMMS - Version %1 (%2/%3, Qt %4, %5) - Versión %1 (%2/%3, Qt %4, %5) - - - About - Sobre - - - LMMS - easy music production for everyone - LMMS - produción musical fácil para calquera - - - Authors - Autores - - - Translation - Tradución - - - 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! - Este idioma non está traducido (ou é inglés nativo). - -Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións existentes, síntase á vontade axudándonos! Simplemente contacte co mantedor! - - - License - Licenza - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + + + + + About + Sobre + + + + LMMS - easy music production for everyone. + + + + + Copyright © %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> + + + + + Authors + Autores + + + Involved + Contributors ordered by number of commits: - Copyright © %1 + + Translation + Tradución + + + + 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! - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - + + License + Licenza AmplifierControlDialog + VOL VOL + Volume: Volume: + PAN PAN + Panning: Panorámica: + LEFT + Left gain: + RIGHT + Right gain: @@ -96,18 +114,22 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións AmplifierControls + Volume Volume + Panning Panorámica + Left gain + Right gain @@ -115,10 +137,12 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións AudioAlsaSetupWidget + DEVICE DISPOSITIVO + CHANNELS CANLES @@ -126,85 +150,60 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións AudioFileProcessorView - Open other sample - Abrir outra mostra - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Prema aquí se desexa abrir outro ficheiro de son. Aparecerá un diálogo no que se pode escoller un ficheiro. As opcións tipo modo de bucle, puntos iniciais e final, valor da amplificación, etc. non se reinician. Polo tanto, pode non soar igual que a mostra orixinal. + + Open sample + + Reverse sample Inverter a mostra - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Ao activar este botón invértese a mostra completa. Isto é útil para efectos gaioleiros, como un crash invertido. - - - Amplify: - Amplificar: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Con este botón pódese indicar a relación de amplificación. Cando se indica un valor de 100%, a mostra fica como estaba. Se non, amplifícase para arriba ou para abaixo (o ficheiro mesmo coa mostra non se toca!) - - - Startpoint: - Punto inicial: - - - Endpoint: - Punto final: - - - Continue sample playback across notes - - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - - - + Disable loop - This button disables looping. The sample plays only once from start to end. - - - + Enable loop - This button enables forwards-looping. The sample loops between the end point and the loop point. + + Enable ping-pong loop - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. + + Continue sample playback across notes - With this knob you can set the point where AudioFileProcessor should begin playing your sample. + + Amplify: + Amplificar: + + + + Start point: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. + + End point: + Loopback point: - - With this knob you can set the point where the loop starts. - - AudioFileProcessorWaveView + Sample length: @@ -212,443 +211,469 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións AudioJack + JACK client restarted Reiniciouse o 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 foi expulsado por JACK por algunha razón. En consecuencia, reiniciouse a infraestrutura de JACK do LMMS. Terá que realizar as conexións manualmente de novo. + JACK server down O servidor de JACK non está a funcionar + 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. Semella que o servidor de JACK foi apagado e non foi posíbel iniciar unha instancia nova. En consecuencia, o LMMS non pode preseguir. Hai que gravar este proxecto e reiniciar o JACK e o LMMS. - CLIENT-NAME + + Client name - CHANNELS - CANLES + + Channels + - AudioOss::setupWidget + AudioOss - DEVICE - DISPOSITIVO + + Device + - CHANNELS - CANLES + + Channels + AudioPortAudio::setupWidget - BACKEND - INFRAESTRUTURA + + Backend + - DEVICE - DISPOSITIVO + + Device + - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - DISPOSITIVO + + Device + - CHANNELS - CANLES + + Channels + AudioSdl::setupWidget - DEVICE - DISPOSITIVO + + Device + - AudioSndio::setupWidget + AudioSndio - DEVICE - DISPOSITIVO + + Device + - CHANNELS - CANLES + + Channels + AudioSoundIo::setupWidget - BACKEND - INFRAESTRUTURA + + Backend + - DEVICE - DISPOSITIVO + + Device + AutomatableModel + &Reset (%1%2) &Reiniciar (%1%2) + &Copy value (%1%2) &Copiar o valor (%1%2) + &Paste value (%1%2) A&pegar o valor (%1%2) + + &Paste value + + + + Edit song-global automation Editar a automatización global da canción - Connected to %1 - Ligado a %1 - - - Connected to controller - Ligado ao controlador - - - Edit connection... - Editar a conexión... - - - Remove connection - Eliminar a conexión - - - Connect to controller... - Ligar a un controlador... - - + Remove song-global automation + Remove all linked controls + + + Connected to %1 + Ligado a %1 + + + + Connected to controller + Ligado ao controlador + + + + Edit connection... + Editar a conexión... + + + + Remove connection + Eliminar a conexión + + + + Connect to controller... + Ligar a un controlador... + AutomationEditor - Please open an automation pattern with the context menu of a control! + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip with the context menu of a control! Abra un padrón de automatización co menú de contexto dun control! - - Values copied - Valores copiados - - - All selected values were copied to the clipboard. - Copiáronse todos os valores escollidos no porta-retallos. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - - - - Stop playing of current pattern (Space) - - - - Click here if you want to stop playing of the current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Flip vertically - - - - Flip horizontally - - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Discrete progression - - - - Linear progression - - - - Cubic Hermite progression - - - - Tension value for spline - - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - Cut selected values (%1+X) - - - - Copy selected values (%1+C) - - - - Paste values from clipboard (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - - - - Tension: - - - - Automation Editor - no pattern - - - - Automation Editor - %1 + + 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 - Timeline controls + + Discrete progression + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + Zoom controls + + Horizontal zooming + + + + + Vertical zooming + + + + Quantization controls - Model is already connected to this pattern. + + Quantization + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> - AutomationPatternView - - double-click to open this pattern in automation editor - - + AutomationClipView + Open in Automation editor + Clear + Reset name Restaurar o nome + Change name Mudar o nome - %1 Connections - - - - Disconnect "%1" - - - + Set/clear record + Flip Vertically (Visible) + Flip Horizontally (Visible) - Model is already connected to this pattern. + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. AutomationTrack + Automation track - BBEditor + PatternEditor + Beat+Bassline Editor Mostrar/Agochar o Editor de ritmos e liña do baixo + Play/pause current beat/bassline (Space) + Stop playback of current beat/bassline (Space) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - - - - Click here to stop playing of current beat/bassline. - - - - Add beat/bassline - - - - Add automation-track - - - - Remove steps - Eliminar pasos - - - Add steps - Engadir pasos - - + Beat selector + Track and step actions - Clone Steps + + Add beat/bassline + + Clone beat/bassline clip + + + + Add sample-track + + + Add automation-track + + + + + Remove steps + Eliminar pasos + + + + Add steps + Engadir pasos + + + + Clone Steps + + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor + Reset name Restaurar o nome + Change name Mudar o nome - - Change color - - - - Reset color to default - - - BBTrack + PatternTrack + Beat/Bassline %1 + Clone of %1 @@ -656,26 +681,32 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións BassBoosterControlDialog + FREQ + Frequency: + GAIN + Gain: Ganancia: + RATIO + Ratio: @@ -683,14 +714,17 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións BassBoosterControls + Frequency + Gain Ganancia + Ratio @@ -698,111 +732,2344 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións BitcrushControlDialog + IN + OUT + + GAIN - Input Gain: + + Input gain: - NOIS + + NOISE - Input Noise: + + Input noise: - Output Gain: + + Output gain: + CLIP - Output Clip: + + Output clip: - Rate - Taxa - - - Rate Enabled + + Rate enabled - Enable samplerate-crushing + + Enable sample-rate crushing - Depth + + Depth enabled - Depth Enabled + + Enable bit-depth crushing - Enable bitdepth-crushing + + FREQ + Sample rate: - STD + + STEREO + Stereo difference: - Levels + + QUANT + Levels: - CaptionMenu + BitcrushControls + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + Sobre + + + + About text here + + + + + Extended licensing here + + + + + 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 + Licenza + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help &Axuda - Help (not available) + + toolBar + + + + + Disk + + + + + + Home + + + + + Transport + + + + + Playback Controls + + + + + Time Information + + + + + Frame: + + + + + 000'000'000 + + + + + Time: + Tempo: + + + + 00:00:00 + + + + + BBT: + + + + + 000|00|0000 + + + + + Settings + Configuración + + + + BPM + + + + + Use JACK Transport + + + + + Use Ableton Link + + + + + &New + &Novo + + + + Ctrl+N + + + + + &Open... + &Abrir... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + &Gardar + + + + Ctrl+S + + + + + Save &As... + Gr&avar como... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + &Saí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 + + + + + &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 + + + + + &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... + + + + + 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 Mostrar a interface gráfica + + + CarlaSettingsW - Click here to show or hide the graphical user interface (GUI) of Carla. + + Settings + Configuración + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + Son + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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: + 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: + Retención: + + + + 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 + Ganancia + + + + 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 + Ataque + + + + Release + Relaxamento + + + + Knee + + + + + Hold + Retención + + + + 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 Controlador %1 @@ -810,58 +3077,73 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións ControllerConnectionDialog + Connection Settings Configuración da conexión + MIDI CONTROLLER CONTROLADOR DE MIDI + Input channel Canle de entrada + CHANNEL CANLE + Input controller Controlador de entrada + CONTROLLER CONTROLADOR + + Auto Detect Detectar automaticamente + MIDI-devices to receive MIDI-events from Dispositivos MIDI dos que recibir acontecementos + USER CONTROLLER CONTROLADOR DO USUARIO + MAPPING FUNCTION FUNCIÓN DE ASIGNACIÓN + OK Aceptar + Cancel Cancelar + LMMS LMMS + Cycle Detected. Detectouse un ciclo. @@ -869,18 +3151,22 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións ControllerRackView + Controller Rack Bastidor de controladores + Add Engadir + Confirm Delete + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. @@ -888,116 +3174,158 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións ControllerView + Controls Controles - Controllers are able to automate the value of a knob, slider, and other controls. - Os controladores poden automatizar o valor dun botón xiratorio ou linear e outros controles. - - + Rename controller Renomear o controlador + Enter the new name for this controller Introduza o novo nome deste controlador + + LFO + LFO + + + &Remove this controller + Re&name this controller - - LFO - LFO - 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 2 Gain: + + Band 1 gain: - Band 3 Gain: + + Band 2 gain - Band 4 Gain: + + Band 2 gain: - Band 1 Mute + + Band 3 gain - Mute Band 1 + + Band 3 gain: - Band 2 Mute + + Band 4 gain - Mute Band 2 + + Band 4 gain: - Band 3 Mute + + Band 1 mute - Mute Band 3 + + Mute band 1 - Band 4 Mute + + Band 2 mute - Mute Band 4 + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 DelayControls - Delay Samples + + Delay samples + Feedback - Lfo Frequency + + LFO frequency - Lfo Amount + + LFO amount + Output gain @@ -1005,228 +3333,528 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións DelayControlsDialog - Lfo Amt - - - - Delay Time - - - - Feedback Amount - - - - Lfo - - - - Out Gain - - - - Gain - Ganancia - - + DELAY + + Delay time + + + + FDBK + + Feedback amount + + + + RATE + + LFO frequency + + + + AMNT + + + 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 + + + + + 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 - Filter 1 enabled - - - - Filter 2 enabled - - - - Click to enable/disable Filter 1 - - - - Click to enable/disable Filter 2 - - - + + FREQ + + Cutoff frequency Frecuencia de corte + + RESO RESO + + Resonance Resonancia + + GAIN + + Gain Ganancia + MIX + Mix + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + DualFilterControls + Filter 1 enabled + Filter 1 type - Cutoff 1 frequency + + Cutoff frequency 1 + Q/Resonance 1 + Gain 1 + Mix + Filter 2 enabled + Filter 2 type - Cutoff 2 frequency + + Cutoff frequency 2 + Q/Resonance 2 + Gain 2 - LowPass - Pasa-baixas + + + Low-pass + - HiPass - Pasa-altas + + + Hi-pass + - BandPass csg - Pasa-faixa csg + + + Band-pass csg + - BandPass czpg - Pasa-faixa czpg + + + Band-pass czpg + + + Notch Entalle - Allpass - Pasa-todo + + + All-pass + + + Moog Moog - 2x LowPass - 2x Pasa-baixas + + + 2x Low-pass + - RC LowPass 12dB - RC pasa-baixa 12dB + + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC pasa-faixa 12dB + + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC pasa-alta 12dB + + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC pasa-baixa 24dB + + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC pasa-faixa 24dB + + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC pasa-alta 24dB + + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filtro de formante vocal + + + Vocal Formant + + + 2x Moog - SV LowPass + + + SV Low-pass - SV BandPass + + + SV Band-pass - SV HighPass + + + SV High-pass + + SV Notch + + Fast Formant + + Tripole @@ -1234,41 +3862,55 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións Editor + + Transport controls + + + + Play (Space) + Stop (Space) + Record + Record while playing - Transport controls + + Toggle Step Recording Effect + Effect enabled Efecto activado + Wet/Dry mix Mestura húmida/seca + Gate Porta + Decay Decaemento @@ -1276,6 +3918,7 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións EffectChain + Effects enabled Efectos activados @@ -1283,10 +3926,12 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións EffectRackView + EFFECTS CHAIN CADEA DE EFECTOS + Add effect Engadir un efecto @@ -1294,22 +3939,28 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións EffectSelectDialog + Add effect Engadir un efecto + + Name Nome + Type Tipo + Description Descrición + Author @@ -1317,90 +3968,57 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións EffectView - Toggles the effect on or off. - Conmuta a activación do efecto. - - + On/Off Activar/Desactivar + W/D H/S + Wet Level: Nivel de humidade: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - O botón Húmido/Seco indica a relación entre o sinal de entrada e o sinal de efecto que forma a saída. - - + DECAY DECAE + Time: Tempo: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - O botón Decaemento controla cantos búferes de silencio han de pasar antes de que o engadido pare de procesar. Valores máis pequenos reducen o esforzo da CPU a risco de recortar a cola nos efectos de demora e reverberación. - - + GATE PORTA + Gate: Porta: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - O botón Porta controla o nivel do sinal que se considere como «silencio» mentres se decide cando parar de procesar os sinais. - - + Controls Controles - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Os engadidos de efectos funcionan como unha serie encadeada de efectos na que o sinal se procesa desde arriba para abaixo. - -O interruptor Activar/Desactivar permite omitir un engadido dado en calquera momento. - -O botón Húmido/Seco controla o balance entre o sinal de entrada eo sinal producido que é a saída resultante do efecto. A entrada da etapa é a saída da etapa anterior. Polo tanto, o sinal «seco» dos efectos de abaixo na cadea contén todos os efectos previos. - -O botón Decaemento controla como se continúa a procesar o sinal despois de relaxar as notas. O efecto para o procesamento dos sinais cando o volume baixa por debaixo dun limiar dado durante un tempo dado. Este botón indica o «tempo dado». Tempos maiores requiren máis CPU, polo que este número debería ser baixo para a maioría dos efectos. Haino que subir para os efectos que producen períodos de silencio longos, como por exemplo as demoras. - -O botón Porta controla o «limiar dado» do apagado automático do efecto. O reloxo do «tempo dado» comeza así que o nivel do sinal procesado cae por debaixo do nivel indicado con este botón. - -O botón Controles abre un diálogo para editar os parámetros do efecto. - -Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar a orden na que se procesan os efectos ou eliminar un efecto de vez. - - + Move &up S&ubir + Move &down &Baixar + &Remove this plugin Elimina&r este engadido @@ -1408,408 +4026,409 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar EnvelopeAndLfoParameters - Predelay - Tempo de reverberación + + Env pre-delay + - Attack - Ataque + + Env attack + - Hold - Retención + + Env hold + - Decay - Decaemento + + Env decay + - Sustain - Sustentación + + Env sustain + - Release - Relaxamento + + Env release + - Modulation - Modulación + + Env mod amount + - LFO Predelay - Tempo de reverberación do LFO + + LFO pre-delay + - LFO Attack - Ataque do LFO + + LFO attack + - LFO speed - Velocidade do LFO + + LFO frequency + - LFO Modulation - Modulación do LFO + + LFO mod amount + - LFO Wave Shape - Forma da onda do LFO + + LFO wave shape + - Freq x 100 - Freq x 100 + + LFO frequency x 100 + - Modulate Env-Amount - Modular a cantidade de env + + Modulate env amount + EnvelopeAndLfoView + + DEL - DEL + TMP REV - Predelay: - Tempo de reverberación: - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Empregue este botón para indicar o tempo de reverberación desta envolvente. Canto maior for este valor maior será o intervalo até que comece a envolvente en si. + + + Pre-delay: + + + ATT ATAQ + + Attack: Ataque: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Empregue este botón para indicar o tempo de ataque da envolvente escollida. Canto maior for o valor máis tempo lle levará á envolvente aumentar até o nivel de ataque. Escolla un valor pequeno para instrumentos como os pianos e un valor grande para as cordas. - - + HOLD RETEN + Hold: Retención: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Empregue este botón para indicar o tempo de retención da envolvente escollida. Canto maior for este valor máis tempo mantén a envolvente o nivel de ataque antes de comezar a diminuír até o nivel de sustentación. - - + DEC DEC + Decay: Decaemento: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Empregue este botón para indicar o tempo de decaemento da envolvente escollida. Canto maior for este valor máis tempo lle levará á envolvente para diminuír desde o nivel de ataque até o nivel de sustentación. Escolla un valor pequenos para instrumentos como o piano. - - + SUST SUST + Sustain: Sustentación: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Empregue este botón para indicar o nivel de sustentación da envolvente escollida. Canto maior for este valor máis alto é o nivel no que fica a envolvente antes de baixar até cero. - - + REL + Release: Relaxamento: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Empregue este botón para indicar o tempo de relaxamento da envolvente escollida. Canto maior for este valor máis tempo lle leva diminuír desde o nivel de sustentación até cero. Escolla un valor grande para instrumentos como as cordas. - - + + AMT - AMT + CANTIDADE + + Modulation amount: Cantidade de modulación: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Empregue este botón para indicar a cantidade de modulación da envolvente escollida. Canto maior for este valor maior máis se verá influenciado o tamaño correspondente (p.ex. o volume ou a frecuencia de corte) por esta envolvente. - - - LFO predelay: - Tempo de reverberación do LFO: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Empregue este botón para indicar o tempo de reverberación deste LFO. Canto maior for este valor, maior será o intervalo até que o LFO comece a oscilar. - - - LFO- attack: - Ataque do LFO: - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Empregue este botón para indicar o tempo de ataque do LFO escollido. Canto maior for este valor máis tempo lle levará ao LFO para aumentar a súa amplitude até o máximo. - - + SPD SPD - LFO speed: - Velocidade do LFO: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Empregue este botón para indicar a velocidade do LFO escollido. Canto maior for este valor máis rápido oscila o LFO e máis rápido é o efecto. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Empregue este botón para indicar a cantidade de modulación do LFO escollido. Canto maior for este valor máis se verá influenciado o tamaño escollido (p.ex. o volume ou a frecuencia de corte) por este LFO. - - - Click here for a sine-wave. - Prema aquí para unha onda senoidal. - - - Click here for a triangle-wave. - Prema aquí para unha onda triangular. - - - Click here for a saw-wave for current. - Prema aquí para unha onda de dente de serra. - - - Click here for a square-wave. - Prema aquí para unha onda cadrada. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Prema aquí para unha onda definida polo usuario. Posteriormente, arrastre un ficheiro de mostra correspondente sobre o gráfico de LFO. + + Frequency: + + FREQ x 100 FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Prema aquí se desexa multiplicar por 100 a frecuencia deste LFO. + + Multiply LFO frequency by 100 + - multiply LFO-frequency by 100 - multiplicar a frecuencia de LFO por 100 + + MODULATE ENV AMOUNT + - MODULATE ENV-AMOUNT - MODULAR CANT. ENVO - - - Click here to make the envelope-amount controlled by this LFO. - Prema aquí para facer que a cantidade de envolvente sexa controlada por este LFO. - - - control envelope-amount by this LFO - controlar a cantidade de envolvente con este LFO + + Control envelope amount by this LFO + + ms/LFO: + Hint Suxestión - Drag a sample from somewhere and drop it in this window. - Arrastre un exemplo doutro sitio e sólteo sobre esta xanela. - - - Click here for random wave. + + Drag and drop a sample into this window. EqControls + Input gain + Output gain - Low shelf gain + + Low-shelf gain + Peak 1 gain + Peak 2 gain + Peak 3 gain + Peak 4 gain - High Shelf gain + + High-shelf gain + HP res - Low Shelf res + + Low-shelf res + Peak 1 BW + Peak 2 BW + Peak 3 BW + Peak 4 BW - High Shelf res + + High-shelf res + LP res + HP freq - Low Shelf freq + + Low-shelf freq + Peak 1 freq + Peak 2 freq + Peak 3 freq + Peak 4 freq - High shelf freq + + High-shelf freq + LP freq + HP active - Low shelf active + + Low-shelf active + Peak 1 active + Peak 2 active + Peak 3 active + Peak 4 active - High shelf active + + High-shelf active + LP active + LP 12 + LP 24 + LP 48 + HP 12 + HP 24 + HP 48 - low pass type + + Low-pass type - high pass type + + High-pass type + Analyse IN + Analyse OUT @@ -1817,85 +4436,108 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar EqControlsDialog + HP - Low Shelf + + Low-shelf + Peak 1 + Peak 2 + Peak 3 + Peak 4 - High Shelf + + High-shelf + LP - In Gain + + Input gain + + + Gain Ganancia - Out Gain + + Output gain + Bandwidth: + + Octave + + + + Resonance : + Frequency: - lp grp + + LP group - hp grp - - - - Octave + + HP group EqHandle + Reso: + BW: + + Freq: @@ -1903,174 +4545,271 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar ExportProjectDialog + Export project Exportar o proxecto - Output - Saída - - - File format: - Formato de ficheiro: - - - Samplerate: - Taxa de mostraxe: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Taxa de bits: - - - 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 - - - Depth: - Profundidade: - - - 16 Bit Integer - Enteiro de 16 bits - - - 32 Bit Float - Vírgula flutuante de 32 bits - - - Please note that not all of the parameters above apply for all file formats. - Teña en conta que non todos os parámetros de enriba se poden aplicar a todos os formatos de ficheiro. - - - Quality settings - Configuración da calidade - - - Interpolation: - Interpolación: - - - Zero Order Hold - Retención de orde cero - - - Sinc Fastest - Whittaker–Shannon máis rápida - - - Sinc Medium (recommended) - Whittaker–Shannon media (recomendada) - - - Sinc Best (very slow!) - Whittaker–Shannon mellor (moi lenta!) - - - Oversampling (use with care!): - Sobresampleado (usar con coidado!): - - - 1x (None) - 1x (Ningún) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Comezar - - - Cancel - Cancelar - - - Export as loop (remove end silence) + + Export as loop (remove extra bar) + Export between loop markers + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + Formato de ficheiro: + + + + 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: + Taxa de bits: + + + + 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 + + + + + Quality settings + Configuración da calidade + + + + Interpolation: + Interpolación: + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + Oversampling: + + + + + 1x (None) + 1x (Ningún) + + + + 2x + 2x + + + + 4x + 4x + + + + 8x + 8x + + + + Start + Comezar + + + + Cancel + Cancelar + + + Could not open file Non foi posíbel abrir o ficheiro + + 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% - - 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! - - Fader + + Set value + + + + Please enter a new value between %1 and %2: @@ -2078,72 +4817,133 @@ Please make sure you have write permission to the file and the directory contain FileBrowser + + User content + + + + + Factory content + + + + Browser + + + Search + + + + + Refresh list + + FileBrowserTreeWidget + Send to active instrument-track - Open in new instrument-track/B+B Editor + + Open containing folder + + Song Editor + Mostrar/Agochar o editor de cancións + + + + 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... - --- Factory files --- - - - - Open in new instrument-track/Song Editor - - - + Error - does not appear to be a valid + + %1 does not appear to be a valid %2 file - file + + --- Factory files --- FlangerControls - Delay Samples + + Delay samples - Lfo Frequency + + LFO frequency + Seconds + + Stereo phase + + + + Regen + Noise Ruído + Invert @@ -2151,128 +4951,516 @@ Please make sure you have write permission to the file and the directory contain FlangerControlsDialog - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - + DELAY + + Delay time: + + + + RATE - Rate: + + Period: + AMNT + Amount: + + PHASE + + + + + Phase: + + + + FDBK + + Feedback amount: + + + + NOISE + + White noise amount: + + + + Invert - FxLine + FreeBoyInstrument + + Sweep time + Tempo da varredura + + + + Sweep direction + Dirección da varredura + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + Volume da canle 1 + + + + + + Volume sweep direction + Dirección da varredura do volume + + + + + + Length of each step in sweep + Lonxitude de cada paso en varredura + + + + Channel 2 volume + Volume da canle 2 + + + + Channel 3 volume + Volume da canle 3 + + + + Channel 4 volume + Volume da canle 4 + + + + Shift Register width + Cambiar a largura do rexistro + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + Canle 1 a SO1 (Esquerda) + + + + Channel 2 to SO2 (Left) + Canle 2 a SO2 (Esquerda) + + + + Channel 3 to SO2 (Left) + Canle 3 a SO2 (Esquerda) + + + + Channel 4 to SO2 (Left) + Canle 4 a SO2 (Esquerda) + + + + Channel 1 to SO1 (Right) + Canle 1 a SO1 (Dereita) + + + + Channel 2 to SO1 (Right) + Canle 2 a SO1 (Dereita) + + + + Channel 3 to SO1 (Right) + Canle 3 a SO1 (Dereita) + + + + Channel 4 to SO1 (Right) + Canle 4 a SO1 (Dereita) + + + + Treble + Agudos + + + + Bass + Graves + + + + FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + Tempo da varredura + + + + 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: + Lonxitude de cada paso en varredura: + + + + + + Length of each step in sweep + Lonxitude de cada paso en 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: + Agudos: + + + + Treble + Agudos + + + + Bass: + Graves: + + + + Bass + Graves + + + + Sweep direction + Dirección da varredura + + + + + + + + Volume sweep direction + Dirección da varredura do volume + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + Canle 1 a SO1 (Dereita) + + + + Channel 2 to SO1 (Right) + Canle 2 a SO1 (Dereita) + + + + Channel 3 to SO1 (Right) + Canle 3 a SO1 (Dereita) + + + + Channel 4 to SO1 (Right) + Canle 4 a SO1 (Dereita) + + + + Channel 1 to SO2 (Left) + Canle 1 a SO1 (Esquerda) + + + + Channel 2 to SO2 (Left) + Canle 2 a SO2 (Esquerda) + + + + Channel 3 to SO2 (Left) + Canle 3 a SO2 (Esquerda) + + + + Channel 4 to SO2 (Left) + Canle 4 a SO2 (Esquerda) + + + + Wave pattern graph + + + + + MixerLine + + Channel send amount - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - + Move &left + Move &right + Rename &channel + R&emove channel + Remove &unused channels + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + Master Global - FX %1 + + + + Channel %1 Efecto %1 - - - FxMixerView - FX-Mixer - Mesturador de efectos especiais - - - FX Fader %1 - + + Volume + Volume + Mute - Mute this FX channel - - - + Solo - - Solo FX channel - - - FxRoute + MixerView + + Mixer + Mesturador de efectos especiais + + + + Fader %1 + + + + + Mute + + + + + Mute this mixer channel + + + + + Solo + + + + + Solo mixer channel + + + + + MixerRoute + + + Amount to send from channel %1 to channel %2 @@ -2280,14 +5468,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument + Bank Banco + Patch Parche + Gain Ganancia @@ -2295,46 +5486,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - Open other GIG file - - - - Click here to open another GIG file - - - - Choose the patch - Escoller o parche - - - Click here to change which patch of the GIG file to use - - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - - - - Gain - Ganancia - - - Factor to multiply samples by - - - + + Open GIG file + + Choose patch + + + + + Gain: + Ganancia: + + + GIG Files (*.gig) @@ -2342,42 +5510,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 piano roll + Preparing automation editor @@ -2385,650 +5563,798 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio + Arpeggio + Arpeggio type + Arpeggio range - Arpeggio time + + Note repeats - Arpeggio gate - - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - - - - Free - - - - Sort - - - - Sync - Sincronizar - - - Down and up + + Cycle steps + Skip rate + Miss rate - Cycle steps + + Arpeggio time + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + Sincronizar + InstrumentFunctionArpeggioView + ARPEGGIO - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - + RANGE INTERVALO + Arpeggio range: + octave(s) oitava(s) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. + + REP - TIME + + Note repeats: - Arpeggio time: - - - - ms - - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - - - - GATE - PORTA - - - Arpeggio gate: - - - - % - - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - Chord: - - - - Direction: - - - - Mode: - - - - SKIP - - - - Skip rate: - - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - MISS - - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. + + time(s) + CYCLE + Cycle notes: + note(s) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + PORTA + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: InstrumentFunctionNoteStacking + octave oitava + + Major Maior + Majb5 Majb5 + minor menor + minb5 minb5 + sus2 sus2 + sus4 sus4 + aug aum + 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 + 9b5 9b5 + 9#11 + 9b13 9b13 + Maj9 + Maj9sus4 + Maj9#5 + Maj9#11 + m9 m9 + madd9 + m9b5 + m9-Maj7 + 11 + 11b9 11b9 + Maj11 + m11 m11 + m-Maj11 + 13 + 13#9 + 13b9 13b9 + 13b5b9 13b5b9 + Maj13 + m13 m13 + m-Maj13 + Harmonic minor Harmónico menor + Melodic minor Melódico menor + Whole tone Un ton + Diminished Diminuído + Major pentatonic Pentatónico maior + Minor pentatonic Pentatónico menor + Jap in sen + Major bebop Maior de bebop + Dominant bebop Dominante de bebop + Blues Blues + Arabic Árabe + Enigmatic Enigmático + Neopolitan Napolitano + Neopolitan minor Napolitano menor + Hungarian minor Húngaro menor + Dorian Dorio - Phrygolydian - Frixio-lidio + + Phrygian + + Lydian Lidio + Mixolydian Mixolidio + Aeolian Eolio + Locrian Locrio - Chords - Acordes - - - Chord type - Tipo de acorde - - - Chord range - Intervalo do acorde - - + Minor + Chromatic + Half-Whole Diminished + 5 + Phrygian dominant + Persian + + + Chords + Acordes + + + + Chord type + Tipo de acorde + + + + Chord range + Intervalo do acorde + InstrumentFunctionNoteStackingView - RANGE - INTERVALO - - - Chord range: - Intervalo do acorde: - - - octave(s) - oitava(s) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Empregue este botón para indicar a tesitura do acorde en oitavas. O acorde escollido tocarase dentro do número indicado de oitavas. - - + STACKING + Chord: + + + RANGE + INTERVALO + + + + Chord range: + Intervalo do acorde: + + + + octave(s) + oitava(s) + InstrumentMidiIOView + ENABLE MIDI INPUT ACTIVAR A ENTRADA DE MIDI - CHANNEL - CANLE - - - VELOCITY - VELOCIDADE - - + ENABLE MIDI OUTPUT ACTIVAR A SAÍDA DE MIDI - PROGRAM - PROGRAMA + + + 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 Dispositivos MIDI dos que recibir acontecementos MIDI + MIDI devices to send MIDI events to Dispositivos MIDI aos que enviar acontecementos MIDI - NOTE - - - + CUSTOM BASE VELOCITY - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + BASE VELOCITY @@ -3036,137 +6362,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView + MASTER PITCH - Enables the use of Master Pitch + + Enables the use of master pitch InstrumentSoundShaping + VOLUME VOLUME + Volume Volume + CUTOFF FREC. CORTE + + Cutoff frequency Frecuencia de corte + RESO RESO + Resonance Resonancia + Envelopes/LFOs Envolventes/LFO + Filter type Tipo de filtro + Q/Resonance Q/Resonancia - LowPass - Pasa-baixas + + Low-pass + - HiPass - Pasa-altas + + Hi-pass + - BandPass csg - Pasa-faixa csg + + Band-pass csg + - BandPass czpg - Pasa-faixa czpg + + Band-pass czpg + + Notch Entalle - Allpass - Pasa-todo + + All-pass + + Moog Moog - 2x LowPass - 2x Pasa-baixas + + 2x Low-pass + - RC LowPass 12dB - RC pasa-baixa 12dB + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC pasa-faixa 12dB + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC pasa-alta 12dB + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC pasa-baixa 24dB + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC pasa-faixa 24dB + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC pasa-alta 24dB + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filtro de formante vocal + + Vocal Formant + + 2x Moog - SV LowPass + + SV Low-pass - SV BandPass + + SV Band-pass - SV HighPass + + SV High-pass + SV Notch + Fast Formant + Tripole @@ -3174,50 +6534,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView + TARGET DESTINO - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Estas lapelas conteñen envolventes. Son moi importantes para modificar un son dado que son case sempre necesarias para as sínteses subtractivas. Por exemplo, se se ten unha envolvente de volume pódese indicar cando se desexa que o son teña un volume determinado. Se se desexan crear cordas brandas o son ten que entrar e saír moi suavemente. Isto pódese facer indicando tempos de ataque e relaxamento longos. É o mesmo para outros destinos de envolvente, como panning, frecuencia de corte do filtro empregado e así por diante. Fedelle! Seguro que pode crear sons interesantes a partir dunha onde de dente de serra con unhas imples envolventes...! - - + FILTER FILTRO - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Aquí pódese escoller o filtro incorporado que se desexe empregar para esta pista de instrumento. Os filtros son moi importantes para cambiar as características dun son. - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Empregue este botón para indicar a frecuencia de corte do filtro escollido. A frecuencia de corte indica a frecuencia á que un filtro corta o sinal. Por exemplo, un filtro pasa-baixas corta todas as frecuencias que ultrapasen a frecuencia de corte. Un filtro pasa-altas corta todas as frecuencias por debaixo da frecuencia de corte, e así por diante... - - - RESO - RESO - - - Resonance: - Resonancia: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Empregue este botón para indicar a Q/Resonancia do filtro escollido. A Q/Resonancia indícalle ao filtro canto se desexa amplificar as frecuencias próximas á de corte. - - + FREQ - cutoff frequency: + + Cutoff frequency: + Frecuencia de corte: + + + + Hz + Hz + + + + Q/RESO + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. @@ -3225,211 +6577,337 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack + + unnamed_track pista_sen_nome - Volume - Volume - - - Panning - Panorámica - - - Pitch - Altura - - - FX channel - Canle de efectos especiais - - - Default preset - Predefinido - - - With this knob you can set the volume of the opened channel. - - - + Base note Nota base + + First note + + + + + Last note + Última nota + + + + Volume + Volume + + + + Panning + Panorámica + + + + Pitch + Altura + + + Pitch range - Master Pitch + + Mixer channel + Canle de efectos especiais + + + + Master pitch + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + Predefinido + InstrumentTrackView + Volume Volume + Volume: Volume: + VOL VOL + Panning Panorámica + Panning: Panorámica: + PAN PAN + MIDI MIDI + Input Entrada + Output Saída - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 InstrumentTrackWindow + GENERAL SETTINGS CONFIGURACIÓN XERAL - Instrument volume - Volume do instrumento + + Volume + Volume + Volume: Volume: + VOL VOL + Panning Panorámica + Panning: Panorámica: + PAN PAN + Pitch Altura + Pitch: Altura: + cents cents + PITCH ALTURA - FX channel - Canlde de FX - - - ENV/LFO - ENV/LFO - - - FUNC - FUNC - - - FX - FX - - - MIDI - MIDI - - - Save preset - Gardar as predefinicións - - - XML preset file (*.xpf) - Ficheiro de predefinicións en XML (*.xpf) - - - PLUGIN - ENGADIDO - - + Pitch range (semitones) + RANGE INTERVALO + + Mixer channel + Canlde de FX + + + + CHANNEL + FX + + + Save current instrument track settings in a preset file - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - - - - MISC - - - - Use these controls to view and edit the next/previous track in the song editor. - - - + SAVE + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + MIDI + + + + Miscellaneous + + + + + Save preset + Gardar as predefinicións + + + + XML preset file (*.xpf) + Ficheiro de predefinicións en 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 + + + + + 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: @@ -3437,6 +6915,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControl + Link channels Ligar canles @@ -3444,10 +6923,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlDialog + Link Channels Ligar canles + Channel Canle @@ -3455,28 +6936,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView + Link channels Ligar canles + Value: Valor: - - Sorry, no help available. - Desculpe, non hai axuda dispoñíbel. - LadspaEffect + Unknown LADSPA plugin %1 requested. Solicitouse un engadido de LADSPA, %1, que é descoñecido. + + LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + LcdSpinBox + + Set value + + + + Please enter a new value between %1 and %2: @@ -3484,18 +6983,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri LeftRightNav + + + Previous + + + Next + Previous (%1) + Next (%1) @@ -3503,30 +7010,37 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoController + LFO Controller Controlador de LFO + Base value Valor base + Oscillator speed Velocidade do oscilador + Oscillator amount Cantidade de oscilador + Oscillator phase Fase do oscilador + Oscillator waveform Forma de onda do oscilador + Frequency Multiplier Multiplicador de frecuencia @@ -3534,114 +7048,131 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoControllerDialog + LFO LFO - LFO Controller - Controlador de LFO - - + BASE BASE - Base amount: - Cantidade base: + + Base: + - todo - por facer + + FREQ + - SPD - SPD + + LFO frequency: + - LFO-speed: - Velocidade de SPD: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Empregue este botón para indicar a velocidade do oscilador de frecuencia baixa (LFO). Canto maior sexa este valor, máis rápido oscila o LFO e máis rápido resulta o efecto. + + AMNT + + Modulation amount: Cantidade de modulación: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Empregue este botón para indicar a cantidade de modulación do LFO. Canto maior for este valor, máis se verá influenciado o control conectado (p.ex. volume ou frecuencia de corte) polo LFO. - - + PHS FASE + Phase offset: Desprazamento da fase: - degrees - graos + + degrees + - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Con este botón pódese indicar o desprazamento da fase do oscilador de frecuencia baixa (LFO). Iso significa que se pode mover o punto dunha oscilación no que o oscilador comeza a oscilar. Se, por exemplo, se ten unha onda senoidal e un desprazamento de fase de 180 graos, a onda baixo primeiro. Cunha onda cadrada é o mesmo. + + Sine wave + Onda senoidal - Click here for a sine-wave. - Prema aquí para unha onda senoidal. + + Triangle wave + Onda triangular - Click here for a triangle-wave. - Prema aquí para unha onda triangular. + + Saw wave + Onda de dente de serra - Click here for a saw-wave. - Prema aquí para unha onda de dente de serra. + + Square wave + Onda cadrada - Click here for a square-wave. - Prema aquí para unha onda cadrada. + + Moog saw wave + - Click here for an exponential wave. - Prema aquí para unha onda exponencial. + + Exponential wave + - Click here for white-noise. - Prema aquí para ruído branco. + + White noise + - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Click here for a moog saw-wave. + + Mutliply modulation frequency by 1 - AMNT + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 - LmmsCore + Engine + Generating wavetables + Initializing data structures + Opening audio and midi devices + Launching mixer threads @@ -3649,404 +7180,509 @@ Double click to pick a file. MainWindow - Could not save config-file - Non foi posíbel gravar o ficheiro de configuración + + Configuration file + - Could not save configuration file %1. You're probably not permitted to write to this file. -Please make sure you have write-access to the file and try again. - Non foi posíbel gravar o ficheiro de configuración %1. Probabelmente non se lle permita escribir neste ficheiro. Asegúrese de dispor de acceso para escribir neste ficheiro e ténteo de novo. + + Error while parsing configuration file at line %1:%2: %3 + + + Could not open file + Non foi posíbel abrir o ficheiro + + + + 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 + + + + + &File + + + + &New &Novo + &Open... &Abrir... + + Loading background picture + + + + &Save &Gardar + Save &As... Gr&avar como... + + Save as New &Version + + + + + Save as default template + + + + Import... Importar... + E&xport... E&xportar... + + E&xport Tracks... + + + + + Export &MIDI... + + + + &Quit &Saír + &Edit &Editar + + Undo + + + + + Redo + + + + Settings Configuración + + &View + + + + &Tools Ferramen&tas + &Help &Axuda + + Online Help + + + + Help Axuda - What's this? - Que é isto? - - + About Sobre + Create new project Crear un proxecto novo + Create new project from template Crear un proxecto novo a partir dun modelo + Open existing project Abrir un projecto existente + Recently opened projects Proxecto aberto recentemente + Save current project Gravar este proxecto + Export current project Exportar este proxecto + + Metronome + + + + + Song Editor Mostrar/Agochar o editor de cancións - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Premendo este botón pódese mostrar ou agochar o Editor de Cancións. Coa axuda do Editor de Cancións pódese editar listas de reprodución e indicar cando tocar unha pista. Tamén se poden inserir e mover mostras (p.ex. mostras de rap) directamente na lista de reprodución. - - + + Beat+Bassline Editor Mostrar/Agochar o Editor de ritmos e liña do baixo - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Premendo este botón pódese mostrar ou agochar o Editor de ritmos e liña do baixo. Este Editor de ritmos e liña do baixo é necesario para crear ritmos e para abrir, engadir e eliminar canles, así como para recortar, copiar e pegar ritmos e padróns de liñas do baixo e para outras cousas semellantes. - - + + Piano Roll Mostrar/Agochar a pianola - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Prema aquí para mostrar ou agochar a pianola. Coa axuda da pianola pódense editar melodías facilmente. - - + + Automation Editor Mostrar/Agochar o Editor de automatización - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Prema aquí para mostrar ou agochar o Editor de automatización. Coa axuda do Editor de automatización pódense editar os valores dinámicos facilmente. - - - FX Mixer + + + Mixer Mostrar/Agochar os Mesturador de efectos especiais - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Prema aquí para mostrar ou agochar o Mesturador de efectos especiais. O Mesturador de efectos especiais é unha ferramenta potente para xestionar os efectos das cancións. Pódense inserir efectos nas diferentes canles de efectos. + + Show/hide controller rack + - Project Notes - Mostrar/Agochar as notas do proxecto - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Prema aquí para mostrar ou agochar a xanela coas notas do proxecto. Nela pódense apuntar as notas do proxecto. - - - Controller Rack - Mostrar/Agochar o bastidor de controladores + + Show/hide project notes + + Untitled Sen título + + 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 Proxecto non gardado + The current project was modified since last saving. Do you want to save it now? Este proxecto foi modificado desde que se gardou a última vez. Desexa gardalo agora? + + 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 Non hai axuda dispoñíbel + Currently there's no help available in LMMS. Please visit http://lmms.sf.net/wiki for documentation on LMMS. De momento non hai axuda dispoñíbel no LMMS. Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. - LMMS (*.mmp *.mmpz) - - - - Version %1 - - - - Configuration file - - - - Error while parsing configuration file at line %1:%2: %3 - - - - Volumes - - - - Undo - - - - Redo - - - - My Projects - - - - My Samples - - - - My Presets - - - - My Home - - - - My Computer - - - - &File - - - - &Recently Opened Projects - - - - Save as New &Version - - - - E&xport Tracks... - - - - Online Help - - - - What's This? - - - - Open Project - - - - Save Project - - - - 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. - - - - Ignore - - - - Launch LMMS as usual but with automatic backup disabled to prevent the present recover file from being overwritten. - - - - Discard - - - - Launch a default session and delete the restored files. This is not reversible. - - - - Preparing plugin browser - - - - Preparing file browsers - - - - Root directory - - - - Loading background artwork - - - - New from template - - - - Save as default template - - - - &View - - - - Toggle metronome - - - - Show/hide Song-Editor - - - - Show/hide Beat+Bassline Editor - - - - Show/hide Piano-Roll - - - - Show/hide Automation Editor - - - - Show/hide FX Mixer - - - - Show/hide project notes - - - - Show/hide controller rack - - - - Recover session. Please save your work! - - - - Automatic backup disabled. Remember to save your work! - - - - 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? - - - - LMMS Project - - - - LMMS Project Template - - - - Overwrite default template? - - - - This will overwrite your current default template. + + Controller Rack + Mostrar/Agochar o bastidor de controladores + + + + Project Notes + Mostrar/Agochar as notas do proxecto + + + + Fullscreen + Volume as dBFS + Smooth scroll + Enable note labels in piano roll - Save project template + + 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 + + Meter Numerator Numerador do compás + + Meter numerator + + + + + Meter Denominator Denominador do compás + + Meter denominator + + + + TIME SIG COMPÁS @@ -4054,21 +7690,44 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. MeterModel + Numerator Numerador + Denominator Denominador + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController + MIDI Controller Controlador de MIDI + unnamed_midi_controller controlador_de_midi_sen_nome @@ -4076,18 +7735,43 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. MidiImport + + Setup incomplete A configuración está incompleta - You do not have 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 se indicou unha fonte de son por omisión no diálogo de configuración (Editar->Configuración). En consecuencia, non se ha de reproducir ningún son unha vez importado este ficheiro de MIDI. Debería descargar unha fonte de son de General MIDI, indicala no diálogo de configuración e tentar de novo. + + 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. O LMMS non foi compilado para que admitise un reprodutor de SoundFont2, que se utiliza para engadir un son por omisión aos ficheiros de MIDI. En consecuencia, non se ha de reproducir ningún son unha vez importado este ficheiro de MIDI. + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + Numerador + + + + Denominator + Denominador + + + Track @@ -4095,541 +7779,911 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. MidiJack + JACK server down When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) O servidor de JACK non está a funcionar + 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 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 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 + &Editar + + + + &Quit + &Saír + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + MidiPort + Input channel Canle de entrada + Output channel Canle de saída + Input controller Controlador de entrada + Output controller Controlador de saída + Fixed input velocity Velocidade de entrada fixa + Fixed output velocity Velocidade de saída fixa - Output MIDI program - Programa MIDI de saída - - - Receive MIDI-events - Recibir acontecementos de MIDI - - - Send MIDI-events - Enviar acontecementos de MIDI - - + Fixed output note + + Output MIDI program + Programa MIDI de saída + + + Base velocity + + + Receive MIDI-events + Recibir acontecementos de MIDI + + + + Send MIDI-events + Enviar acontecementos de MIDI + MidiSetupWidget - DEVICE - DISPOSITIVO + + Device + MonstroInstrument - Osc 1 Volume + + Osc 1 volume - Osc 1 Panning + + Osc 1 panning - Osc 1 Coarse detune + + Osc 1 coarse detune - Osc 1 Fine detune left + + Osc 1 fine detune left - Osc 1 Fine detune right + + Osc 1 fine detune right - Osc 1 Stereo phase offset + + Osc 1 stereo phase offset - Osc 1 Pulse width + + Osc 1 pulse width - Osc 1 Sync send on rise + + Osc 1 sync send on rise - Osc 1 Sync send on fall + + Osc 1 sync send on fall - Osc 2 Volume + + Osc 2 volume - Osc 2 Panning + + Osc 2 panning - Osc 2 Coarse detune + + Osc 2 coarse detune - Osc 2 Fine detune left + + Osc 2 fine detune left - Osc 2 Fine detune right + + Osc 2 fine detune right - Osc 2 Stereo phase offset + + Osc 2 stereo phase offset - Osc 2 Waveform + + Osc 2 waveform - Osc 2 Sync Hard + + Osc 2 sync hard - Osc 2 Sync Reverse + + Osc 2 sync reverse - Osc 3 Volume + + Osc 3 volume - Osc 3 Panning + + Osc 3 panning - Osc 3 Coarse detune + + Osc 3 coarse detune + Osc 3 Stereo phase offset - Osc 3 Sub-oscillator mix + + Osc 3 sub-oscillator mix - Osc 3 Waveform 1 + + Osc 3 waveform 1 - Osc 3 Waveform 2 + + Osc 3 waveform 2 - Osc 3 Sync Hard + + Osc 3 sync hard - Osc 3 Sync Reverse + + Osc 3 Sync reverse - LFO 1 Waveform + + LFO 1 waveform - LFO 1 Attack + + LFO 1 attack - LFO 1 Rate + + LFO 1 rate - LFO 1 Phase + + LFO 1 phase - LFO 2 Waveform + + LFO 2 waveform - LFO 2 Attack + + LFO 2 attack - LFO 2 Rate + + LFO 2 rate - LFO 2 Phase + + LFO 2 phase - 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 - Osc2-3 modulation + + Osc 2+3 modulation + Selected view - Vol1-Env1 + + Osc 1 - Vol env 1 - Vol1-Env2 + + Osc 1 - Vol env 2 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 - Vol2-Env1 + + Osc 2 - Vol env 1 - Vol2-Env2 + + Osc 2 - Vol env 2 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 - Vol3-Env1 + + Osc 3 - Vol env 1 - Vol3-Env2 + + Osc 3 - Vol env 2 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 - Phs1-Env1 + + Osc 1 - Phs env 1 - Phs1-Env2 + + Osc 1 - Phs env 2 - Phs1-LFO1 + + Osc 1 - Phs LFO 1 - Phs1-LFO2 + + Osc 1 - Phs LFO 2 - Phs2-Env1 + + Osc 2 - Phs env 1 - Phs2-Env2 + + Osc 2 - Phs env 2 - Phs2-LFO1 + + Osc 2 - Phs LFO 1 - Phs2-LFO2 + + Osc 2 - Phs LFO 2 - Phs3-Env1 + + Osc 3 - Phs env 1 - Phs3-Env2 + + Osc 3 - Phs env 2 - Phs3-LFO1 + + Osc 3 - Phs LFO 1 - Phs3-LFO2 + + Osc 3 - Phs LFO 2 - Pit1-Env1 + + Osc 1 - Pit env 1 - Pit1-Env2 + + Osc 1 - Pit env 2 - Pit1-LFO1 + + Osc 1 - Pit LFO 1 - Pit1-LFO2 + + Osc 1 - Pit LFO 2 - Pit2-Env1 + + Osc 2 - Pit env 1 - Pit2-Env2 + + Osc 2 - Pit env 2 - Pit2-LFO1 + + Osc 2 - Pit LFO 1 - Pit2-LFO2 + + Osc 2 - Pit LFO 2 - Pit3-Env1 + + Osc 3 - Pit env 1 - Pit3-Env2 + + Osc 3 - Pit env 2 - Pit3-LFO1 + + Osc 3 - Pit LFO 1 - Pit3-LFO2 + + Osc 3 - Pit LFO 2 - PW1-Env1 + + Osc 1 - PW env 1 - PW1-Env2 + + Osc 1 - PW env 2 - PW1-LFO1 + + Osc 1 - PW LFO 1 - PW1-LFO2 + + Osc 1 - PW LFO 2 - Sub3-Env1 + + Osc 3 - Sub env 1 - Sub3-Env2 + + Osc 3 - Sub env 2 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 - Sub3-LFO2 + + 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 + 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 de dente de serra + Ramp wave + Square wave Onda cadrada + Moog saw wave + Abs. sine wave + Random + Random smooth @@ -4637,278 +8691,240 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. MonstroView + Operators view - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - + Matrix view - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - + + + Volume Volume + + + Panning Panorámica + + + Coarse detune + + + semitones - Finetune left + + + Fine tune left + + + + cents - Finetune right + + + 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 + + Pre-delay + + Hold Retención + + Decay Decaemento + + Sustain Sustentación + + 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 Cantidade de modulación @@ -4916,117 +8932,145 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator MultitapEchoControlDialog + Length + Step length: + Dry - Dry Gain: + + Dry gain: + Stages - Lowpass stages: + + Low-pass stages: + Swap inputs - Swap left and right input channel for reflections + + Swap left and right input channels for reflections NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune - Channel 1 Volume + + Channel 1 volume + Volume da canle 1 + + + + Channel 1 envelope length - Channel 1 Envelope length + + Channel 1 duty cycle - Channel 1 Duty cycle + + Channel 1 sweep amount - Channel 1 Sweep amount - - - - Channel 1 Sweep rate + + Channel 1 sweep rate + Channel 2 Coarse detune + Channel 2 Volume - Channel 2 Envelope length + + Channel 2 envelope length - Channel 2 Duty cycle + + Channel 2 duty cycle - Channel 2 Sweep amount + + Channel 2 sweep amount - Channel 2 Sweep rate + + Channel 2 sweep rate - Channel 3 Coarse detune + + Channel 3 coarse detune - Channel 3 Volume + + Channel 3 volume + Volume da canle 3 + + + + Channel 4 volume + Volume da canle 4 + + + + Channel 4 envelope length - Channel 4 Volume + + Channel 4 noise frequency - Channel 4 Envelope length - - - - Channel 4 Noise frequency - - - - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep + Master volume + Vibrato Vibrato @@ -5034,196 +9078,447 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator NesInstrumentView + + + + Volume 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 + + Master volume + Vibrato Vibrato + + OpulenzInstrument + + + Patch + Parche + + + + 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 + Ataque + + + + + Decay + Decaemento + + + + + Release + Relaxamento + + + + + Frequency multiplier + + + OscillatorObject - Osc %1 volume - Volume do oscilador %1 - - - Osc %1 panning - Panorámica do oscilador %1 - - - Osc %1 coarse detuning - Desafinación bruta do oscilador %1 - - - Osc %1 fine detuning left - Desafinación fina esquerda do oscilador %1 - - - Osc %1 fine detuning right - Desafinación fina dereita do oscilador %1 - - - Osc %1 phase-offset - Desprazamento da fase do oscilador %1 - - - Osc %1 stereo phase-detuning - Desafinación de fase en estéreo do oscilador %1 - - - Osc %1 wave shape - Forma da onda do oscilador %1 - - - Modulation type %1 - Tipo de modulación %1 - - + Osc %1 waveform Forma de onda do oscilador %1 + Osc %1 harmonic + + + + Osc %1 volume + Volume do oscilador %1 + + + + + Osc %1 panning + Panorámica do oscilador %1 + + + + + Osc %1 fine detuning left + Desafinación fina esquerda do oscilador %1 + + + + Osc %1 coarse detuning + Desafinación bruta do oscilador %1 + + + + Osc %1 fine detuning right + Desafinación fina dereita do oscilador %1 + + + + Osc %1 phase-offset + Desprazamento da fase do oscilador %1 + + + + Osc %1 stereo phase-detuning + Desafinación de fase en estéreo do oscilador %1 + + + + Osc %1 wave shape + Forma da onda do oscilador %1 + + + + Modulation type %1 + Tipo de modulación %1 + + + + Oscilloscope + + + Oscilloscope + + + + + Click to enable + + PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank Banco + Program selector + Patch Parche + Name Nome + OK Aceptar + Cancel Cancelar @@ -5231,85 +9526,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - Abrir outro parche - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Prema aquí para abrir outro ficheiro de parche. A configuración dos bucles e a afinación non se restauran. + + Open patch + + Loop Bucle + Loop mode Modo de bucle - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Aquí pódese alternar entre modos de bucle. Cando está activado, o PatMan emprega a información sobre o bucle dispoñíbel no ficheiro. - - + Tune Afinación + Tune mode Modo de afinación - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Aquí pódese alternar entre modos de afinación. Cando está activado o Patman afina a mostra para que coincida coa frecuencia da nota. - - + No file selected Non escolleu ningún ficheiro + Open patch file Abrir un ficheiro de parches + Patch-Files (*.pat) Ficheiros de parches (*.pat) - PatternView + MidiClipView + Open in piano-roll Abrir na pianola + + Set as ghost in piano-roll + + + + Clear all notes Limpar todas as notas + Reset name Restaurar o nome + Change name Mudar o nome + Add steps Engadir pasos + Remove steps Eliminar pasos - use mouse wheel to set velocity of a step - - - - double-click to open in Piano Roll - - - + Clone Steps @@ -5317,14 +9612,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakController + Peak Controller Controlador de picos + 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. @@ -5332,10 +9630,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK PICO + LFO Controller Controlador do LFO @@ -5343,327 +9643,519 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog + BASE BASE - Base amount: - Cantidade base: - - - Modulation amount: - Cantidade de modulación: - - - Attack: - Ataque: - - - Release: - Relaxamento: + + Base: + + AMNT + + Modulation amount: + Cantidade de modulación: + + + MULT - Amount Multiplicator: + + Amount multiplicator: + ATCK + + Attack: + Ataque: + + + DCAY + + Release: + Relaxamento: + + + + TRSH + + + + Treshold: - TRSH + + Mute output + Silenciar a saída + + + + Absolute value PeakControllerEffectControls + Base value Valor base + Modulation amount Cantidade de modulación - Mute output - Silenciar a saída - - + Attack Ataque + Release Relaxamento - Abs Value - - - - Amount Multiplicator - - - + Treshold + + + Mute output + Silenciar a saída + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - Abra un padrón facendo duplo clic nel! - - - Last note - Última nota - - - Note lock - Bloqueo de notas - - + Note Velocity Volume das notas + Note Panning Panormámica das notas + Mark/unmark current semitone - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - - Velocity: %1% - - - - Panning: %1% left - - - - Panning: %1% right - - - - Panning: center - - - - Please enter a new value between %1 and %2: - - - + Mark/unmark all corresponding octave semitones + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + Select all notes on this key + + + Note lock + Bloqueo de notas + + + + Last note + Última nota + + + + 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! + Abra un padrón facendo duplo clic nel! + + + + + Please enter a new value between %1 and %2: + + PianoRollWindow - Play/pause current pattern (Space) + + 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 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Detune mode (Shift+T) - - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - - - - Copy selected notes (%1+C) - - - - Paste notes from clipboard (%1+V) - - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. + + 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 pattern + + + Piano-Roll - no clip - Quantize + + + 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 Non se atopou o engadido + The plugin "%1" wasn't found or could not be loaded! Reason: "%2" Non se atopou o engadido «%1» ou non foi posíbel cargalo! Razón: «%2» + Error while loading plugin Produciuse un erro ao cargar o engadido + Failed to load plugin "%1"! Fallou a carga do engadido «%1»! @@ -5671,144 +10163,1146 @@ Razón: «%2» PluginBrowser + + Instrument Plugins + + + + Instrument browser + Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Instrument Plugins + + no description + sen descrición + + + + 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 + Sintetizador de táboa de ondas personalizábel + + + + 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 + Emulación da APU da GameBoy (TM) + + + + Player for GIG files + + + + + Filter for importing Hydrogen files into LMMS + + + + + Versatile drum synthesizer + + + + + List installed LADSPA plugins + Enumerar os engadidos de LADSPA instalados + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + engadido para empregar efectos de LADSPA arbitrarios no LMMS. + + + + Incomplete monophonic imitation TB-303 + Imitación monofónica incompleta 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 + Filtro para importar ficheiros MIDI ao 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 + Sintetizador aditivo para sons tipo órgano + + + + GUS-compatible patch instrument + Instrumento de parcheo compatíbel con GUS + + + + Plugin for controlling knobs with sound peaks + Engadido para controlar botóns con picos de son + + + + Reverb algorithm by Sean Costello + + + + + Player for SoundFont files + Reprodutor de ficheiros SoundFont + + + + LMMS port of sfxr + + + + + Emulation of the MOS6581 and MOS8580 SID. +This chip was used in the Commodore 64 computer. + Emulación dos SID MOS6581 e o MOS8580. +Este chip empregábase no computador Commodore 64. + + + + A graphical spectrum analyzer. + + + + + Plugin for enhancing stereo separation of a stereo input file + Engadido para mellorar a separación en estéreo dun ficheiro de entrada en estéreo + + + + Plugin for freely manipulating stereo output + Engadido para manipular libremente a saída en estéreo + + + + Tuneful things to bang on + Cousas melodiosas nas que bater + + + + Three powerful oscillators you can modulate in several ways + + + + + A stereo field visualizer. + + + + + VST-host for using VST(i)-plugins within LMMS + Hóspede de VST para empregar engadidos de VST(i) co LMMS + + + + Vibrating string modeler + Modelador de cordas vibrantes + + + + plugin for using arbitrary VST effects inside LMMS. + + + + + 4-oscillator modulatable wavetable synth + + + + + plugin for waveshaping + + + + + Mathematical expression parser + + + + + Embedded ZynAddSubFX + ZynAddSubFX incorporado + + + + PluginDatabaseW + + + Carla - Add New + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + AU + + + + + Sound Kits + + + + + Type + Tipo + + + + Effects + + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + Control + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Configuración + + + + 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: + Tipo: + + + + 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 + Activar/Desactivar + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - Project notes - - - - Put down your project notes here. + + Project Notes + Mostrar/Agochar as notas do proxecto + + + + 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... @@ -5816,720 +11310,1751 @@ Razón: «%2» ProjectRenderer - WAV-File (*.wav) - Ficheiro wav (*.wav) + + WAV (*.wav) + - Compressed OGG-File (*.ogg) - Ficheiro OGG comprimido (*.ogg) + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QObject + + + Reload Plugin + + + + + Show GUI + Mostrar a interface gráfica + + + + Help + Axuda QWidget + + + + Name: Nome: + + URI: + + + + + + Maker: Creador: + + + Copyright: Copyright: + + Requires Real Time: Require tempo real: + + + + + + Yes Si + + + + + + No Non + + Real Time Capable: Capacidade de tempo real: + + In Place Broken: En sitio rachado: + + Channels In: Canles de entrada: + + Channels Out: Canles de saída: + + File: %1 + + + + File: Ficheiro: + + + RecentProjectsMenu - File: %1 + + &Recently Opened Projects RenameDialog + Rename... + + ReverbSCControlDialog + + + Input + Entrada + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + Saída + + + + 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 + Graves + + + + 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 + + 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) - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - SampleTCOView + SampleClipView - double-click to select sample + + 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 + Inverter a mostra + + + + Set clip color + + + + + Use track color + + SampleTrack - Sample track - - - + Volume Volume + Panning Panorámica + + + Mixer channel + Canlde de FX + + + + + Sample track + + SampleTrackView + Track volume + Channel volume: + VOL VOL + Panning Panorámica + Panning: Panorámica: + PAN PAN + + + Channel %1: %2 + + + + + SampleTrackWindow + + + GENERAL SETTINGS + CONFIGURACIÓN XERAL + + + + Sample volume + + + + + Volume: + Volume: + + + + VOL + VOL + + + + Panning + Panorámica + + + + Panning: + Panorámica: + + + + PAN + PAN + + + + Mixer channel + Canlde de FX + + + + CHANNEL + FX + + + + SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + SetupDialog - Setup LMMS + + Reset to default value - General settings + + Use built-in NaN handler - BUFFER SIZE + + Settings + Configuración + + + + + General - Reset to default-value - - - - MISC - - - - Enable tooltips - - - - Show restart warning after changing settings + + Graphical user interface (GUI) + Display volume as dBFS - Compress project files per default + + Enable tooltips - One instrument track window mode + + Enable master oscilloscope by default - HQ-mode for output audio-device + + Enable all note labels in piano roll - Compact track buttons + + 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 + Engadidos + + + + 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 - Enable note labels in piano roll - - - - Enable waveform display by default - - - + Keep effects running even without input - Create backup file when saving a project + + + Audio + Son + + + + Audio interface - LANGUAGE + + HQ mode for output audio device - Paths + + Buffer size + + + MIDI + MIDI + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + LMMS working directory - VST-plugin directory + + VST plugins directory + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + Background artwork - STK rawwave directory + + Some changes require restarting. - Default Soundfont File + + Autosave interval: %1 - Performance settings + + Choose the LMMS working directory - UI effects vs. performance + + Choose your VST plugins directory - Smooth scroll in Song Editor + + Choose your LADSPA plugins directory - Show playback cursor in AudioFileProcessor + + Choose your default SF2 - Audio settings + + Choose your theme directory - AUDIO INTERFACE + + Choose your background picture - MIDI settings - - - - MIDI INTERFACE + + + Paths + OK Aceptar + Cancel Cancelar - Restart LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - - - + Frames: %1 Latency: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - - - - Choose your VST-plugin directory - - - - Choose artwork-theme directory - - - - Choose LADSPA plugin directory - - - - Choose STK rawwave directory - - - - Choose default SoundFont - - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - - - - Directories - - - - Themes directory - - - - GIG directory - - - - SF2 directory - - - - LADSPA plugin directories - - - - Auto save - - - + Choose your GIG directory + Choose your SF2 directory + minutes + minute - Enable auto-save - - - - Allow auto-save while playing - - - + Disabled + + + SidInstrument - Auto-save interval: %1 + + Cutoff frequency + Frecuencia de corte + + + + Resonance + Resonancia + + + + Filter type + Tipo de filtro + + + + Voice 3 off + Voz 3 apagada + + + + Volume + Volume + + + + Chip model + Modelo de chip + + + + SidInstrumentView + + + Volume: + Volume: + + + + Resonance: + Resonancia: + + + + + Cutoff frequency: + Frecuencia de corte: + + + + High-pass filter - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + SID MOS6581 + + + + MOS8580 SID + SID MOS6580 + + + + + Attack: + Ataque: + + + + + Decay: + Decaemento: + + + + Sustain: + Sustentación: + + + + + Release: + Relaxamento: + + + + Pulse Width: + Largura do pulso: + + + + Coarse: + Crú: + + + + Pulse wave + + + + + Triangle wave + Onda triangular + + + + Saw wave + Onda de dente de serra + + + + Noise + Ruído + + + + Sync + Sincronizar + + + + Ring modulation + + + + + Filtered + Filtrado + + + + Test + Proba + + + + Pulse width: + + + + + SideBarWidget + + + Close Song + Tempo + Master volume + Master pitch - Project saved + + Aborting project load - The project %1 is now saved. + + Project file contains local paths to plugins, which could be used to run malicious code. - Project NOT saved. - - - - The project %1 was not saved! - - - - Import file - - - - MIDI sequences - - - - Hydrogen projects - - - - All file types - - - - Empty project - - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - - - - Select directory for writing exported tracks... - - - - untitled - - - - Select file for project-export... - - - - The following errors occured while loading: - - - - MIDI File (*.mid) + + Can't load project: Project file contains local paths to plugins. + LMMS Error report - Save project + + (repeated %1 times) + + + + + The following errors occurred while loading: SongEditor + Could not open file Non foi posíbel abrir o ficheiro - Could not write file - Non foi posíbel escribir no ficheiro - - + 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. Non foi posíbel abrir o ficheiro %1. Probabelmente vostede non teña permiso para ler este ficheiro. Asegúrese de ter cando menos permiso para ler o ficheiro e ténteo de novo. + + 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 + Non foi posíbel escribir no ficheiro + + + + 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 Hai un erro no ficheiro + The file %1 seems to contain errors and therefore can't be loaded. Parece que o ficheiro %1 contén erros e por iso non se pode cargar. - Tempo - - - - TEMPO/BPM - - - - tempo of song - - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - High quality mode - - - - Master volume - - - - master volume - - - - Master pitch - - - - master pitch - - - - Value: %1% - - - - Value: %1 semitones - - - - 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. - - - - template - - - - project - - - + Version difference - This %1 was created with LMMS %2. + + 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) - Add beat/bassline - - - - Add sample-track - - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum + + Horizontal zooming - Linear Y axis + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - + + Hint + Suxestión - Linear Y axis - - - - Channel mode + + Move recording curser using <Left/Right> arrows SubWindow + Close + Maximize + Restore @@ -6537,81 +13062,110 @@ Remember to also save your project manually. You can choose to disable saving wh TabWidget + + Settings for %1 + + TemplatesMenu + + + New from template + + + TempoSyncKnob + + Tempo Sync Sincronización do tempo + No Sync Non sincronizar + Eight beats Oito tempos + Whole note Redonda + Half note Branca + Quarter note Negra + 8th note Corchea + 16th note Semicorchea + 32nd note Fusa + Custom... Personalizada... + Custom Personalizada + Synced to Eight Beats Sincronizado a oito tempos + Synced to Whole Note Sincronizado á redonda + Synced to Half Note Sincronizado á branca + Synced to Quarter Note Sincronizado á negra + Synced to 8th Note Sincronizado á corchea + Synced to 16th Note Sincronizado á semicorchea + Synced to 32nd Note Sincronizado á fusa @@ -6619,30 +13173,37 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units + + Time units + MIN + SEC + MSEC + BAR + BEAT + TICK @@ -6650,45 +13211,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - Enable/disable auto-scrolling + + Auto scrolling - Enable/disable loop-points + + Loop points - After stopping go back to begin + + After stopping go back to beginning + After stopping go back to position at which playing was started + After stopping keep position + Hint Suxestión + Press <%1> to disable magnetic loop points. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - - Track + Mute + Solo @@ -6696,299 +13262,490 @@ Remember to also save your project manually. You can choose to disable saving wh 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 Cancelar + + Please wait... + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + Importing MIDI-file... - TrackContentObject + Clip + Mute - TrackContentObjectView + ClipView + Current position - Hint - Suxestión - - - Press <%1> and drag to make a copy. - - - + Current length - Press <%1> for free resizing. - - - + + %1:%2 (%3:%4 to %5:%6) + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + Suxestión + + + 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. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Actions for this track + + Actions + + Mute + + Solo - Mute this track + + 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 - FX %1: %2 + + Channel %1: %2 + + Assign to new mixer Channel + + + + Turn all recording on + Turn all recording off - Assign to new FX Channel + + Change color + + + + + Reset color to default + + + + + Set random color + + + + + Clear clip colors TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - Empregar a modulación de fase para modular o oscilador 2 co oscilador 1 + + Modulate phase of oscillator 1 by oscillator 2 + - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Empregar a modulación de amplitude para modular o oscilador 2 co oscilador 1 + + Modulate amplitude of oscillator 1 by oscillator 2 + - Mix output of oscillator 1 & 2 - Misturar a saída dos osciladores 1 e 2 + + Mix output of oscillators 1 & 2 + + Synchronize oscillator 1 with oscillator 2 Sincronizar o oscilador 1 co oscilador 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Empregar a modulación de frecuencia para modular o oscilador 2 co oscilador 1 + + Modulate frequency of oscillator 1 by oscillator 2 + - Use phase modulation for modulating oscillator 2 with oscillator 3 - Empregar a modulación de fase para modular o oscilador 3 co oscilador 2 + + Modulate phase of oscillator 2 by oscillator 3 + - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Empregar a modulación de amplitude para modular o oscilador 3 co oscilador 2 + + Modulate amplitude of oscillator 2 by oscillator 3 + - Mix output of oscillator 2 & 3 - Misturar a saída dos osciladores 2 e 3 + + Mix output of oscillators 2 & 3 + + Synchronize oscillator 2 with oscillator 3 Sincronizar o oscilador 2 co oscilador 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Empregar a modulación de frecuencia para modular o oscilador 3 co oscilador 2 + + Modulate frequency of oscillator 2 by oscillator 3 + + Osc %1 volume: Volume do oscilador %1: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Con este botón pódese indicar o volume do oscilador %1. Ao indicar un valor de 0 o oscilador apágase. Caso contrario pódese ouvir o oscilador tan alto como se indique aquí. - - + Osc %1 panning: Panorámica do oscilador %1 - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Con este botón pódese indicar o panorama («panning») do oscilador %1. Un valor de -100 significa 100% esquerda e un valor de 100 move a saída do oscilador para a dereita. - - + Osc %1 coarse detuning: Desafinación bruta do oscilador %1: + semitones semitóns - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Con este botón pódese definir a desafinación bruta do oscilador %1. Pódese desafinar o oscilador 24 semitóns (2 oitavas) para arriba e para abaixo. Isto é útil para crear sons cun acorde. - - + Osc %1 fine detuning left: Desafinación fina esquerda do oscilador %1: + + cents cents - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Con este botón pódese indicar a desafinación fina do oscilador %1 pola canle esquerda. A desafinación fina ten como intervalo -100 cents e +100 cents. Isto é útil para crear sons «gordos». - - + Osc %1 fine detuning right: Desafinación fina dereita do oscilador %1: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Con este botón pódese indicar a desafinación fina do oscilador %1 pola canle dereita. A desafinación fina ten como intervalo -100 cents e +100 cents. Isto é útil para crear sons «gordos». - - + Osc %1 phase-offset: Desprazamento da fase do oscilador %1: + + degrees graos - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Con este botón pódese indicar o desprazamento de fase do oscilador %1. Iso significa que se pode mover o punto dunha oscilación no que o oscilador comeza a oscilar. Por exemplo, se se ten unha onda senoidal e un desprazamento de fase de 180 graos, a onda vai primeiro para abaixo. O mesmo acontece cunha onda cadrada. - - + Osc %1 stereo phase-detuning: Desafinación de fase en estéreo do oscilador %1: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Conte este botón pódese indicar a desafinación de fase en estéreo do oscilador %1. A desafinación de fase en estéreo indica o tamaño da diferenza entre o desprazamento de fase das canles esquerda e dereita. Isto é moi bon para crear sons con estéreo amplo. + + Sine wave + Onda senoidal - Use a sine-wave for current oscillator. - Empregar unha onda senoidal para este oscilador. + + Triangle wave + Onda triangular - Use a triangle-wave for current oscillator. - Empregar unha onda triangular para este oscilador. + + Saw wave + Onda de dente de serra - Use a saw-wave for current oscillator. - Empregar unha onda de dente de serra para este oscilador. + + Square wave + Onda cadrada - Use a square-wave for current oscillator. - Empregar unha onda cadrada para este oscilador. + + Moog-like saw wave + - Use a moog-like saw-wave for current oscillator. - Empregar unha onda de dente de serra tipo Moog para este oscilador. + + Exponential wave + - Use an exponential wave for current oscillator. - Empregar unha onda exponencial para este oscilador. + + White noise + - Use white-noise for current oscillator. - Empregar ruído branco para este oscilador. + + User-defined wave + + + + + VecControls + + + Display persistence amount + - Use a user-defined waveform for current oscillator. - Empregar unha forma de onda predefinida para este oscilador. + + 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? @@ -6996,156 +13753,117 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - Open other VST-plugin - Abrir outro engadido de VST - - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Prema aquí se desexa abrir outro engadido de VST. Ao premer este botón aparece un diálogo para abrir ficheiros no que se pode escoller o ficheiro. - - - Show/hide GUI - Mostrar/Agochar a interface gráfica - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Prema aquí para mostrar ou agochar a interface gráfica de usuario do engadido de VST. - - - Turn off all notes - Apagar todas as notas - - - Open VST-plugin - Abrir o engadido de VST - - - DLL-files (*.dll) - Ficheiros DLL (.*dll) - - - EXE-files (*.exe) - Ficheiros EXE (*.exe) - - - No VST-plugin loaded - Non se cargou ningún engadido de VST - - - Control VST-plugin from LMMS host + + + Open VST plugin - Click here, if you want to control VST-plugin from host. + + Control VST plugin from LMMS host - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset + Previous (-) - Click here, if you want to switch to another VST-plugin preset program. - - - + Save preset Gardar as predefinicións - Click here, if you want to save current VST-plugin preset program. - - - + Next (+) - Click here to select presets that are currently loaded in VST. + + Show/hide GUI + Mostrar/Agochar a interface gráfica + + + + Turn off all notes + Apagar todas as notas + + + + DLL-files (*.dll) + Ficheiros DLL (.*dll) + + + + EXE-files (*.exe) + Ficheiros EXE (*.exe) + + + + No VST plugin loaded + Preset + by + - VST plugin control - - VisualizationWidget - - click to enable/disable visualization of master-output - - - - Click to enable - - - VstEffectControlDialog + Show/hide - Control VST-plugin from LMMS host + + Control VST plugin from LMMS host - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset + Previous (-) - Click here, if you want to switch to another VST-plugin preset program. - - - + Next (+) - Click here to select presets that are currently loaded in VST. - - - + Save preset Gardar as predefinicións - Click here, if you want to save current VST-plugin preset program. - - - + + Effect by: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7153,173 +13871,207 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - Loading plugin - A cargar un engadido + + + The VST plugin %1 could not be loaded. + + Open Preset + + Vst Plugin Preset (*.fxp *.fxb) + : default - " - - - - ' - - - + Save Preset + .fxp + .FXP + .FXB + .fxb - Please wait while loading VST plugin... - + + Loading plugin + A cargar un engadido - The VST plugin %1 could not be loaded. + + 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 @@ -7327,2667 +14079,2251 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - Select oscillator A1 - - - - Select oscillator A2 - - - - Select oscillator B1 - - - - Select oscillator B2 - - - - Mix output of A2 to A1 - - - - Modulate amplitude of A1 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with output of B2 - - - - Draw your own waveform here by dragging your mouse on this graph. - Debuxe aquí a súa propia forma de onda arrastrando o rato polo gráfico. - - - Load waveform - - - - Click to load a waveform from a sample file - - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - Normalizar - - - Click to normalize - - - - Invert - - - - Click to invert - - - - Smooth - Suave - - - Click to smooth - - - - Sine wave - Onda senoidal - - - Click for sine wave - - - - Triangle wave - Onda triangular - - - Click for triangle wave - - - - Click for saw wave - - - - Square wave - Onda cadrada - - - Click for square wave - - - + + + + Volume Volume + + + + Panning Panorámica + + + + 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. + Debuxe aquí a súa propia forma de onda arrastrando o rato polo gráfico. + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + Normalizar + + + + + Invert + + + + + + Smooth + Suave + + + + + Sine wave + Onda senoidal + + + + + + Triangle wave + Onda triangular + + + + Saw wave + Onda de dente de serra + + + + + Square wave + Onda cadrada + + + + Xpressive + + + 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. + Debuxe aquí a súa propia forma de onda arrastrando o rato polo 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 + + + + + + Saw wave + Onda de dente de serra + + + + + User-defined wave + + + + + + Triangle wave + Onda triangular + + + + + Square wave + Onda cadrada + + + + + 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 frequency - Filter Resonance + + Filter resonance + Bandwidth - FM Gain + + FM gain - Resonance Center Frequency + + Resonance center frequency - Resonance Bandwidth + + Resonance bandwidth - Forward MIDI Control Change Events + + Forward MIDI control change events ZynAddSubFxView - Show GUI - Mostrar a interface gráfica - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Prema aquí para mostrar ou agochar a interface gráfica deusuario de ZynAddSubFX. - - + Portamento: + PORT - Filter Frequency: + + Filter frequency: + FREQ - Filter Resonance: + + Filter resonance: + RES + Bandwidth: + BW - FM Gain: + + FM gain: + FM GAIN + Resonance center frequency: + RES CF + Resonance bandwidth: + RES BW - Forward MIDI Control Changes + + Forward MIDI control changes + + + Show GUI + Mostrar a interface gráfica + - audioFileProcessor + AudioFileProcessor + Amplify Amplificar + Start of sample Inicio da mostra + End of sample Final da mostra - Reverse sample - Inverter a mostra - - - Stutter - - - + Loopback point + + Reverse sample + Inverter a mostra + + + Loop mode Modo de bucle + + Stutter + + + + Interpolation mode + None + Linear + Sinc + Sample not found: %1 - bitInvader + BitInvader - Samplelength + + Sample length - bitInvaderView + BitInvaderView - Sample Length - Lonxitude da mostra - - - Sine wave - Onda senoidal - - - Triangle wave - Onda triangular - - - Saw wave - Onda de dente de serra - - - Square wave - Onda cadrada - - - White noise wave - Onda de ruído branco - - - User defined wave - Onda definida polo usuario - - - Smooth - Suave - - - Click here to smooth waveform. - Prema aquí para unha forma de onda suave. - - - Interpolation - Interpolación - - - Normalize - Normalizar + + Sample length + + Draw your own waveform here by dragging your mouse on this graph. Debuxe aquí a súa propia forma de onda arrastrando o rato polo gráfico. - Click for a sine-wave. - Prema para unha onda senoidal. + + + Sine wave + Onda senoidal - Click here for a triangle-wave. - Prema aquí para unha onda triangular. + + + Triangle wave + Onda triangular - Click here for a saw-wave. - Prema aquí para unha onda de dente de serra. + + + Saw wave + Onda de dente de serra - Click here for a square-wave. - Prema aquí para unha onda cadrada. + + + Square wave + Onda cadrada - Click here for white-noise. - Prema aquí para ruído branco. - - - Click here for a user-defined shape. - Prema aquí para unha forma definida polo usuario. - - - - dynProcControlDialog - - INPUT + + + White noise - Input gain: - - - - OUTPUT - - - - Output gain: - - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Reset waveform - - - - Click here to reset the wavegraph back to default + + + User-defined wave + + Smooth waveform - Click here to apply smoothing to wavegraph + + Interpolation + Interpolación + + + + Normalize + Normalizar + + + + DynProcControlDialog + + + INPUT - Increase wavegraph amplitude by 1dB + + Input gain: - Click here to increase wavegraph amplitude by 1dB + + OUTPUT - Decrease wavegraph amplitude by 1dB + + Output gain: - Click here to decrease wavegraph amplitude by 1dB + + ATTACK - Stereomode Maximum + + 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 - Stereomode Average + + Stereo mode: average + Process based on the average of both stereo channels - Stereomode Unlinked + + Stereo mode: unlinked + Process each stereo channel independently - dynProcControls + DynProcControls + Input gain + Output gain + Attack time + Release time + Stereo mode - - fxLineLcdSpinBox - - Assign to: - - - - New FX Channel - - - graphModel + Graph Gráfico - kickerInstrument + KickerInstrument + Start frequency Frecuencia inicial + End frequency Frecuencia final - Gain - Ganancia - - + Length - Distortion Start + + Start distortion - Distortion End + + End distortion - Envelope Slope + + Gain + Ganancia + + + + Envelope slope + Noise Ruído + Click - Frequency Slope + + Frequency slope + Start from note + End to note - kickerInstrumentView + KickerInstrumentView + Start frequency: Frecuencia inicial: + End frequency: Frecuencia final: + + Frequency slope: + + + + Gain: Ganancia: - Frequency Slope: + + Envelope length: - Envelope Length: - - - - Envelope Slope: + + Envelope slope: + Click: + Noise: - Distortion Start: + + Start distortion: - Distortion End: + + End distortion: - ladspaBrowserView + LadspaBrowserView + + Available Effects Efectos dispoñíbeis + + Unavailable Effects Efectos non dispoñíbeis + + Instruments Instrumentos + + Analysis Tools Ferramentas de análise + + Don't know Non sei - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Este diálogo mostra información sobre todos os engadidos de LADSPA que o LMMS deu localizado. Os engadidos divídense en cinco categorías baseándose nunha interpretación dos tipos e nomes dos portos. - -Os efectos dispoñíbeis son os que se poden empregar co LMMS. Para que o LMMS poida utilizar un efecto ten que ser, en primeiro lugar e o máis importante, un efecto, o que quere dicir que ten que ter tanto canles de entrada como canles de saída. O LMMS identifica unha canle de entrada como un porto de taxa de son que conteña «in» no nome. As canles de saída identifícanse coas letras «out». Alén disto, o efecto ten que ter o mesmo número de entradas que de saídas e ter capacidade de tempo real. - -Os efectos non dispoñíbeis son os que foron identificados como efectos mais que non tiñan o mesmo número de canles de entrada que de saída ou non tiñan capacidade de tempo real. - -Os instrumentos son engadidos nos que só se identificaron canles de saída -. -As ferramentas de análise son engadidos nos que só se identificaron canles de entrada. - -Os «non sei» son engadidos nos que non se identificaron canles de entrada nin de saída. - -Facendo duplo clic sobre calquera dos engadidos mostra información sobre os portos. - - + Type: Tipo: - ladspaDescription + LadspaDescription + Plugins Engadidos + Description Descrición - ladspaPortDialog + LadspaPortDialog + Ports Portos + Name Nome + Rate Taxa + Direction Dirección + Type Tipo + Min < Default < Max Mín < Predefinido < Máx + Logarithmic Logarítmica + SR Dependent Dependente de SR + Audio Son + Control Control + Input Entrada + Output Saída + Toggled Conmutado + Integer Enteiro + Float Vírgula flutuante + + Yes Si - lb302Synth + Lb302Synth + VCF Cutoff Frequency Frecuencia de corte do VCF + VCF Resonance Resonancia do VCF + VCF Envelope Mod Modo de envolvente do VCF + VCF Envelope Decay Decaemento da envolvente do VCF + Distortion Distorsión + Waveform Forma da onda + Slide Decay Decamento ao escorregar + Slide Escorregar + Accent Acento + Dead Morte + 24dB/oct Filter Filtro de 24dB/oitava - lb302SynthView + Lb302SynthView + Cutoff Freq: Frec. de corte: + Resonance: Resonancia: + Env Mod: Mod env: + Decay: Decaemento: + 303-es-que, 24dB/octave, 3 pole filter Filtro tipo 303, 24dB/oitava, 3 polos + Slide Decay: Decamento ao escorregar: + DIST: DIST: + Saw wave Onda de dente de serra + Click here for a saw-wave. Prema aquí para unha onda de dente de serra. + Triangle wave Onda triangular + Click here for a triangle-wave. Prema aquí para unha onda triangular. + Square wave Onda cadrada + Click here for a square-wave. Prema aquí para unha onda cadrada. + Rounded square wave Onda cadrada arredondada + Click here for a square-wave with a rounded end. Prema aquí para unha onda cadrada con final arredondado. + Moog wave Onda tipo Moog + Click here for a moog-like wave. Prema aquí para unha onda tipo Moog. + Sine wave Onda senoidal + Click for a sine-wave. Prema para unha onda senoidal. + + White noise wave Onda de ruído branco + Click here for an exponential wave. Prema aquí para unha onda exponencial. + Click here for white-noise. Prema aquí 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. - malletsInstrument + MalletsInstrument + Hardness Dureza + Position Posición - Vibrato Gain - Ganancia do vibrato + + Vibrato gain + - Vibrato Freq - Frecuencia do vibrato + + Vibrato frequency + - Stick Mix - Mestura de paus + + Stick mix + + Modulator Modulador + Crossfade Transición por esvaecemento - LFO Speed + + LFO speed Velocidade do LFO - LFO Depth - Profundidade do LFO + + LFO depth + + ADSR ADSR + Pressure Presión + Motion Movemento + Speed Velocidade + Bowed Con arco + Spread Propagar + Marimba Marimba + Vibraphone Vibráfono + Agogo Agogó - Wood1 - Madeira1 + + Wood 1 + + Reso - Wood2 - Madeira2 + + Wood 2 + + Beats Golpes - Two Fixed - Dous fixos + + Two fixed + + Clump Esmagar - Tubular Bells - Campás tubulares + + Tubular bells + - Uniform Bar - Lámina uniforme + + Uniform bar + - Tuned Bar - Lámina afinada + + Tuned bar + + Glass Vidro - Tibetan Bowl - Cunca tibetana + + Tibetan bowl + - malletsInstrumentView + MalletsInstrumentView + Instrument Instrumento + Spread Propagar + Spread: Propagar: - Hardness - Dureza - - - Hardness: - Dureza: - - - Position - Posición - - - Position: - Posición: - - - Vib Gain - Gan. vib. - - - Vib Gain: - Gan. vib.: - - - Vib Freq - Frec. vib.: - - - Vib Freq: - Frec. vib.: - - - Stick Mix - Mestura de paus - - - Stick Mix: - Mestura de paus: - - - Modulator - Modulador - - - Modulator: - Modulador: - - - Crossfade - Transición por esvaecemento - - - Crossfade: - Transición por esvaecemento: - - - LFO Speed - Velocidade do LFO - - - LFO Speed: - Velocidade do LFO: - - - LFO Depth - Profundidade do LFO - - - LFO Depth: - Profundidade do LFO: - - - ADSR - ADSR - - - ADSR: - ADSR: - - - Pressure - Presión - - - Pressure: - Presión: - - - Speed - Velocidade - - - Speed: - Velocidade: - - + Missing files + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + 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 + Transición por esvaecemento + + + + Crossfade: + Transición por esvaecemento: + + + + LFO speed + Velocidade do LFO + + + + LFO speed: + Velocidade do LFO: + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Presión + + + + Pressure: + Presión: + + + + Speed + Velocidade + + + + Speed: + Velocidade: + - manageVSTEffectView + ManageVSTEffectView + - VST parameter control - VST Sync - - - - Click here if you want to synchronize all parameters with VST plugin. + + VST sync + + Automated - Click here if you want to display automated parameters only. - - - + Close - - Close VST effect knob-controller window. - - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control + VST Sync - Click here if you want to synchronize all parameters with VST plugin. - - - + + Automated - Click here if you want to display automated parameters only. - - - + Close - - Close VST plugin knob-controller window. - - - opl2instrument - - Patch - Parche - - - Op 1 Attack - - - - Op 1 Decay - - - - Op 1 Sustain - - - - Op 1 Release - - - - Op 1 Level - - - - Op 1 Level Scaling - - - - Op 1 Frequency Multiple - - - - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - - - - Vibrato Depth - - - - Tremolo Depth - - - - - opl2instrumentView - - Attack - Ataque - - - Decay - Decaemento - - - Release - Relaxamento - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion Distorsión + Volume Volume - organicInstrumentView + OrganicInstrumentView + Distortion: Distorsión: + Volume: Volume: + Randomise Aleatorio + + Osc %1 waveform: Forma de onda do osciloscopio %1: + Osc %1 volume: Volume do oscilador %1: + Osc %1 panning: Panorámica do oscilador %1: - cents - cents - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - - + Osc %1 stereo detuning + + cents + cents + + + Osc %1 harmonic: - FreeBoyInstrument - - Sweep time - Tempo da varredura - - - Sweep direction - Dirección da varredura - - - Sweep RtShift amount - Cantidade de Cambio de varredura - - - Wave Pattern Duty - Padrón de onda - - - Channel 1 volume - Volume da canle 1 - - - Volume sweep direction - Dirección da varredura do volume - - - Length of each step in sweep - Lonxitude de cada paso en varredura - - - Channel 2 volume - Volume da canle 2 - - - Channel 3 volume - Volume da canle 3 - - - Channel 4 volume - Volume da canle 4 - - - Right Output level - Nivel da saída dereita - - - Left Output level - Nivel da saída esquerda - - - Channel 1 to SO2 (Left) - Canle 1 a SO1 (Esquerda) - - - Channel 2 to SO2 (Left) - Canle 2 a SO2 (Esquerda) - - - Channel 3 to SO2 (Left) - Canle 3 a SO2 (Esquerda) - - - Channel 4 to SO2 (Left) - Canle 4 a SO2 (Esquerda) - - - Channel 1 to SO1 (Right) - Canle 1 a SO1 (Dereita) - - - Channel 2 to SO1 (Right) - Canle 2 a SO1 (Dereita) - - - Channel 3 to SO1 (Right) - Canle 3 a SO1 (Dereita) - - - Channel 4 to SO1 (Right) - Canle 4 a SO1 (Dereita) - - - Treble - Agudos - - - Bass - Graves - - - Shift Register width - Cambiar a largura do rexistro - - - - FreeBoyInstrumentView - - Sweep Time: - Tempo da varredura: - - - Sweep Time - Tempo da varredura - - - Sweep RtShift amount: - Cantidade de cambio de varredura: - - - Sweep RtShift amount - Cantidade de cambio de varredura - - - Wave pattern duty: - Padrón de onda de deber: - - - Wave Pattern Duty - Padrón de onda de deber - - - Square Channel 1 Volume: - Volume da canle cadrada 1: - - - Length of each step in sweep: - Lonxitude de cada paso en varredura: - - - Length of each step in sweep - Lonxitude de cada paso en varredura - - - Wave pattern duty - Padrón de onda de deber - - - Square Channel 2 Volume: - Volume da canle cadrada 2: - - - Square Channel 2 Volume - Volume da canle cadrada 2 - - - Wave Channel Volume: - Volume da canle de ondas: - - - Wave Channel Volume - Volume da canle de ondas - - - Noise Channel Volume: - Volume da canle de ruído: - - - Noise Channel Volume - Volume da canle de ruído - - - SO1 Volume (Right): - Volume de SO1 (Dereita): - - - SO1 Volume (Right) - Volume de SO1 (Dereita) - - - SO2 Volume (Left): - Volume de SO2 (Esquerda): - - - SO2 Volume (Left) - Volume de SO2 (Esquerda) - - - Treble: - Agudos: - - - Treble - Agudos - - - Bass: - Graves: - - - Bass - Graves - - - Sweep Direction - Dirección da varredura - - - Volume Sweep Direction - Dirección da varredura do volume - - - Shift Register Width - Cambiar a largura do rexistro - - - Channel1 to SO1 (Right) - Canle 1 a SO1 (Dereita) - - - Channel2 to SO1 (Right) - Canle 1 a SO1 (Dereita) - - - Channel3 to SO1 (Right) - Canle 3 a SO1 (Dereita) - - - Channel4 to SO1 (Right) - Canle 4 a SO1 (Dereita) - - - Channel1 to SO2 (Left) - Canle 1 a SO2 (Esquerda) - - - Channel2 to SO2 (Left) - Canle 2 a SO2 (Esquerda) - - - Channel3 to SO2 (Left) - Canle 3 a SO2 (Esquerda) - - - Channel4 to SO2 (Left) - Canle 4 a SO2 (Esquerda) - - - Wave Pattern - Padrón de onda - - - The amount of increase or decrease in frequency - A cantidade de aumento ou redución da frecuencia - - - The rate at which increase or decrease in frequency occurs - A taxa á que se produce o aumento ou a redución da frecuencia - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - O ciclo de deber é a relación entre a duración (tempo) durante a que un sinal está ACTIVO fronte ao período total do sinal. - - - Square Channel 1 Volume - Volume da canle cadrada 1 - - - The delay between step change - A demora entre cambios de paso - - - Draw the wave here - Debuxe a onda aquí - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank Banco + Program selector + Patch Parche + Name Nome + OK Aceptar + Cancel Cancelar - pluginBrowser - - no description - sen descrición - - - Incomplete monophonic imitation tb303 - Imitación monofónica incompleta tb303 - - - Plugin for freely manipulating stereo output - Engadido para manipular libremente a saída en estéreo - - - Plugin for controlling knobs with sound peaks - Engadido para controlar botóns con picos de son - - - Plugin for enhancing stereo separation of a stereo input file - Engadido para mellorar a separación en estéreo dun ficheiro de entrada en estéreo - - - List installed LADSPA plugins - Enumerar os engadidos de LADSPA instalados - - - GUS-compatible patch instrument - Instrumento de parcheo compatíbel con GUS - - - Additive Synthesizer for organ-like sounds - Sintetizador aditivo para sons tipo órgano - - - Tuneful things to bang on - Cousas melodiosas nas que bater - - - VST-host for using VST(i)-plugins within LMMS - Hóspede de VST para empregar engadidos de VST(i) co LMMS - - - Vibrating string modeler - Modelador de cordas vibrantes - - - plugin for using arbitrary LADSPA-effects inside LMMS. - engadido para empregar efectos de LADSPA arbitrarios no LMMS. - - - Filter for importing MIDI-files into LMMS - Filtro para importar ficheiros MIDI ao LMMS - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - Emulación dos SID MOS6581 e o MOS8580. -Este chip empregábase no computador Commodore 64. - - - Player for SoundFont files - Reprodutor de ficheiros SoundFont - - - Emulation of GameBoy (TM) APU - Emulación da APU da GameBoy (TM) - - - Customizable wavetable synthesizer - Sintetizador de táboa de ondas personalizábel - - - Embedded ZynAddSubFX - ZynAddSubFX incorporado - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - - - - LMMS port of sfxr - - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - - - - Carla Rack Instrument - - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - - - - plugin for using arbitrary VST effects inside LMMS. - - - - Graphical spectrum analyzer plugin - - - - A NES-like synthesizer - - - - A native delay plugin - - - - Player for GIG files - - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - - - - - sf2Instrument + Sf2Instrument + Bank Banco + Patch Parche + Gain Ganancia + Reverb Reverberación - Reverb Roomsize - Tamaño da sala de reverberación + + Reverb room size + - Reverb Damping - Tampón de reverberación + + Reverb damping + - Reverb Width - Largura da reverberación + + Reverb width + - Reverb Level - Nivel de reverberación + + Reverb level + + Chorus Coro - Chorus Lines - Liñas do coro + + Chorus voices + - Chorus Level - Nivel do coro + + Chorus level + - Chorus Speed - Velocidade do coro + + Chorus speed + - Chorus Depth - Profundidade do coro + + Chorus depth + + A soundfont %1 could not be loaded. - sf2InstrumentView - - Open other SoundFont file - Abrir outro ficheiro de SoundFont - - - Click here to open another SF2 file - Prema aquí para abrir outro ficheiro de SF2 - - - Choose the patch - Escoller o parche - - - Gain - Ganancia - - - Apply reverb (if supported) - Aplicar reverberación (se o admitir) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Este botón activa o efecto de reverberación. Isto é útil para efectos gaioleiros, mais só funciona cos ficheiros que o admiten. - - - Reverb Roomsize: - Tamaño da sala de reverberación: - - - Reverb Damping: - Tampón de reverberación: - - - Reverb Width: - Largura da reverberación: - - - Reverb Level: - Nivel de reverberación: - - - Apply chorus (if supported) - Aplicar un coro (se o admitir) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Este botón activa o efecto de coro. Isto é útil para efectos de echo gaioleiros, mais só funciona cos ficheiros que o admiten. - - - Chorus Lines: - Liñas de coro: - - - Chorus Level: - Nivel do coro: - - - Chorus Speed: - Velocidade do coro: - - - Chorus Depth: - Profundidade do coro: - + Sf2InstrumentView + + Open SoundFont file Abrir un ficheiro de SoundFont - SoundFont2 Files (*.sf2) - Ficheiros de SoundFont2 (*.sf2) + + Choose patch + - - - sfxrInstrument - Wave Form + + Gain: + Ganancia: + + + + Apply reverb (if supported) + Aplicar reverberación (se o admitir) + + + + Room size: + + + + + Damping: + + + + + Width: + Largura: + + + + + Level: + + + + + Apply chorus (if supported) + Aplicar un coro (se o admitir) + + + + Voices: + + + + + Speed: + Velocidade: + + + + Depth: + Profundidade: + + + + SoundFont Files (*.sf2 *.sf3) - sidInstrument + SfxrInstrument - Cutoff - Corte - - - Resonance - Resonancia - - - Filter type - Tipo de filtro - - - Voice 3 off - Voz 3 apagada - - - Volume - Volume - - - Chip model - Modelo de chip + + Wave + - sidInstrumentView + StereoEnhancerControlDialog - Volume: - Volume: - - - Resonance: - Resonancia: - - - Cutoff frequency: - Frecuencia de corte: - - - High-Pass filter - Filtro pasa-alta - - - Band-Pass filter - Filtro pasa-faixa - - - Low-Pass filter - Filtro pasa-baixa - - - Voice3 Off - Voz3 apagada - - - MOS6581 SID - SID MOS6581 - - - MOS8580 SID - SID MOS6580 - - - Attack: - Ataque: - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - A taxa de ataque determina como de rápido sobe a Voz %1 desde cero á amplitude de pico. - - - Decay: - Decaemento: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - A taxa de decaemento determina como de rápido cae a saída desde a amplitude de pico ao nivel de Sustentación escollido. - - - Sustain: - Sustentación: - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - A saída da voz %1 fica na amplitude de sustentación indicada mentres se manteña a nota. - - - Release: - Relaxamento: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - A saída da voz %1 cae desde a amplitude de sustentación até cero na relación de relaxamento escollida. - - - Pulse Width: - Largura do pulso: - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - A resolución da largura do pulso permite varrer a largura suavemente sen que sexa posíbel discernir os pasos. Hai que escoller a forma de onda pulso no oscilador %1 para que se ouza un efecto audíbel. - - - Coarse: - Crú: - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - A desafinación crúa permite desafinar a voz %1 unha oitava para arriba ou para abaixo. - - - Pulse Wave - Onda de pulso - - - Triangle Wave - Onda triangular - - - SawTooth - Dente de serra - - - Noise - Ruído - - - Sync - Sincronizar - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Sincroniza a frecuencia fundamental do oscilador %1 coa frecuencia fundamental do oscilador %2, producindo efectos de «sincronización dura». - - - Ring-Mod - Modo anel - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - O modo anel substitúe a saída da onda de forma triangular do oscilador %1 cunha combinación «modulada en anel» dos osciladores %1 e %2. - - - Filtered - Filtrado - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Cando Filtrado está activado, a voz %1 procésase a través do filtro. Cando Filtrado está desactivado, a voz %1 aparece directamente na saída e o filtro non ten ningún efecto sobre ela. - - - Test - Proba - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Proba, cando escollido, restaura e bloquea o oscilador %1 a cero até que remate a proba. - - - - stereoEnhancerControlDialog - - WIDE - LARGO + + WIDTH + + Width: Largura: - stereoEnhancerControls + StereoEnhancerControls + Width Largura - stereoMatrixControlDialog + StereoMatrixControlDialog + Left to Left Vol: Volume esquerda para esquerda: + Left to Right Vol: Volume esquerda para dereita: + Right to Left Vol: Volume dereita para esquerda: + Right to Right Vol: Volume dereita para dereita: - stereoMatrixControls + StereoMatrixControls + Left to Left Esquerda para esquerda + Left to Right Esquerda para dereita + Right to Left Dereita para esquerda + Right to Right Dereita para dereita - vestigeInstrument + VestigeInstrument + Loading plugin A cargar un engadido - Please wait while loading VST-plugin... - Agarde mentres se carga o engadido de VST... + + Please wait while loading the VST plugin... + - vibed + Vibed + String %1 volume Volume da corda %1 + String %1 stiffness Tensión da corda %1 + Pick %1 position Posición da púa %1 + Pickup %1 position Posición do captador %1 - Pan %1 - Pan %1 + + String %1 panning + - Detune %1 - Desafinar %1 + + String %1 detune + - Fuzziness %1 - Difuso %1 + + String %1 fuzziness + - Length %1 - Lonxitude %1 + + String %1 length + + Impulse %1 Impulso %1 - Octave %1 - Oitava %1 + + String %1 + - vibedView + VibedView - Volume: - Volume: - - - The 'V' knob sets the volume of the selected string. - O botón «V» indica o volume da corda escollida. + + String volume: + + String stiffness: Tensión da corda: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - O botón «S» indica a tensión da corda escollida. A tensión da corda afecta ao tempo durante o que esta soa. Canto menor sexa, máis tempo ha de soar. - - + Pick position: Posición da púa: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - O botón «P» indica a posición na que se pulsa a corda escollida. Canto menor sexa, máis próxima estará da ponte. - - + Pickup position: Posición do captador: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - O botón «PU» indica a posición desde a que se recollen as vibracións da corda escollida. Canto menor sexa, máis próximo será da ponte. + + String panning: + - Pan: - Pan: + + String detune: + - The Pan knob determines the location of the selected string in the stereo field. - O botón Pan determina o lugar que ocupa a cadea escollida no campo estéreo. + + String fuzziness: + - Detune: - Desafinar: + + String length: + - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - O botón Desafinar modifica a altura da corda escollida. Indicar menos de cero fai que a corda soe plana. Con máis de cero a corda soará viva. - - - Fuzziness: - Difuso: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - O botón Slap engádelle algo de distorsión tipo «fuzz» á corda escollida que se nota máis durante o ataque, aínda que tamén se pode usar para facer que a corda soe máis «metálica». - - - Length: - Lonxitude: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - O botón Lonxitude indica a lonxitude da corda escollida. As cordas máis longas soan durante máis tempo e con máis brillo; porén, tamén consumen máis ciclos da CPU. - - - Impulse or initial state - Impulso ou estado inicial - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - O selector «Imp» determina se hai que tratar a forma de onda do gráfico como un impulso impartido na corda pola púba ou o estado inicial da corda. + + Impulse + + Octave Oitava - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - O selector Oitava emprégase para escoller con que harmónico da nota soa a corda. Por exemplo, «-2» significa que a corda soa dúas oitavas por debaixo da fundamental, «F» significa que a corda soa na fundamental e «6» significa que a cadea soa seix oitavas por riba da fundamental. - - + Impulse Editor Editor de impulsos - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - O editor de formas de onda permite controlar o estado inicial ou impulso usado para facer que a corda comece a vibrar. Os botóns que hai á dereita da gráfica inicializan a forma de onda no tipo escollido. O botón «?» carga unha forma de onda desde un ficheiro - só se cargan as primeiras 128 mostras. - -A forma de onda tamén se pode debuxar na gráfica. - -O botón «S» suaviza a forma de onda. - -O botón «N» normaliza a forma de onda. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Vibed modela até nove cordas vibrando independentemente. O selector «Corda» permite escoller a corda que se desexe editar. O selector «Imp» escolle se o gráfico representa un impulso ou o estado inicial da corda. O selector «Oitava» escolle o harmónico co que debería vibrar a corda. - -A gráfica permite controlar o estado inicial ou o impulso usados para pór a corda en movemento. - -O botón «V» controla o volume. O botón «S» controla a tensión.da corda. O botón «P» controla a posición da púa. O botón «PU» controla a posición de observación. - -«Pan» e «Detune» non deberían precisar explicación. O botón «Slap» engádelle un pouco de distorsión tipo «fuzz» ao son da corda. - -O botón «Lonxitude» controla a lonxitude da corda. - -O LED do recanto inferior dereito do editor da forma da onda determina se a corda está activa no instrumento. - - + Enable waveform Activar a forma de onda - Click here to enable/disable waveform. - Prema aquí para activar/desactivar a forma da onda. + + Enable/disable string + + String Corda - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - O selector Corda emprégase para escoller a corda que editan os controles. Un instrumento de Vibed pode conter até nove cordas vibrando independentemente. O LED do recanto inferior dereito do editor da forma da onda indica se a corda escollida esstá activada. - - + + Sine wave Onda senoidal + + Triangle wave Onda triangular + + Saw wave Onda de dente de serra + + Square wave Onda cadrada - White noise wave - Onda de ruído branco + + + White noise + - User defined wave - Onda definida polo usuario + + + User-defined wave + - Smooth - Suave + + + Smooth waveform + - Click here to smooth waveform. - Prema aquí para unha forma de onda suave. - - - Normalize - Normalizar - - - Click here to normalize waveform. - Prema aquí para normalizar a forma da onda. - - - Use a sine-wave for current oscillator. - Empregar unha onda senoidal para este oscilador. - - - Use a triangle-wave for current oscillator. - Empregar unha onda triangular para este oscilador. - - - Use a saw-wave for current oscillator. - Empregar unha onda de dente de serra para este oscilador. - - - Use a square-wave for current oscillator. - Empregar unha onda cadrada para este oscilador. - - - Use white-noise for current oscillator. - Empregar ruído branco para este oscilador. - - - Use a user-defined waveform for current oscillator. - Empregar unha forma de onda predefinida para este oscilador. + + + Normalize waveform + - voiceObject + VoiceObject + Voice %1 pulse width Largo do pulso da voz %1 + Voice %1 attack Ataque da voz %1 + Voice %1 decay Decamento da voz %1 + Voice %1 sustain Sustentación da voz %1 + Voice %1 release Relaxamento da voz %1 + Voice %1 coarse detuning Desafinación bruta da voz %1 + Voice %1 wave shape Fonda da onda da voz %1 + Voice %1 sync Sincronización da voz %1 + Voice %1 ring modulate Modulación de anel da voz %1 + Voice %1 filtered Filtrado da voz %1 + Voice %1 test Proba da voz %1 - waveShaperControlDialog + WaveShaperControlDialog + INPUT + Input gain: + OUTPUT + Output gain: - Reset waveform + + + Reset wavegraph - Click here to reset the wavegraph back to default + + + Smooth wavegraph - Smooth waveform + + + Increase wavegraph amplitude by 1 dB - Click here to apply smoothing to wavegraph - - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB + Clip input - Clip input signal to 0dB + + Clip input signal to 0 dB - waveShaperControls + WaveShaperControls + Input gain + Output gain - \ No newline at end of file + diff --git a/data/locale/he.ts b/data/locale/he.ts new file mode 100644 index 000000000..ee5a23613 --- /dev/null +++ b/data/locale/he.ts @@ -0,0 +1,16327 @@ + + + AboutDialog + + + About LMMS + אודות LMMS + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + גרסה %1 (%2/%3, Qt %4, %5). + + + + About + אודות + + + + LMMS - easy music production for everyone. + LMMS - יצירת מוסיקה פשוטה עבור כולם + + + + Copyright © %1. + כל הזכויות שמורות © %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> + + + + Authors + מפתחים + + + + Involved + להשתתף + + + + Contributors ordered by number of commits: + מפתחים מסודרים לפי מספר התרומות: + + + + Translation + תרגום + + + + 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! + + + + + License + רשיון + + + + AmplifierControlDialog + + + 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 + + + + + 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 + + + + + CarlaAboutW + + + About Carla + + + + + About + אודות + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + + + + + toolBar + + + + + 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 + + + + + Ctrl+N + + + + + &Open... + + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + + + + + 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. + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + 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 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: + + + + + 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! + + + + + 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% + + + + + Fader + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + 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 + + + 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 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 + + + + + + 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 + + + + + InstrumentMiscView + + + 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 + + + + 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 + + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + 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 + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + 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... + + + + + &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 + + + + + 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 + + + + 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) + + + + + 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 + + + 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 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 + + + + + OK + + + + + Cancel + + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.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 + + + + + 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 + + + + + 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: + + + + + 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 + + + + + + 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 + + + + + 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 + + + + + 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 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 + + + 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 + + + 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 + + + + + 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 + ווליום + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + + + + + VOL + ווליום + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Channel %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 + + + 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 + + + + + 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 + + + + + Cancel + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + + + + + minute + + + + + Disabled + + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + 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 + + + + + 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 + סגור + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + סגור + + + + Maximize + + + + + Restore + + + + + 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 + + + + + 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. + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + + + + + + 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 + + + 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: + + + + + + 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 + + + + diff --git a/data/locale/hi_IN.ts b/data/locale/hi_IN.ts new file mode 100644 index 000000000..15550231f --- /dev/null +++ b/data/locale/hi_IN.ts @@ -0,0 +1,16328 @@ + + + AboutDialog + + + About LMMS + LMMS के बारे में + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + + + + + About + के बारे में + + + + LMMS - easy music production for everyone. + LMMS - आसान संगीत उत्पादन, सभी के लिए। + + + + Copyright © %1. + कॉपीराइट © %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> + + + + Authors + प्रणेता + + + + Involved + + + + + Contributors ordered by number of commits: + + + + + Translation + भाषांतर + + + + 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! + Abhi Prakash द्वारा Hindi (India) में अनुवादित (संपर्क: apofficial18@gmail.com) + +यदि आप LMMS को अन्य भाषाओं में अनुवादित करने या मौजूदा अनुवादों में सुधार करने में रुचित हैं, तो आपकी मदद का स्वागत है! बस प्रोजेक्ट मैनेजर से संपर्क करें! + + + + License + लाइसेंस + + + + AmplifierControlDialog + + + 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 + सैंपल खोलें + + + + 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) + + + + + &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) + ड्रॉ मोड (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 + + + + + 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 + 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 + 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 + + + + + CarlaAboutW + + + About Carla + + + + + About + के बारे में + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + &सहायता + + + + toolBar + + + + + 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 + + + + + Ctrl+N + + + + + &Open... + + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + + + + + 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. + + + + + 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 + + + + + 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 + + + + + + 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 + गेन 1 + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 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 + + + + + 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 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: + + + + + 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 + + + + + 48000 Hz + + + + + 88200 Hz + + + + + 96000 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! + + + + + 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% + + + + + Fader + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + 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 + + + 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 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 + + + + + + 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 + + + + + InstrumentMiscView + + + 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 + + + + 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 + VOL + + + + Panning + पैनिंग + + + + Panning: + पैनिंग + + + + PAN + PAN + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 + + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + Volume + वॉल्यूम + + + + Volume: + वॉल्यूम: + + + + VOL + VOL + + + + Panning + पैनिंग + + + + Panning: + पैनिंग + + + + PAN + 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 + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + 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... + + + + + &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 + Beat+Bassline Editor + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + Controller Rack को दिखाएँ/छुपायें। + + + + Show/hide project notes + 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 + + + + 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) + + + + + 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 + + + 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 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 + नाम + + + + OK + ठीक + + + + Cancel + रद्द + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.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 + + + + + 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 + + + + + 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 + + + + + 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 + + + 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) + ड्रॉ मोड (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) + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 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 + + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QObject + + + Reload Plugin + + + + + Show GUI + 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 + + + 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 + + + + + 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 + वॉल्यूम + + + + Panning + पैनिंग + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + + + + + VOL + VOL + + + + Panning + पैनिंग + + + + Panning: + पैनिंग + + + + PAN + PAN + + + + Channel %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 + + + 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 + + + + + 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 + ठीक + + + + Cancel + रद्द + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + + + + + minute + + + + + Disabled + + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + 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 + + + + + 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 + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + Maximize + + + + + Restore + + + + + 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 + + + + + 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. + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + + + + + + 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 + + + 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 + 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. + Saw-wave के लिए यहाँ क्लिक करें। + + + + Triangle wave + + + + + Click here for a triangle-wave. + Triangle-wave के लिए यहाँ क्लिक करें। + + + + Square wave + + + + + Click here for a square-wave. + 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. + Exponential wave के लिए यहाँ क्लिक करें। + + + + Click here for white-noise. + 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: + + + + + + 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 + + + + diff --git a/data/locale/hu_HU.ts b/data/locale/hu_HU.ts index 2791c4c75..836059946 100644 --- a/data/locale/hu_HU.ts +++ b/data/locale/hu_HU.ts @@ -2,91 +2,112 @@ AboutDialog + About LMMS - - - - Version %1 (%2/%3, Qt %4, %5) - - - - About - Névjegy - - - LMMS - easy music production for everyone - LMMS - egyszerű zenekészítés mindenkinek - - - Authors - - - - Translation - Fordítás - - - 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! - - - - License - Licenc + Az LMMS-ről + LMMS LMMS - Involved - + + Version %1 (%2/%3, Qt %4, %5). + Verzió %1 (%2/%3, Qt %4, %5). + + About + Névjegy + + + + LMMS - easy music production for everyone. + LMMS - könnyű zenekészítés mindenkinek. + + + + Copyright © %1. + Copyright © %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> + + + + Authors + Készítők + + + + Involved + Közreműködők + + + Contributors ordered by number of commits: Közreműködők a commitok száma szerint rendezve: - Copyright © %1 - Copyright © %1 + + Translation + Fordítás - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - + + 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! + A magyar fordítást készítették: gyeben, Haba Tamás (gelesztamas), Szabó István (stevepixus) +Ha szeretnél részt venni az LMMS más nyelvekre történő fordításában vagy a meglévő fordítások javításában, vedd fel a kapcsolatot az üzemeltetővel. + + + + License + Licenc AmplifierControlDialog + VOL - + VOL + Volume: Hangerő: + PAN - + PAN + Panning: - + Panoráma: + LEFT BAL + Left gain: Bal oldali erősítés: + RIGHT JOBB + Right gain: Jobb oldali erősítés: @@ -94,18 +115,22 @@ If you're interested in translating LMMS in another language or want to imp AmplifierControls + Volume Hangerő + Panning - + Panoráma + Left gain Bal oldali erősítés + Right gain Jobb oldali erősítés @@ -113,10 +138,12 @@ If you're interested in translating LMMS in another language or want to imp AudioAlsaSetupWidget + DEVICE ESZKÖZ + CHANNELS CSATORNÁK @@ -124,556 +151,563 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorView - Open other sample - Másik minta megnyitása - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - + + Open sample + Minta megnyitása + Reverse sample - - - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - - - - Amplify: - - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - - - - Startpoint: - - - - Endpoint: - - - - Continue sample playback across notes - - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - + Minta megfordítása + Disable loop - - - - This button disables looping. The sample plays only once from start to end. - + Ismétlés tiltása + Enable loop - + Ismétlés engedélyezése - This button enables forwards-looping. The sample loops between the end point and the loop point. - + + Enable ping-pong loop + Oda-vissza ismétlés engedélyezése - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - + + Continue sample playback across notes + Folyamatos lejátszás több note-on keresztül - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - + + Amplify: + Erősítés: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - + + Start point: + Kezdőpont: + + End point: + Végpont: + + + Loopback point: - - - - With this knob you can set the point where the loop starts. - + 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 + + Client name + Kliens név - CHANNELS - CSATORNÁK + + Channels + Csatornák - AudioOss::setupWidget + AudioOss - DEVICE - ESZKÖZ + + Device + Eszköz - CHANNELS - CSATORNÁK + + Channels + Csatornák AudioPortAudio::setupWidget - BACKEND - + + Backend + Backend - DEVICE - ESZKÖZ + + Device + Eszköz - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - ESZKÖZ + + Device + Eszköz - CHANNELS - CSATORNÁK + + Channels + Csatornák AudioSdl::setupWidget - DEVICE - ESZKÖZ + + Device + Eszköz - AudioSndio::setupWidget + AudioSndio - DEVICE - ESZKÖZ + + Device + Eszköz - CHANNELS - CSATORNÁK + + Channels + Csatornák AudioSoundIo::setupWidget - BACKEND - + + Backend + Backend - DEVICE - ESZKÖZ + + 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... - - Remove song-global automation - - - - Remove all linked controls - - AutomationEditor - Please open an automation pattern with the context menu of a control! - + + Edit Value + Érték megadása - Values copied - + + New outValue + Kimenő érték - All selected values were copied to the clipboard. - + + 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 pattern (Space) - + + Play/pause current clip (Space) + Klip lejátszása/megállítása (Space) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - - - - Stop playing of current pattern (Space) - - - - Click here if you want to stop playing of the current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Flip vertically - - - - Flip horizontally - - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Discrete progression - - - - Linear progression - - - - Cubic Hermite progression - - - - Tension value for spline - - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - Cut selected values (%1+X) - - - - Copy selected values (%1+C) - - - - Paste values from clipboard (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - - - - Tension: - - - - Automation Editor - no pattern - - - - Automation Editor - %1 - + + 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 - Timeline controls - + + 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 - Model is already connected to this pattern. - + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> - + Húzz ide egy vezérlőt <%1> nyomvatartása mellett - AutomationPatternView - - double-click to open this pattern in automation editor - - + 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 - - - - %1 Connections - - - - Disconnect "%1" - + Á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 - Model is already connected to this pattern. - + + %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 - BBEditor + 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) - - - - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - - - - Click here to stop playing of current beat/bassline. - - - - Add beat/bassline - - - - Add automation-track - - - - Remove steps - - - - Add steps - + 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 - Clone Steps - + + 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 - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor - + Megnyitás a Beat+Bassline szerkesztőben + Reset name - + Név visszaállítása + Change name - - - - Change color - - - - Reset color to default - + Átnevezés - BBTrack + 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: @@ -681,14 +715,17 @@ If you're interested in translating LMMS in another language or want to imp BassBoosterControls + Frequency Frekvencia + Gain Erősítés + Ratio Arány @@ -696,306 +733,2603 @@ If you're interested in translating LMMS in another language or want to imp BitcrushControlDialog + IN BE + OUT KI + + GAIN ERŐSÍTÉS - Input Gain: + + Input gain: Bemeneti erősítés: - NOIS - + + NOISE + ZAJ - Input Noise: + + Input noise: Bemeneti zaj: - Output Gain: + + Output gain: Kimeneti erősítés: + CLIP - + CLIP - Output Clip: - + + Output clip: + Kimenet levágása: - Rate - + + Rate enabled + Mintavételi gyakoriság - Rate Enabled - + + Enable sample-rate crushing + Mintavételi frekvencia csökkentése - Enable samplerate-crushing - + + Depth enabled + Bitmélység - Depth - + + Enable bit-depth crushing + Bitmélység csökkentése - Depth Enabled - - - - Enable bitdepth-crushing - + + FREQ + FREKV + Sample rate: - + Mintavételi frekvencia: - STD - + + STEREO + SZTEREÓ + Stereo difference: - + Sztereó különbség: - Levels - + + QUANT + QUANT + Levels: - + Szintek: - CaptionMenu + 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 + + + + CarlaAboutW + + + About Carla + A Carla névjegye + + + + About + Névjegy + + + + About text here + Névjegy helye + + + + Extended licensing here + 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 + + 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 verzió + + + + Plugin Version + Plugin 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) + + + + CarlaHostW + + + MainWindow + MainWindow + + + + Rack + Rack + + + + Patchbay + Patchbay + + + + Logs + Naplók + + + + Loading... + Betöltés... + + + + Buffer Size: + Buffer mé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) + + + + &Canvas + &Vászon + + + + Zoom + Nagyítás + + + + &Settings + &Beállítások + + + &Help &Súgó - Help (not available) + + toolBar + toolBar + + + + Disk + Lemez + + + + + Home + Kezdőlap + + + + Transport + Továbbítás + + + + Playback Controls + Lejátszás vezérlők + + + + Time Information + Idő Információ + + + + Frame: + + + 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... + + + + 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 + + + + + Show &Side Panel + Oldalsó &panel megjelenítése + + + + &Connect... + &Csatlakozás + + + + Compact Slots + + + + + Expand Slots + + + + + 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... + + + + 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.. +Szeretnéd ezt most megtenni? + CarlaInstrumentView + Show GUI + GUI megjelenítése + + + + CarlaSettingsW + + + Settings + Beállítások + + + + main + main + + + + canvas + canvas + + + + engine + engine + + + + osc + osc + + + + file-paths + file-paths + + + + plugin-paths + plugin-paths + + + + wine + wine + + + + experimental + experimental + + + + Widget + Widget + + + + + Main + + + + + + Canvas + Vászon + + + + + Engine + Motor + + + + File Paths + Fájl útvonalak + + + + Plugin Paths + Plugin útvonalak + + + + Wine + Wine + + + + + Experimental + Kísérleti + + + + <b>Main</b> + <b>Fő</b> + + + + Paths + Útvonalak + + + + Default project folder: + Alapértelmezett projekt mappa: + + + + Interface + Felület: + + + + 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 + + + + 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: - Click here to show or hide the graphical user interface (GUI) of Carla. + + ... + ... + + + + Reset Xrun counter after project load + Xrun számláló lenullázása projekt betöltésekor + + + + Plugin UIs + Pluginek 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 + + + + + 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 + + + + 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) + + + + 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 + + + + Used for the "midifile" plugin + A "midifile" plugin számára + + + + + Add... + Hozzáadás... + + + + + Remove + Eltávolítás + + + + + Change... + Módosít... + + + + <b>Plugin Paths</b> + <b>Plugin útvonalak</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + 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 + + + + 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. + + + + <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) + + + + + 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. + + + + Force mono plugins as stereo + Monó pluginek kényszerítése sztereóként + + + + Prevent plugins from doing bad stuff (needs restart) + + + + + Whenever possible, run the plugins in bridge mode. + + + + + 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 - - - - Controllers are able to automate the value of a knob, slider, and other controls. - + Paraméterek + Rename controller - + Vezérlő átnevezése + Enter the new name for this controller - - - - &Remove this controller - - - - Re&name 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: - + + Band 1/2 crossover: + Sáv 1/2 frekvencia: - Band 2/3 Crossover: - + + Band 2/3 crossover: + Sáv 2/3 frekvencia: - Band 3/4 Crossover: - + + Band 3/4 crossover: + Sáv 3/4 frekvencia: - Band 1 Gain: - + + Band 1 gain + Sáv 1 erősítés - Band 2 Gain: - + + Band 1 gain: + Sáv 1 erősítés: - Band 3 Gain: - + + Band 2 gain + Sáv 2 erősítés - Band 4 Gain: - + + Band 2 gain: + Sáv 2 erősítés: - Band 1 Mute - + + Band 3 gain + Sáv 3 erősítés - Mute Band 1 - + + Band 3 gain: + Sáv 3 erősítés: - Band 2 Mute - + + Band 4 gain + Sáv 4 erősítés - Mute Band 2 - + + Band 4 gain: + Sáv 4 erősítés: - Band 3 Mute - + + Band 1 mute + Sáv 1 némítás - Mute Band 3 - + + Mute band 1 + Sáv 1 némítás - Band 4 Mute - + + Band 2 mute + Sáv 2 némítás - Mute Band 4 - + + 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 - + + Delay samples + Késleltetési idő + Feedback - + Visszacsatolás - Lfo Frequency - + + LFO frequency + LFO frekvencia - Lfo Amount - + + LFO amount + LFO mennyiség + Output gain Kimeneti erősítés @@ -1003,228 +3337,529 @@ If you're interested in translating LMMS in another language or want to imp DelayControlsDialog - Lfo Amt - + + DELAY + IDŐ - Delay Time - + + Delay time + Késleltetési idő - Feedback Amount - + + FDBK + FDBK - Lfo - + + Feedback amount + Visszacsatolás mennyisége: - Out Gain - + + 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 - DELAY + + 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 + Carla Control - Kapcsolódás + + + + Remote setup + Távoli kapcsolat beállítása + + + + UDP Port: + UDP Port: + + + + Remote host: + Távoli hoszt: + + + + TCP Port: + TCP Port: + + + + Reported host - FDBK + + 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 + Érték megadása + + + + TextLabel + TextLabel + + + + Scale Points + Beosztás + + + + DriverSettingsW + + + Driver Settings + Driver Beállítások + + + + Device: + Eszköz: + + + + Buffer size: + Buffer méret: + + + + Sample rate: + Mintavételi frekvencia: + + + + Triple buffer - RATE - + + Show Driver Control Panel + Driver vezérlőpaneljének megnyitása - AMNT - + + Restart the engine to load the new settings + Indítsd újra a motort az új beállítások betöltéséhez DualFilterControlDialog - Filter 1 enabled - - - - Filter 2 enabled - - - - Click to enable/disable Filter 1 - - - - Click to enable/disable Filter 2 - - - + + 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 1 frequency - + + 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 2 frequency - + + Cutoff frequency 2 + Vágási frekvencia 2 + Q/Resonance 2 - + Q/Rezonancia 2 + Gain 2 - + Erősítés 2 - LowPass - + + + Low-pass + Aluláteresztő - HiPass - + + + Hi-pass + Felüláteresztő - BandPass csg - + + + Band-pass csg + Sáváteresztő csg - BandPass czpg - + + + Band-pass czpg + Sáváteresztő czpg + + Notch - + Lyukszűrő - Allpass - + + + 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 LowPass - - - - RC LowPass 12dB - - - - RC BandPass 12dB - - - - RC HighPass 12dB - - - - RC LowPass 24dB - - - - RC BandPass 24dB - - - - RC HighPass 24dB - - - - Vocal Formant Filter - - - + + 2x Moog - + 2x Moog - SV LowPass - + + + SV Low-pass + SV aluláteresztő - SV BandPass - + + + SV Band-pass + SV sáváteresztő - SV HighPass - + + + SV High-pass + SV felüláteresztő + + SV Notch - + SV lyukszűrő + + Fast Formant + + Tripole @@ -1232,1048 +3867,1624 @@ If you're interested in translating LMMS in another language or want to imp 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 - Transport controls + + 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 - Toggles the effect on or off. - - - + On/Off - + Be/Ki + W/D - + W/D + Wet Level: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - - - + DECAY + Time: - - - - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - + Idő: + GATE + Gate: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - - - + Controls - - - - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - + Paraméterek + Move &up - + Mozgatás &fel + Move &down - + Mozgatás &le + &Remove this plugin - + Plugin &eltávolítása EnvelopeAndLfoParameters - Predelay + + Env pre-delay - Attack + + Env attack - Hold + + Env hold - Decay + + Env decay - Sustain + + Env sustain - Release + + Env release - Modulation + + Env mod amount - LFO Predelay - + + LFO pre-delay + LFO késleltetés - LFO Attack - + + LFO attack + LFO felfutás - LFO speed - + + LFO frequency + LFO frekvencia - LFO Modulation - + + LFO mod amount + LFO moduláció mértéke - LFO Wave Shape - + + LFO wave shape + LFO hullámforma - Freq x 100 - + + LFO frequency x 100 + LFO frekvencia x 100 - Modulate Env-Amount + + Modulate env amount EnvelopeAndLfoView + + DEL - + DEL - Predelay: - - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - + + + Pre-delay: + Késleltetés: + + ATT - + ATT + + Attack: - - - - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - + Felfutás: + HOLD - + HOLD + Hold: - - - - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - + Tartás: + DEC - + DEC + Decay: - - - - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - + Decay: + SUST - + SUST + Sustain: - - - - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - + Kitartás: + REL - + REL + Release: - - - - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - + Lecsengés: + + AMT - + AMT + + Modulation amount: - - - - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - - - - LFO predelay: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - - - - LFO- attack: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - + Moduláció mértéke: + SPD - + SPD - LFO speed: - - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - - - - Click here for a sine-wave. - - - - Click here for a triangle-wave. - - - - Click here for a saw-wave for current. - - - - Click here for a square-wave. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - + + Frequency: + Frekvencia: + FREQ x 100 + FREKVENCIA x 100 + + + + Multiply LFO frequency by 100 + LFO frekvencia szorzása 100-zal + + + + MODULATE ENV AMOUNT - Click here if the frequency of this LFO should be multiplied by 100. - - - - multiply LFO-frequency by 100 - - - - MODULATE ENV-AMOUNT - - - - Click here to make the envelope-amount controlled by this LFO. - - - - control envelope-amount by this LFO - + + 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 a sample from somewhere and drop it in this window. - - - - Click here for random wave. - + + 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 + + Low-shelf gain + Peak 1 gain + Peak 2 gain + Peak 3 gain + Peak 4 gain - High Shelf gain + + High-shelf gain + HP res + Felüláteresztő rezonancia + + + + Low-shelf res - Low Shelf res - - - + Peak 1 BW + Peak 2 BW + Peak 3 BW + Peak 4 BW - High Shelf res + + High-shelf res + LP res - + Aluláteresztő rezonancia + HP freq + Felüláteresztő frekvencia + + + + Low-shelf freq - Low Shelf freq - - - + Peak 1 freq + Peak 2 freq + Peak 3 freq + Peak 4 freq - High shelf freq + + High-shelf freq + LP freq - + Aluláteresztő frekvencia + HP active + Felüláteresztő aktív + + + + Low-shelf active - Low shelf active - - - + Peak 1 active + Peak 2 active + Peak 3 active + Peak 4 active - High shelf 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 - + + Low-pass type + Aluláteresztő meredeksége - high pass type - + + 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 - Low Shelf - - - + Peak 1 + Peak 2 + Peak 3 + Peak 4 - High Shelf + + High-shelf + LP - + Aluláteresztő - In Gain - + + Input gain + Bemeneti erősítés + + + Gain Erősítés - Out Gain - + + Output gain + Kimeneti erősítés + Bandwidth: - + Sávszélesség: + + Octave + Oktáv + + + Resonance : - + Rezonancia: + Frequency: Frekvencia: - lp grp - + + LP group + LP csoport - hp grp - - - - Octave - + + HP group + HP csoport EqHandle + Reso: - + Rezonancia: + BW: - + Sávszélesség: + + Freq: - + Frekvencia: ExportProjectDialog + Export project - + Projekt exportálása - Output - + + Export as loop (remove extra bar) + Extra ütem eltávolítása a projekt végéről + + Export between loop markers + Csak a kijelölt terület exportálása + + + + Render Looped Section: + Ismételt tartomány renderelése ennyiszer: + + + + time(s) + + + + + File format settings + Fájlformátum + + + File format: - + Fájlformátum: - Samplerate: - + + Sampling rate: + Mintavételi frekvencia: + 44100 Hz - + 44100 Hz + 48000 Hz - + 48000 Hz + 88200 Hz - + 88200 Hz + 96000 Hz - + 96000 Hz + 192000 Hz - + 192000 Hz + + Bit depth: + Bitmélység: + + + + 16 Bit integer + 16 bites egész + + + + 24 Bit integer + 24 bites egész + + + + 32 Bit float + 32 bit lebegőpontos + + + + Stereo mode: + Sztereó mód: + + + + Mono + Monó + + + + Stereo + Sztereó + + + + Joint stereo + Összekapcsolt sztereó + + + + Compression level: + Tömörítési szint: + + + Bitrate: - + Bitsebesség: + 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 - Depth: - - - - 16 Bit Integer - - - - 32 Bit Float - - - - Please note that not all of the parameters above apply for all file formats. - + + Use variable bitrate + Változó bitsebesség használata + Quality settings - + Minőség + Interpolation: - + Interpoláció: - Zero Order Hold - + + Zero order hold + Zero order hold - Sinc Fastest - + + Sinc worst (fastest) + Sinc worst (leggyorsabb) - Sinc Medium (recommended) - + + Sinc medium (recommended) + Sinc medium (ajánlott) - Sinc Best (very slow!) - + + Sinc best (slowest) + Sinc best (leglassabb) - Oversampling (use with care!): - + + Oversampling: + Túlmintavételezés: + 1x (None) - + 1x (Nincs) + 2x - + 2x + 4x - + 4x + 8x - + 8x + Start - + Indítás + Cancel Mégse - Export as loop (remove end silence) - - - - Export between loop markers - - - + Could not open file - - - - Export project to %1 - - - - Error - - - - Error while determining file-encoder device. Please try to choose a different output format. - - - - Rendering: %1% - + 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 in new instrument-track/B+B Editor - + + 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... - - - - --- Factory files --- - - - - Open in new instrument-track/Song Editor - + Kis türelmet, hangminta betöltése előnézethez... + Error - + Hiba - does not appear to be a valid - + + %1 does not appear to be a valid %2 file + %1 nem tűnik érvényes %2 fájlnak. - file - + + --- Factory files --- + --- Gyári tartalom --- FlangerControls - Delay Samples - + + Delay samples + Késleltetési idő - Lfo Frequency - + + LFO frequency + LFO frekvencia + Seconds - + Erősség + + Stereo phase + Sztereó fázis + + + Regen - + Visszacsatolás + Noise - + Zaj + Invert - + Invertálás FlangerControlsDialog - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - + DELAY - + IDŐ + + Delay time: + Késleltetési idő: + + + RATE - + FREKV - Rate: - + + 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 - Invert + + 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 - FxLine + MixerLine + Channel send amount - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - + 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 - FxMixer + MixerLineLcdSpinBox + + Assign to: + Hozzárendelés: + + + + New mixer Channel + Új csatorna + + + + Mixer + + Master - + Master - FX %1 - - - - - FxMixerView - - FX-Mixer - + + + + Channel %1 + FX %1 - FX Fader %1 - + + Volume + Hangerő + Mute - - - - Mute this FX channel - + Némítás + Solo - - - - Solo FX channel - + Szóló - FxRoute + 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 @@ -2281,740 +5492,875 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - Open other GIG file - - - - Click here to open another GIG file - - - - Choose the patch - - - - Click here to change which patch of the GIG file to use - - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - - - - Gain - Erősítés - - - Factor to multiply samples by - - - + + 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 - - - - Random - - - - Free - - - - Sort - - - - Sync - + Fel és le + Down and up - + Le és fel - Skip rate - + + Random + Véletlenszerű - Miss rate - + + Free + Szabad - Cycle steps - + + Sort + Sorrend + + + + Sync + Szinkron InstrumentFunctionArpeggioView + ARPEGGIO - - - - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - + ARPEGGIO + RANGE + Arpeggio range: - + Arpeggio tartomány: + octave(s) + oktáv + + + + REP - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - + + Note repeats: + Ismétlés: - TIME - - - - Arpeggio time: - - - - ms - - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - - - - GATE - - - - Arpeggio gate: - - - - % - - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - Chord: - - - - Direction: - - - - Mode: - - - - SKIP - - - - Skip rate: - - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - MISS - - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. - + + time(s) + + CYCLE + Cycle notes: + note(s) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + 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 + 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 - Phrygolydian - + + Phrygian + Fríg + Lydian - + Líd + Mixolydian - + Mixolíd + Aeolian - + Eol + Locrian - - - - Chords - - - - Chord type - - - - Chord range - + 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 - RANGE - - - - Chord range: - - - - octave(s) - - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - - + STACKING + Chord: + Akkord: + + + + RANGE + + + Chord range: + Akkord tartomány: + + + + octave(s) + oktáv + InstrumentMidiIOView + ENABLE MIDI INPUT - - - - CHANNEL - - - - VELOCITY - + 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 - PROGRAM - - - - MIDI devices to receive MIDI events from - - - - MIDI devices to send MIDI events to - + + 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 + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + BASE VELOCITY @@ -3022,137 +6368,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView + MASTER PITCH - + TRANSZPONÁLÁS - Enables the use of Master Pitch - + + Enables the use of master pitch + Transzponálás engedélyezése InstrumentSoundShaping + VOLUME - + HANGERŐ + Volume Hangerő + CUTOFF + + 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 - LowPass - + + Low-pass + Aluláteresztő - HiPass - + + Hi-pass + Felüláteresztő - BandPass csg - + + Band-pass csg + Sáváteresztő csg - BandPass czpg - + + Band-pass czpg + Sáváteresztő czpg + Notch - + Lyukszűrő - Allpass - + + 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 LowPass - - - - RC LowPass 12dB - - - - RC BandPass 12dB - - - - RC HighPass 12dB - - - - RC LowPass 24dB - - - - RC BandPass 24dB - - - - RC HighPass 24dB - - - - Vocal Formant Filter - - - + 2x Moog - + 2x Moog - SV LowPass - + + SV Low-pass + SV aluláteresztő - SV BandPass - + + SV Band-pass + SV sáváteresztő - SV HighPass - + + SV High-pass + SV felüláteresztő + SV Notch - + SV lyukszűrő + Fast Formant + Tripole @@ -3160,474 +6540,646 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView + TARGET - - - - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - + CÉL + FILTER - - - - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - - - - Hz - - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - - - - RESO - - - - Resonance: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - + SZŰRŐ + FREQ - + FREKV - cutoff frequency: - + + 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 - - - - FX channel - - - - Default preset - - - - With this knob you can set the volume of the opened channel. - - - - Base note - + Hangmagasság + Pitch range - + Hangmagasság tartomány - Master Pitch - + + 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 - FX %1: %2 - + + 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 - Instrument volume - + + Volume + Hangerő + Volume: Hangerő: + VOL - + VOL + Panning - + Panoráma + Panning: - + Panoráma: + PAN - + PAN + Pitch - + Hangmagasság + Pitch: - + Hangmagasság: + cents - + cent + PITCH - FX channel - - - - ENV/LFO - - - - FUNC - - - - FX - - - - MIDI - - - - Save preset - - - - XML preset file (*.xpf) - - - - PLUGIN - - - + Pitch range (semitones) - + Hangmagasság tartomány (félhangok) + RANGE + + Mixer channel + Keverő csatorna + + + + CHANNEL + FX + + + Save current instrument track settings in a preset file - - - - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - - - - MISC - - - - Use these controls to view and edit the next/previous track in the song editor. - + 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 + + + Effects + Effektek + + + + MIDI + MIDI + + + + Miscellaneous + Egyéb + + + + Save preset + Preset mentése + + + + XML preset file (*.xpf) + XML preset fájl (*.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 + + + + + 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: - - - - Sorry, no help available. - + É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 Controller - + LFO + BASE - + ALAP - Base amount: - + + Base: + Alapérték: - todo - + + FREQ + FREKV - SPD - + + LFO frequency: + LFO frekvencia: - LFO-speed: - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - + + AMNT + AMNT + Modulation amount: - - - - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - + Moduláció mértéke: + PHS + Phase offset: - + Fáziseltolás: - degrees - + + degrees + fok - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - + + Sine wave + Szinuszhullám - Click here for a sine-wave. - + + Triangle wave + Háromszöghullám - Click here for a triangle-wave. - + + Saw wave + Fűrészfoghullám - Click here for a saw-wave. - + + Square wave + Négyszöghullám - Click here for a square-wave. - + + Moog saw wave + Moog fűrészfog - Click here for an exponential wave. - + + Exponential wave + Exponenciális - Click here for white-noise. - + + White noise + Fehér zaj - Click here for a user-defined shape. + + 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. - Click here for a moog saw-wave. - + + Mutliply modulation frequency by 1 + Frekvencia szorzása 1-gyel - AMNT - + + Mutliply modulation frequency by 100 + Frekvencia szorzása 100-zal + + + + Divide modulation frequency by 100 + Frekvencia osztása 100-zal - LmmsCore + 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 @@ -3635,403 +7187,510 @@ Double click to pick a file. MainWindow - Could not save config-file + + 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. - Could not save configuration file %1. You're probably not permitted to write to this file. -Please make sure you have write-access to the file and try again. - + + + 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ó - What's this? - Mi ez? - - + 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ő - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - - - + + Beat+Bassline Editor - - - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - + Beat+Bassline szerkesztő + + Piano Roll - - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - + Piano Roll + + Automation Editor - + Automatizáció szerkesztő - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - + + + Mixer + Keverő - FX Mixer - + + Show/hide controller rack + Controller Rack megjelenítése/elrejtése - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - - - - Project Notes - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - - - - Controller Rack - + + 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é menteni most? + 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. - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) + + Controller Rack + Vezérlő Rack - Version %1 - Verzió %1 + + Project Notes + Jegyzetek - Configuration file - Konfigurációs fájl - - - Error while parsing configuration file at line %1:%2: %3 - - - - Volumes - Hangerők - - - Undo - Visszavonás - - - Redo - Mégis - - - My Projects - Projektjeim - - - My Samples - Mintáim - - - My Presets - - - - My Home - Mappám - - - My Computer - Számítógépem - - - &File - &Fájl - - - &Recently Opened Projects - &Legutóbbi projektek - - - Save as New &Version - Mentés új &verzióként - - - E&xport Tracks... - - - - Online Help - - - - What's This? - - - - Open Project - Projekt megnyitása - - - Save Project - Projekt mentése - - - 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. - - - - Ignore - - - - Launch LMMS as usual but with automatic backup disabled to prevent the present recover file from being overwritten. - - - - Discard - - - - Launch a default session and delete the restored files. This is not reversible. - - - - Preparing plugin browser - - - - Preparing file browsers - - - - Root directory - - - - Loading background artwork - - - - New from template - - - - Save as default template - - - - &View - &Nézet - - - Toggle metronome - - - - Show/hide Song-Editor - - - - Show/hide Beat+Bassline Editor - - - - Show/hide Piano-Roll - - - - Show/hide Automation Editor - - - - Show/hide FX Mixer - - - - Show/hide project notes - - - - Show/hide controller rack - - - - Recover session. Please save your work! - - - - Automatic backup disabled. Remember to save your work! - - - - 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? - - - - LMMS Project - - - - LMMS Project Template - - - - Overwrite default template? - - - - This will overwrite your current default template. - + + Fullscreen + Teljes képernyő + Volume as dBFS - + Hangerő dBFS-ként + Smooth scroll - + Sima görgetés + Enable note labels in piano roll - Save project template - + + 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 @@ -4039,1176 +7698,1835 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 do not have 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 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 + + + MIDI Pattern + MIDI Pattern + + + + Time Signature: + Ütemjelzés: + + + + + + 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: - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + 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: + Alapértelmezett hossz: + + + + + 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: + Kvantálás: + + + + &File + &Fájl + + + + &Edit + &Szerkesztés + + + + &Quit + &Kilépés + + + + &Insert Mode + + + F + F + + + + &Velocity Mode + + + + + 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 - Output MIDI program - - - - Receive MIDI-events - - - - Send MIDI-events - - - + 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 + + Device + Eszköz MonstroInstrument - Osc 1 Volume + + 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 1 Panning + + Osc 2 sync reverse - Osc 1 Coarse detune - + + Osc 3 volume + Osc 3 hangerő - Osc 1 Fine detune left - + + Osc 3 panning + Osc 3 panoráma - 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 coarse detune + Osc 3 hangolás + Osc 3 Stereo phase offset + Osc 3 sztereó fáziseltolás + + + + Osc 3 sub-oscillator mix - 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 Waveform 1 + + Osc 3 Sync reverse - Osc 3 Waveform 2 - + + LFO 1 waveform + LFO 1 hullámforma - Osc 3 Sync Hard - + + LFO 1 attack + LFO 1 felfutás - Osc 3 Sync Reverse - + + LFO 1 rate + LFO 1 frekvencia - LFO 1 Waveform - + + LFO 1 phase + LFO 1 fázis - LFO 1 Attack - + + LFO 2 waveform + LFO 2 hullámforma - LFO 1 Rate - + + LFO 2 attack + LFO 2 felfutás - LFO 1 Phase - + + LFO 2 rate + LFO 2 frekvencia - LFO 2 Waveform - + + LFO 2 phase + LFO 2 fázis - LFO 2 Attack - + + Env 1 pre-delay + Burkológörbe 1 késleltetés - LFO 2 Rate - + + Env 1 attack + Burkológörbe 1 felfutás - LFO 2 Phase - + + Env 1 hold + Env 1 hold - Env 1 Pre-delay - + + Env 1 decay + Env 1 decay - Env 1 Attack - + + Env 1 sustain + Env 1 sustain - Env 1 Hold - + + Env 1 release + Env 1 release - Env 1 Decay - + + Env 1 slope + Burkológörbe 1 meredekség - Env 1 Sustain - + + Env 2 pre-delay + Env 2 késleltetés - Env 1 Release - + + Env 2 attack + Env 2 attack - Env 1 Slope - + + Env 2 hold + Env 2 hold - Env 2 Pre-delay - + + Env 2 decay + Env 2 decay - Env 2 Attack - + + Env 2 sustain + Env 2 sustain - Env 2 Hold - + + Env 2 release + Env 2 release - Env 2 Decay - + + Env 2 slope + Burkológörbe 2 meredekség - Env 2 Sustain - - - - Env 2 Release - - - - Env 2 Slope - - - - Osc2-3 modulation - + + Osc 2+3 modulation + Osc 2+3 moduláció + Selected view - + Kiválasztott nézet - Vol1-Env1 - + + Osc 1 - Vol env 1 + Osc 1 - Vol env 1 - Vol1-Env2 - + + Osc 1 - Vol env 2 + Osc 1 - Vol env 2 - Vol1-LFO1 - + + Osc 1 - Vol LFO 1 + Osc 1 - Hangerő LFO 1 - Vol1-LFO2 - + + Osc 1 - Vol LFO 2 + Osc 1 - Hangerő LFO 2 - Vol2-Env1 - + + Osc 2 - Vol env 1 + Osc 2 - Vol env 1 - Vol2-Env2 - + + Osc 2 - Vol env 2 + Osc 2 - Vol env 2 - Vol2-LFO1 - + + Osc 2 - Vol LFO 1 + Osc 2 - Hangerő LFO 1 - Vol2-LFO2 - + + Osc 2 - Vol LFO 2 + Osc 2 - Hangerő LFO 2 - Vol3-Env1 - + + Osc 3 - Vol env 1 + Osc 3 - Vol env 1 - Vol3-Env2 - + + Osc 3 - Vol env 2 + Osc 3 - Vol env 2 - Vol3-LFO1 - + + Osc 3 - Vol LFO 1 + Osc 3 - Hangerő LFO 1 - Vol3-LFO2 - + + Osc 3 - Vol LFO 2 + Osc 3 - Hangerő LFO 2 - Phs1-Env1 - + + Osc 1 - Phs env 1 + Osc 1 - Phs env 1 - Phs1-Env2 - + + Osc 1 - Phs env 2 + Osc 1 - Phs env 2 - Phs1-LFO1 - + + Osc 1 - Phs LFO 1 + Osc 1 - Fázis LFO 1 - Phs1-LFO2 - + + Osc 1 - Phs LFO 2 + Osc 1 - Fázis LFO 2 - Phs2-Env1 - + + Osc 2 - Phs env 1 + Osc 2 - Phs env 1 - Phs2-Env2 - + + Osc 2 - Phs env 2 + Osc 2 - Phs env 2 - Phs2-LFO1 - + + Osc 2 - Phs LFO 1 + Osc 2 - Fázis LFO 1 - Phs2-LFO2 - + + Osc 2 - Phs LFO 2 + Osc 2 - Fázis LFO 2 - Phs3-Env1 - + + Osc 3 - Phs env 1 + Osc 3 - Phs env 1 - Phs3-Env2 - + + Osc 3 - Phs env 2 + Osc 3 - Phs env 2 - Phs3-LFO1 - + + Osc 3 - Phs LFO 1 + Osc 3 - Fázis LFO 1 - Phs3-LFO2 - + + Osc 3 - Phs LFO 2 + Osc 3 - Fázis LFO 2 - Pit1-Env1 - + + Osc 1 - Pit env 1 + Osc 1 - Pit env 1 - Pit1-Env2 - + + Osc 1 - Pit env 2 + Osc 1 - Pit env 2 - Pit1-LFO1 - + + Osc 1 - Pit LFO 1 + Osc 1 - Pit LFO 1 - Pit1-LFO2 - + + Osc 1 - Pit LFO 2 + Osc 1 - Pit LFO 2 - Pit2-Env1 - + + Osc 2 - Pit env 1 + Osc 2 - Pit env 1 - Pit2-Env2 - + + Osc 2 - Pit env 2 + Osc 2 - Pit env 2 - Pit2-LFO1 - + + Osc 2 - Pit LFO 1 + Osc 2 - Pit LFO 1 - Pit2-LFO2 - + + Osc 2 - Pit LFO 2 + Osc 2 - Pit LFO 2 - Pit3-Env1 - + + Osc 3 - Pit env 1 + Osc 3 - Pit env 1 - Pit3-Env2 - + + Osc 3 - Pit env 2 + Osc 3 - Pit env 2 - Pit3-LFO1 - + + Osc 3 - Pit LFO 1 + Osc 3 - Pit LFO 1 - Pit3-LFO2 - + + Osc 3 - Pit LFO 2 + Osc 3 - Pit LFO 2 - PW1-Env1 - + + Osc 1 - PW env 1 + Osc 1 - PW env 1 - PW1-Env2 - + + Osc 1 - PW env 2 + Osc 1 - PW env 2 - PW1-LFO1 - + + Osc 1 - PW LFO 1 + Osc 1 - PW LFO 1 - PW1-LFO2 - + + Osc 1 - PW LFO 2 + Osc 1 - PW LFO 2 - Sub3-Env1 - + + Osc 3 - Sub env 1 + Osc 3 - Sub env 1 - Sub3-Env2 - + + Osc 3 - Sub env 2 + Osc 3 - Sub env 2 - Sub3-LFO1 - + + Osc 3 - Sub LFO 1 + Osc 3 - Sub LFO 1 - Sub3-LFO2 - + + 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 - - - - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - + Operátor nézet + Matrix view - - - - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - + Mátrix nézet + + + Volume Hangerő + + + Panning - + Panoráma + + + Coarse detune - + Elhangolás + + + semitones - + félhang - Finetune left - + + + Fine tune left + Finomhangolás bal + + + + cents - + cent - Finetune right - + + + 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: + + Dry gain: + Stages - + Fokozatok - Lowpass stages: - + + Low-pass stages: + Aluláteresztő fokozatok: + Swap inputs - + Bemenetek felcserélése - Swap left and right input channel for reflections + + Swap left and right input channels for reflections NesInstrument - Channel 1 Coarse detune + + 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 Volume - - - - Channel 1 Envelope length - - - - Channel 1 Duty cycle - - - - Channel 1 Sweep amount - - - - Channel 1 Sweep rate + + 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 Envelope length + + Channel 2 sweep rate - 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 + + 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 - + + 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 volume - - - - Osc %1 panning - - - - 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 - - - + 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 @@ -5216,100 +9534,103 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - - - - Click here to open another patch-file. Loop and Tune settings are not reset. - + + Open patch + Patch megnyitása + Loop - + Ismétlés + Loop mode - - - - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - + Ismétlési mód + Tune + Tune mode - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - - - + No file selected - + Nincs kiválasztva fájl + Open patch file - + Patch fájl megnyitása + Patch-Files (*.pat) - + Patch fájlok (*.pat) - PatternView + 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 - - - - use mouse wheel to set velocity of a step - - - - double-click to open in Piano Roll - + 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. @@ -5317,1285 +9638,3544 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK + LFO Controller - + LFO vezérlő PeakControllerEffectControlDialog + BASE - + ALAP - Base amount: - - - - Modulation amount: - - - - Attack: - - - - Release: - + + Base: + Alapérték: + AMNT - + AMNT + + Modulation amount: + Moduláció mértéke: + + + MULT - Amount Multiplicator: + + Amount multiplicator: + ATCK - + ATCK + + Attack: + Felfutás: + + + DCAY - + DCAY - Treshold: - + + 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 - - - - Mute output - + Moduláció mértéke + Attack - + Felfutás + Release - - - - Abs Value - - - - Amount Multiplicator - + Release + Treshold + Küszöb + + + + Mute output + Kimenet némítása + + + + Absolute value + Abszolútérték + + + + Amount multiplicator PianoRoll - Please open a pattern by double-clicking on it! - - - - Last note - - - - Note lock - - - + Note Velocity + Note Panning + Mark/unmark current semitone - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - - Velocity: %1% - - - - Panning: %1% left - - - - Panning: %1% right - - - - Panning: center - - - - Please enter a new value between %1 and %2: - - - + 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 pattern (Space) - + + 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 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Detune mode (Shift+T) - - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - - - - Copy selected notes (%1+C) - - - - Paste notes from clipboard (%1+V) - - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - + + 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? - Piano-Roll - no pattern - + + Open clip + Pattern megnyitása - Quantize - + + 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. - Instrument Plugins + + 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 + + + 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 Rack Instrument + + + + + 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 + + + + + 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 + + + + + Versatile drum synthesizer + + + + + List installed LADSPA plugins + Telepített LADSPA bővítmények listája + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + + + + + Incomplete monophonic imitation TB-303 + Félkész monofonikus TB-303 imitáció + + + + 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 + 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 + + + + Vibrating string modeler + Rezgő húrok fizikai modellezése + + + + plugin for using arbitrary VST effects inside LMMS. + + + + + 4-oscillator modulatable wavetable synth + + + + + plugin for waveshaping + + + + + 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 + + + + + Type + Típus + + + + Effects + Effektek + + + + Instruments + Hangszerek + + + + MIDI Plugins + MIDI pluginek + + + + Other/Misc + Egyéb + + + + Architecture + Architektúra + + + + Native + Natív + + + + Bridged + + + + + Bridged (Wine) + + + + + Requirements + Követelmények + + + + With Custom GUI + + + + + With CV Ports + + + + + 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 + + + Plugin Editor + + + + + Edit + Szerkesztés + + + + Control + Vezérlő + + + + MIDI Control Channel: + MIDI csatorna: + + + + N + N + + + + Output dry/wet (100%) + + + + + Output volume (100%) + Kimeneti hangerő (100%) + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Beállítások + + + + Use Chunks + + + + + Audio: + Audió: + + + + Fixed-Size Buffer + Fix méretű puffer + + + + Force Stereo (needs reload) + + + + + MIDI: + MIDI: + + + + Map Program Changes + + + + + 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 + + + + + +Plugin Name + + +Plugin 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: + + + + + Unique ID: + Egyedi azonosító: + PluginFactory + Plugin not found. - + A plugin nem található. + LMMS plugin %1 does not have a plugin descriptor named %2! + + PluginParameter + + + Form + Form + + + + Parameter Name + Paraméter név + + + + ... + ... + + + + PluginRefreshW + + + 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). + + + + + Run processing checks while scanning + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + >> Kihagyás + + + + Close + Bezárás + + + + PluginWidget + + + + + + + Frame + + + + + 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 + + + + Preset: + Preset: + + ProjectNotes - Project notes - + + Project Notes + Jegyzetek - Put down your project notes here. - + + 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-File (*.wav) - + + WAV (*.wav) + WAV (*.wav) - Compressed OGG-File (*.ogg) - + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin + Plugin újratöltése + + + + Show GUI + GUI megjelenítése + + + + Help + Súgó QWidget + + + + Name: - + Név: + + URI: + URI: + + + + + Maker: - + Készítő: + + + Copyright: + + Requires Real Time: + + + + + + Yes - + Igen + + + + + + No - + Nem + + Real Time Capable: + + In Place Broken: + + Channels In: - + Bemeneti csatornák: + + Channels Out: - - - - File: - + Kimeneti csatornák: + File: %1 - + Fájl: %1 + + + + File: + Fájl: + + + + RecentProjectsMenu + + + &Recently Opened Projects + &Legutóbbi projektek RenameDialog + Rename... + Átnevezés... + + + + ReverbSCControlDialog + + + Input + Bemenet + + + + Input gain: + Bemeneti erősítés: + + + + Size + Méret + + + + Size: + Méret: + + + + Color + Csillapítás + + + + Color: + Csillapítás: + + + + Output + Kimenet + + + + Output gain: + Kimeneti erősítés: + + + + ReverbSCControls + + + Input gain + Bemeneti erősítés + + + + Size + Méret + + + + Color + Csillapítás + + + + Output gain + Kimeneti erősítés + + + + SaControls + + + Pause + Megállítás + + + + Reference freeze + Referencia fagyasztás + + + + Waterfall + Spektogram + + + + 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 + + + + + Spectrum display resolution + Spektrum kijelző felbontás + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + Spektogram történet hossza + + + + Waterfall gamma correction + Spektogram gamma korrekció + + + + 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. + + + + + New sample contributes + + + + + Waterfall height + Spektogram magassága + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Keep + + + + + lines + + + + + 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 + + + + + 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 + Haladó beállítások + + + + Access advanced settings + Haladó beállítások megjelenítése + + + + + FFT block size + FFT blokk méret + + + + + FFT window type + FFT ablak típus + SampleBuffer + + 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 - - - - 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) - + 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) - SampleTCOView + SampleClipView - double-click to select sample - + + 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 - Sample track - - - + 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 - Setup LMMS - + + Reset to default value + Visszaállítás - General settings - + + Use built-in NaN handler + Beépített NaN kezelés használata - BUFFER SIZE - + + Settings + Beállítások - Reset to default-value - + + + General + Általános - MISC - - - - Enable tooltips - - - - Show restart warning after changing settings - + + 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 - Compress project files per default + + 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 - One instrument track window mode + + Smooth scroll in song editor + Sima görgetés a dalszerkesztőben + + + + Display playback cursor in AudioFileProcessor - HQ-mode for output audio-device - + + Plugins + Bővítmények - Compact track buttons - + + 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 - - - - Enable note labels in piano roll - - - - Enable waveform display by default - + 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 - Create backup file when saving a project - + + Buffer size + Buffer méret - LANGUAGE - + + + MIDI + MIDI - Paths - + + 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-plugin directory - + + 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 - STK rawwave directory - + + Some changes require restarting. + Egyes beállítások a program újraindítását követően lépnek érvénybe. - Default Soundfont File - + + Autosave interval: %1 + Automatikus mentés gyakorisága: %1 - Performance settings - + + Choose the LMMS working directory + Adja meg az LMMS mankakönyvtárat - UI effects vs. performance - + + Choose your VST plugins directory + Add meg a VST plugin könyvtárat - Smooth scroll in Song Editor - + + Choose your LADSPA plugins directory + Adja meg a LADSPA plugin könyvtárat - Show playback cursor in AudioFileProcessor - + + Choose your default SF2 + Adja meg az alapértelmezett SF2 fájlt - Audio settings - + + Choose your theme directory + Adja meg a grafikus téma könyvtárát - AUDIO INTERFACE - + + Choose your background picture + Háttérkép kiválasztása - MIDI settings - - - - MIDI INTERFACE - + + + Paths + Útvonalak + OK OK + Cancel Mégse - Restart LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - - - + Frames: %1 Latency: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - - - - Choose your VST-plugin directory - - - - Choose artwork-theme directory - - - - Choose LADSPA plugin directory - - - - Choose STK rawwave directory - - - - Choose default SoundFont - - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - - - - Directories - - - - Themes directory - - - - GIG directory - - - - SF2 directory - - - - LADSPA plugin directories - - - - Auto save - - - + 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 - - - - Enable auto-save - - - - Allow auto-save while playing - + perc + Disabled + Letiltva + + + + SidInstrument + + + Cutoff frequency + Vágási frekvencia + + + + Resonance + Rezonancia + + + + Filter type + Szűrő típus + + + + Voice 3 off - Auto-save interval: %1 + + Volume + Hangerő + + + + Chip model + Chip modell + + + + SidInstrumentView + + + 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 - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + 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 + + + Test + Teszt + + + + Pulse width: + Pulzusszélesség: + + + + SideBarWidget + + + 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 + + + + Project file contains local paths to plugins, which could be used to run malicious code. - 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 - - - - Empty project - - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - - - - Select directory for writing exported tracks... - - - - untitled - - - - Select file for project-export... - - - - The following errors occured while loading: - - - - MIDI File (*.mid) + + Can't load project: Project file contains local paths to plugins. + LMMS Error report + LMMS hibajelentés + + + + (repeated %1 times) - Save project - + + 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 - - - - Could not write 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. - - - - Tempo - - - - TEMPO/BPM - - - - tempo of song - - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - High quality mode - - - - Master volume - - - - master volume - - - - Master pitch - - - - master pitch - - - - Value: %1% - - - - Value: %1 semitones - - - - 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. - - - - template - - - - project - + A(z) %1 fájl hibát tartalmaz, ezért nem lehet betölteni. + Version difference - + Verzió eltérés - This %1 was created with LMMS %2. - + + 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) - - - - Add beat/bassline - - - - Add sample-track - - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - + 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 - SpectrumAnalyzerControlDialog + StepRecorderWidget - Linear spectrum - + + Hint + Tipp - Linear Y axis - - - - - SpectrumAnalyzerControls - - Linear spectrum - - - - Linear Y axis - - - - Channel mode + + Move recording curser using <Left/Right> arrows SubWindow + 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 + Synced to Whole Note + Synced to Half Note + Synced to Quarter Note + Synced to 8th Note + Synced to 16th Note + Synced to 32nd Note @@ -6603,30 +13183,37 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units - + + Time units + Időegység + MIN - + MIN + SEC + MSEC + BAR + BEAT + TICK @@ -6634,676 +13221,867 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - Enable/disable auto-scrolling - + + Auto scrolling + Automatikus görgetés - Enable/disable loop-points - + + Loop points + Loop pontok - After stopping go back to begin - + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - - Track + Mute - + Némítás + Solo - + Szóló 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... - TrackContentObject + Clip + Mute - + Némítás - TrackContentObjectView + ClipView + Current position - + Jelenlegi pozíció - Hint - + + 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. - Current length - - - + Press <%1> for free resizing. - %1:%2 (%3:%4 to %5:%6) - + + 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 + + + + Use track color + Sáv színének használata + + + + TrackContentWidget + + + Paste + Beillesztés TrackOperationsWidget - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Actions for this track - + + Actions + Műveletek + + Mute - + Némítás + + Solo - + Szóló - Mute this track - + + 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 - FX %1: %2 - + + 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 - Assign to new FX Channel - + + 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 - Use phase modulation for modulating oscillator 1 with oscillator 2 - + + Modulate phase of oscillator 1 by oscillator 2 + 1. oszcillátor fázisának modulációja a 2. oszcillátorral - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - + + 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 oscillator 1 & 2 - + + 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 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - + + Modulate frequency of oscillator 1 by oscillator 2 + 1. oszcillátor frekvenciájának modulációja a 2. oszcillátorral - Use phase modulation for modulating oscillator 2 with oscillator 3 - + + Modulate phase of oscillator 2 by oscillator 3 + 2. oszcillátor fázisának modulációja a 3. oszcillátorral - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - + + 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 oscillator 2 & 3 - + + 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 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - + + Modulate frequency of oscillator 2 by oscillator 3 + 2. oszcillátor frekvenciájának modulációja a 3. oszcillátorral + Osc %1 volume: - - - - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - + Osc %1 hangerő: + Osc %1 panning: - - - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - + Osc %1 panoráma: + Osc %1 coarse detuning: - + Osc %1 hangolás: + semitones - - - - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - + félhang + Osc %1 fine detuning left: - + Osc %1 finomhangolás bal: + + cents - - - - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - + cent + Osc %1 fine detuning right: - - - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - + Osc %1 finomhangolás jobb: + Osc %1 phase-offset: - + Osc %1 fáziseltolás: + + degrees - - - - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - + 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 - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. + + Logarithmic scale + Logaritmikus skála + + + + High quality + Magas minőség + + + + VecControlsDialog + + + HQ + HQ + + + + Double the resolution and simulate continuous analog-like trace. - Use a sine-wave for current oscillator. + + Log. scale + Log. skála + + + + Display amplitude on logarithmic scale to better see small values. - Use a triangle-wave for current oscillator. + + Persist. - Use a saw-wave for current oscillator. + + Trace persistence: higher amount means the trace will stay bright for longer time. - Use a square-wave for current oscillator. - - - - Use a moog-like saw-wave for current oscillator. - - - - Use an exponential wave for current oscillator. - - - - Use white-noise for current oscillator. - - - - Use a user-defined waveform for current oscillator. + + Trace persistence VersionedSaveDialog + Increment version number - + Verziószám növelése + 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 - Open other VST-plugin + + + Open VST plugin + VST plugin megnyitása + + + + Control VST plugin from LMMS host - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - - - - Show/hide GUI - - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - - - - Turn off all notes - - - - Open VST-plugin - - - - DLL-files (*.dll) - - - - EXE-files (*.exe) - - - - No VST-plugin loaded - - - - Control VST-plugin from LMMS host - - - - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - + + Open VST plugin preset + VST plugin preset megnyitása + Previous (-) - - - - Click here, if you want to switch to another VST-plugin preset program. - + Előző (-) + Save preset - - - - Click here, if you want to save current VST-plugin preset program. - + Preset mentése + Next (+) - + Következő (+) - Click here to select presets that are currently loaded in VST. - + + 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) + + + + No VST plugin loaded + Nincs VST plugin betöltve + + + Preset - + Preset + by - + készítő: + - VST plugin control - - - - - VisualizationWidget - - click to enable/disable visualization of master-output - - - - Click to enable - + - VST plugin vezérlők VstEffectControlDialog + Show/hide - Control VST-plugin from LMMS host + + Control VST plugin from LMMS host - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - + + Open VST plugin preset + VST plugin preset megnyitása + Previous (-) - - - - Click here, if you want to switch to another VST-plugin preset program. - + Előző (-) + Next (+) - - - - Click here to select presets that are currently loaded in VST. - + Következő (+) + Save preset - - - - Click here, if you want to save current VST-plugin preset program. - + 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 - Loading plugin - - - - Open Preset - - - - Vst Plugin Preset (*.fxp *.fxb) - - - - : default - - - - " - - - - ' - - - - Save Preset - - - - .fxp - - - - .FXP - - - - .FXB - - - - .fxb - - - - Please wait while loading VST plugin... - - - + + 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 @@ -7311,2638 +14089,2251 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - Select oscillator A1 - - - - Select oscillator A2 - - - - Select oscillator B1 - - - - Select oscillator B2 - - - - Mix output of A2 to A1 - - - - Modulate amplitude of A1 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with output of B2 - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - Load waveform - - - - Click to load a waveform from a sample file - - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - Normalizálás - - - Click to normalize - - - - Invert - - - - Click to invert - - - - Smooth - - - - Click to smooth - - - - Sine wave - Szinuszhullám - - - Click for sine wave - - - - Triangle wave - Háromszöghullám - - - Click for triangle wave - - - - Click for saw wave - - - - Square wave - Négyszöghullám - - - Click for square wave - - - + + + + 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 + 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 - + + Filter frequency + Szűrő frekvencia - Filter Resonance - + + Filter resonance + Szűrő rezonancia + Bandwidth + Sávszélesség + + + + FM gain - FM Gain + + Resonance center frequency - Resonance Center Frequency + + Resonance bandwidth - Resonance Bandwidth - - - - Forward MIDI Control Change Events - + + Forward MIDI control change events + MIDI CC események továbbítása ZynAddSubFxView - Show GUI - - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - - - + Portamento: - + Portamento: + PORT - + PORT - Filter Frequency: - + + Filter frequency: + Szűrő frekvencia: + FREQ - + FREKV - Filter Resonance: - + + Filter resonance: + Szűrő rezonancia: + RES - + RES + Bandwidth: - + Sávszélesség: + BW + BW + + + + FM gain: - FM Gain: - - - + FM GAIN + Resonance center frequency: + RES CF + Resonance bandwidth: + RES BW - + RES BW - Forward MIDI Control Changes - + + Forward MIDI control changes + MIDI CC események továbbítása + + + + Show GUI + GUI megjelenítése - audioFileProcessor + 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 - Loopback point - - - - Loop mode - - - + Interpolation mode - + Interpolációs mód + None - + Nincs + Linear - + Lineáris + Sinc - + Sinc + Sample not found: %1 - + Hangminta nem található: %1 - bitInvader + BitInvader - Samplelength - + + Sample length + Minta hossza - bitInvaderView + BitInvaderView - Sample Length - - - - Sine wave - Szinuszhullám - - - Triangle wave - Háromszöghullám - - - Saw wave - Fűrészfoghullám - - - Square wave - Négyszöghullám - - - White noise wave - - - - User defined wave - Felhasználó által megadott hullám - - - Smooth - - - - Click here to smooth waveform. - - - - Interpolation - - - - Normalize - Normalizálás + + Sample length + Minta hossza + Draw your own waveform here by dragging your mouse on this graph. - Click for a sine-wave. - + + + Sine wave + Szinuszhullám - Click here for a triangle-wave. - + + + Triangle wave + Háromszöghullám - Click here for a saw-wave. - + + + Saw wave + Fűrészfoghullám - Click here for a square-wave. - + + + Square wave + Négyszöghullám - Click here for white-noise. - + + + White noise + Fehér zaj - Click here for a user-defined shape. - + + + User-defined wave + Felhasználó által megadott hullám + + + + + Smooth waveform + Hullámforma simítása + + + + Interpolation + Interpoláció + + + + Normalize + Normalizálás - dynProcControlDialog + 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: - Reset waveform - + + + Reset wavegraph + Visszaállítás - Click here to reset the wavegraph back to default - + + + Smooth wavegraph + Lekerekítés - Smooth waveform - + + + Increase wavegraph amplitude by 1 dB + Amplitúdó növelése 1 dB-lel - Click here to apply smoothing to wavegraph - + + + Decrease wavegraph amplitude by 1 dB + Amplitúdó csökkentése 1 dB-lel - Increase wavegraph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease wavegraph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - - - - Stereomode Maximum - + + Stereo mode: maximum + Sztereó mód: maximum + Process based on the maximum of both stereo channels - + Feldolgozás a csatonák maximuma alapján - Stereomode Average - + + Stereo mode: average + Sztereó mód: átlag + Process based on the average of both stereo channels - + Feldolgozás a csatonák átlaga alapján - Stereomode Unlinked - + + 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 + DynProcControls + Input gain Bemeneti erősítés + Output gain Kimeneti erősítés + Attack time + Release time + Stereo mode - - - - - fxLineLcdSpinBox - - Assign to: - - - - New FX Channel - + Sztereó mód graphModel + Graph - kickerInstrument + 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 - Length - - - - Distortion Start - - - - Distortion End - - - - Envelope Slope - + + Envelope slope + Burkológörbe meredekség + Noise - + Zaj + Click - + Kattanás - Frequency Slope - + + Frequency slope + Frekvenciaváltozás sebessége + Start from note + End to note - kickerInstrumentView + KickerInstrumentView + Start frequency: - + Kezdő frekvencia: + End frequency: - + Végső frekvencia: + + Frequency slope: + Frekvenciaváltozás sebessége: + + + Gain: Erősítés: - Frequency Slope: - + + Envelope length: + Burkológörbe hossza: - Envelope Length: - - - - Envelope Slope: - + + Envelope slope: + Burkológörbe meredekség: + Click: - + Kattanás: + Noise: - + Zaj: - Distortion Start: - + + Start distortion: + Kezdeti torzítás: - Distortion End: - + + End distortion: + Végső torzítás: - ladspaBrowserView + LadspaBrowserView + + Available Effects - + Elérhető effektek + + Unavailable Effects - + Nem elérhető effektek + + Instruments - + Hangszerek + + Analysis Tools - + Analizáló eszközök + + Don't know - - - - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - + Ismeretlen + Type: Típus: - ladspaDescription + LadspaDescription + Plugins Bővítmények + Description Leírás - ladspaPortDialog + 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 + 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 + 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 + MalletsInstrument + Hardness - + Keménység + Position - + Pozíció - Vibrato Gain - + + Vibrato gain + Vibrato erősség - Vibrato Freq - + + Vibrato frequency + Vibrato frekvencia - Stick Mix - + + Stick mix + Ütő + Modulator - + Modulátor + Crossfade - + Keverési arány - LFO Speed - + + LFO speed + LFO sebesség - LFO Depth - + + LFO depth + LFO erősség + ADSR - + ADSR + Pressure - + Nyomás + Motion + Speed Sebesség + Bowed + Spread - + Szórás + Marimba - + Marimba + Vibraphone - + Vibrafon + Agogo - + Agogo - Wood1 - + + Wood 1 + Fa 1 + Reso - Wood2 - + + Wood 2 + Fa 2 + Beats - Two Fixed + + Two fixed + Clump - Tubular Bells + + Tubular bells + Csőharang + + + + Uniform bar - Uniform Bar - - - - Tuned Bar + + Tuned bar + Glass - Tibetan Bowl - + + Tibetan bowl + Tibeti hangtál - malletsInstrumentView + MalletsInstrumentView + Instrument - + Hangszer + Spread - + Szórás + Spread: - - - - Hardness - - - - Hardness: - - - - Position - - - - Position: - - - - Vib Gain - - - - Vib Gain: - - - - Vib Freq - - - - Vib Freq: - - - - Stick Mix - - - - Stick Mix: - - - - Modulator - - - - Modulator: - - - - Crossfade - - - - Crossfade: - - - - LFO Speed - - - - LFO Speed: - - - - LFO Depth - - - - LFO Depth: - - - - ADSR - - - - ADSR: - - - - Pressure - - - - Pressure: - - - - Speed - Sebesség - - - Speed: - Sebesség: + 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 + ManageVSTEffectView + - VST parameter control - + - VST plugin vezérlők - VST Sync - - - - Click here if you want to synchronize all parameters with VST plugin. - + + VST sync + VST Szinkron + + Automated - - - - Click here if you want to display automated parameters only. - + Automatizált + Close - - - - Close VST effect knob-controller window. - + Bezárás - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - + - VST plugin vezérlők + VST Sync - - - - Click here if you want to synchronize all parameters with VST plugin. - + VST Szinkron + + Automated - - - - Click here if you want to display automated parameters only. - + Automatizált + Close - - - - Close VST plugin knob-controller window. - + Bezárás - opl2instrument - - Patch - - - - Op 1 Attack - - - - Op 1 Decay - - - - Op 1 Sustain - - - - Op 1 Release - - - - Op 1 Level - - - - Op 1 Level Scaling - - - - Op 1 Frequency Multiple - - - - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - - - - Vibrato Depth - - - - Tremolo Depth - - - - - opl2instrumentView - - Attack - - - - Decay - - - - Release - - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion - + Torzítás + Volume Hangerő - organicInstrumentView + 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: - - - - cents - - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - + Osc %1 panoráma: + Osc %1 stereo detuning - + Osc %1 sztereó elhangolás + + cents + cent + + + Osc %1 harmonic: - + Osc %1 harmonikus: - FreeBoyInstrument - - Sweep time - - - - Sweep direction - - - - Sweep RtShift amount - - - - Wave Pattern Duty - - - - Channel 1 volume - - - - Volume sweep direction - - - - Length of each step in sweep - - - - Channel 2 volume - - - - Channel 3 volume - - - - Channel 4 volume - - - - 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 - - - - Shift Register width - - - - - FreeBoyInstrumentView - - Sweep Time: - - - - Sweep Time - - - - Sweep RtShift amount: - - - - Sweep RtShift amount - - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - - - - Length of each step in sweep: - - - - Length of each step in sweep - - - - Wave pattern duty - - - - Square Channel 2 Volume: - - - - Square Channel 2 Volume - - - - Wave Channel Volume: - - - - Wave 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 - - - - Channel1 to SO1 (Right) - - - - Channel2 to SO1 (Right) - - - - Channel3 to SO1 (Right) - - - - Channel4 to SO1 (Right) - - - - Channel1 to SO2 (Left) - - - - Channel2 to SO2 (Left) - - - - Channel3 to SO2 (Left) - - - - Channel4 to SO2 (Left) - - - - Wave Pattern - - - - The amount of increase or decrease in frequency - - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - - - - Draw the wave here - - - - - patchesDialog + 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 - pluginBrowser - - no description - - - - Incomplete monophonic imitation tb303 - Félkész monofonikus tb303 imitáció - - - Plugin for freely manipulating stereo output - Bővítmény a sztereó kimenet manipulálásához - - - Plugin for controlling knobs with sound peaks - - - - 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 - - - List installed LADSPA plugins - Telepített LADSPA bővítmények listája - - - GUS-compatible patch instrument - - - - Additive Synthesizer for organ-like sounds - Additív szintetizátor orgonaszerű hangokhoz - - - Tuneful things to bang on - - - - VST-host for using VST(i)-plugins within LMMS - - - - Vibrating string modeler - - - - plugin for using arbitrary LADSPA-effects inside LMMS. - - - - Filter for importing MIDI-files into LMMS - - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - - - - Player for SoundFont files - Lejátszó a SoundFont fájlokhoz - - - Emulation of GameBoy (TM) APU - A GameBoy (TM) APU emulációja - - - Customizable wavetable synthesizer - - - - Embedded ZynAddSubFX - Beágyazott ZynAddSubFX - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - - - - LMMS port of sfxr - - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - - - - Carla Rack Instrument - - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - - - - plugin for using arbitrary VST effects inside LMMS. - - - - Graphical spectrum analyzer plugin - - - - A NES-like synthesizer - - - - A native delay plugin - - - - Player for GIG files - - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - - - - - sf2Instrument + Sf2Instrument + Bank - + Bank + Patch - + Patch + Gain Erősítés + Reverb - + Zengető - Reverb Roomsize - + + Reverb room size + Terem méret - Reverb Damping - + + Reverb damping + Csillapítás - Reverb Width - + + Reverb width + Szélesség - Reverb Level - + + Reverb level + Zengető mennyiség + Chorus - + Kórus - Chorus Lines - + + Chorus voices + Szólamok száma - Chorus Level - + + Chorus level + Kórus mennyiség - Chorus Speed - + + Chorus speed + Kórus frekvencia - Chorus Depth - + + Chorus depth + Kórus mélység + A soundfont %1 could not be loaded. - + A(z) %1 SoundFont nem tölthető be. - sf2InstrumentView - - Open other SoundFont file - - - - Click here to open another SF2 file - - - - Choose the patch - - - - Gain - Erősítés - - - Apply reverb (if supported) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - - - - Reverb Roomsize: - - - - Reverb Damping: - - - - Reverb Width: - - - - Reverb Level: - - - - Apply chorus (if supported) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - - - - Chorus Lines: - - - - Chorus Level: - - - - Chorus Speed: - - - - Chorus Depth: - - + Sf2InstrumentView + + Open SoundFont file - + SoundFont fájl megnyitása - SoundFont2 Files (*.sf2) - - - - - sfxrInstrument - - Wave Form - - - - - sidInstrument - - Cutoff - + + Choose patch + Patch kiválasztása - Resonance - + + Gain: + Erősítés: - Filter type - + + Apply reverb (if supported) + Zengető alkalmazása (ha támogatott) - Voice 3 off - + + Room size: + Terem méret: - Volume - Hangerő - - - Chip model - - - - - sidInstrumentView - - Volume: - Hangerő: - - - Resonance: - - - - Cutoff frequency: - - - - High-Pass filter - - - - Band-Pass filter - - - - Low-Pass filter - - - - Voice3 Off - - - - MOS6581 SID - - - - MOS8580 SID - - - - Attack: - - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - - - - Decay: - - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - Sustain: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - Release: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - Pulse Width: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - Coarse: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - Pulse Wave - - - - Triangle Wave - - - - SawTooth - - - - Noise - - - - Sync - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - Ring-Mod - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - Filtered - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - Test - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - - - - - stereoEnhancerControlDialog - - WIDE - + + 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) - stereoEnhancerControls + SfxrInstrument + + Wave + Hullám + + + + StereoEnhancerControlDialog + + + WIDTH + SZÉLESSÉG + + + + Width: + Szélesség: + + + + StereoEnhancerControls + + Width - + Szélesség - stereoMatrixControlDialog + 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 + StereoMatrixControls + Left to Left - + Bal - Bal + Left to Right - + Bal - Jobb + Right to Left - + Jobb - Bal + Right to Right - + Jobb - Jobb - vestigeInstrument + VestigeInstrument + Loading plugin - + Plugin betöltése - Please wait while loading VST-plugin... - + + Please wait while loading the VST plugin... + Várj, amíg a VST plugin betöltődik... - vibed + 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 - Pan %1 - - - - Detune %1 - - - - Fuzziness %1 - - - - Length %1 - + + String %1 length + %1. húr hossza: + Impulse %1 - + Impulzus %1 - Octave %1 - + + String %1 + %1. húr - vibedView + VibedView - Volume: - Hangerő: - - - The 'V' knob sets the volume of the selected string. - + + String volume: + Húr hangerő: + String stiffness: - - - - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - + Húr feszessége: + Pick position: - - - - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - + Pengetés helye: + Pickup position: + Hangszedő pozíciója: + + + + String panning: + Húr panoráma: + + + + String detune: + Húr elhangolása: + + + + String fuzziness: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - + + String length: + Húr hossza: - Pan: - - - - The Pan knob determines the location of the selected string in the stereo field. - - - - Detune: - - - - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - - - - Fuzziness: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - - - - Length: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - Impulse or initial state - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - + + Impulse + Impulzus + Octave - - - - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - + Oktáv + Impulse Editor - - - - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - + Impulzusszerkesztő + Enable waveform - + Húr engedélyezése - Click here to enable/disable waveform. - + + Enable/disable string + Húr engedélyezése/tiltása + String - - - - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - + Húr + + Sine wave Szinuszhullám + + Triangle wave Háromszöghullám + + Saw wave Fűrészfoghullám + + Square wave Négyszöghullám - White noise wave - + + + White noise + Fehér zaj - User defined wave + + + User-defined wave Felhasználó által megadott hullám - Smooth - + + + Smooth waveform + Hullámforma simítása - Click here to smooth waveform. - - - - Normalize - Normalizálás - - - Click here to normalize waveform. - Kattintson ide a hullámalak normalizálásához. - - - Use a sine-wave for current oscillator. - - - - Use a triangle-wave for current oscillator. - - - - Use a saw-wave for current oscillator. - - - - Use a square-wave for current oscillator. - - - - Use white-noise for current oscillator. - - - - Use a user-defined waveform for current oscillator. - + + + Normalize waveform + Hullámforma normalizálása - voiceObject + 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 + WaveShaperControlDialog + INPUT BEMENET + Input gain: Bemeneti erősítés: + OUTPUT KIMENET + Output gain: Kimeneti erősítés: - Reset waveform - + + + Reset wavegraph + Visszaállítás - Click here to reset the wavegraph back to default - + + + Smooth wavegraph + Lekerekítés - Smooth waveform - + + + Increase wavegraph amplitude by 1 dB + Amplitúdó növelése 1 dB-lel - Click here to apply smoothing to wavegraph - - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - + + + Decrease wavegraph amplitude by 1 dB + Amplitúdó csökkentése 1 dB-lel + Clip input - + Bemenet levágása - Clip input signal to 0dB - + + Clip input signal to 0 dB + Bemenet levágása 0dB-re - waveShaperControls + WaveShaperControls + Input gain Bemeneti erősítés + Output gain Kimeneti erősítés - \ No newline at end of file + diff --git a/data/locale/id.ts b/data/locale/id.ts index da30ec919..e381ea726 100644 --- a/data/locale/id.ts +++ b/data/locale/id.ts @@ -2,93 +2,112 @@ AboutDialog + About LMMS Ihwal LMMS - Version %1 (%2/%3, Qt %4, %5) - Versi %1 (%2/%3, Qt %4, %5) - - - About - Ihwal - - - LMMS - easy music production for everyone - LMMS - mudahnya produksi musik untuk semua orang - - - Authors - Pencipta - - - Translation - Terjemahan - - - 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! - bahasa saat ini tidak diterjemahkan (atau asli bahasa Inggris). - -Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningkatkan terjemahan yang ada, Anda dipersilakan untuk membantu kami! Cukup hubungi pengelola! - - - License - Lisensi - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + Versi %1 (%2/%3, Qt %4, %5). + + + + About + Ihwal + + + + LMMS - easy music production for everyone. + LMMS - produksi musik yang mudah untuk semua orang. + + + + Copyright © %1. + Hak cipta © %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> + + + + Authors + Pencipta + + + Involved Terlibat + Contributors ordered by number of commits: Kontributor disortir oleh jumlah komit: - Copyright © %1 - Hak cipta © %1 + + Translation + Terjemahan - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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! + bahasa saat ini tidak diterjemahkan (atau asli bahasa Inggris). +Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningkatkan terjemahan yang ada, Anda dipersilakan untuk membantu kami! Cukup hubungi pengelola! + + + + License + Lisensi AmplifierControlDialog + VOL VOL + Volume: Volume: + PAN SEIMBANG + Panning: Keseimbangan: + LEFT KIRI + Left gain: gain kiri: + RIGHT KANAN + Right gain: gain kanan: @@ -96,18 +115,22 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk AmplifierControls + Volume Volume + Panning Keseimbangan + Left gain gain Kiri + Right gain gain Kanan @@ -115,10 +138,12 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk AudioAlsaSetupWidget + DEVICE PERANGKAT + CHANNELS SALURAN @@ -126,85 +151,60 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk AudioFileProcessorView - Open other sample - Buka sampel lain - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Klik disini, jika anda ingin membuka berkas audio lain. Sebuah dialog akan muncul dimana anda bisa memilih berkas anda. Pengaturan seperti mode-pengulangan, titik mulai-akhir, nilai ampli, dan lainnya tidak akan berubah. Jadi, ini mungkin tidak akan terdengar seperti sampel orsinil. + + Open sample + Buka sampel + Reverse sample Balikan sampel - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Jika anda mengaktifkan tombol ini, seluruh sampel dibalik. Hal ini cocok untuk efek yang keren, misalnya crash terbalik. - - - Amplify: - Penguatan: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Dengan kenop ini Anda bisa mengatur rasio amplitudo. Bila Anda menetapkan nilai 100% sampel Anda tidak berubah. Jika tidak, itu akan diperkuat ke atas atau ke bawah (berkas sampel Anda yang sebenarnya tidak disentuh!) - - - Startpoint: - Titik mulai: - - - Endpoint: - Titik akhir: - - - Continue sample playback across notes - Lanjutkan pemutaran sampel di catatan melintasi not - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Mengaktifkan opsi ini membuat sampel terus bermain melintasi not yang berbeda - jika anda merubah pitch, atau panjang not berhenti sebelum sampel akhir, maka not berikutnya yang diputar akan berlanjut dari tempat tinggalnya. Untuk mengatur ulang pemutaran ke awal sampel, masukan not dibagian bawah keyboard (< 20 Hz) - - + Disable loop Nonaktifkan pengulangan - This button disables looping. The sample plays only once from start to end. - Tombol ini menonaktifkan pengulangan. Sampel diputar hanya sekali dari awal sampai akhir - - + Enable loop Aktifkan pengulangan - This button enables forwards-looping. The sample loops between the end point and the loop point. - Tombol ini memungkinkan pengulangan ke depan. Contoh pengulangan antara titik akhir dan titik pengulangan. + + Enable ping-pong loop + - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Tombol ini memungkinkan perulangan ping-pong. Sampel pengulangan mundur dan maju antara titik akhir dan titik pengulangan. + + Continue sample playback across notes + Lanjutkan pemutaran sampel di catatan melintasi not - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Dengan kenop ini Anda dapat mengatur titik dimana AudioFileProcessor harus memutar sampel Anda. + + Amplify: + Penguatan: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Dengan kenop ini Anda dapat mengatur titik di mana AudioFileProcessor harus berhenti memainkan sampel Anda. + + Start point: + Poin awal: + + End point: + Poin akhir: + + + Loopback point: Titik pengulangan: - - With this knob you can set the point where the loop starts. - Dengan tombol ini Anda dapat mengatur titik di mana pengulangan dimulai. - AudioFileProcessorWaveView + Sample length: Panjang sampel: @@ -212,447 +212,469 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk 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 - NAMA-KLIEN + + Client name + - CHANNELS - SALURAN + + Channels + - AudioOss::setupWidget + AudioOss - DEVICE - PERANGKAT + + Device + - CHANNELS - SALURAN + + Channels + AudioPortAudio::setupWidget - BACKEND - BACKEND + + Backend + - DEVICE - PERANGKAT + + Device + - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - PERANGKAT + + Device + - CHANNELS - SALURAN + + Channels + AudioSdl::setupWidget - DEVICE - PERANGKAT + + Device + - AudioSndio::setupWidget + AudioSndio - DEVICE - PERANGKAT + + Device + - CHANNELS - SALURAN + + Channels + AudioSoundIo::setupWidget - BACKEND - BACKEND + + Backend + - DEVICE - PERANGKAT + + 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 - 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... - - + 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 - Please open an automation pattern with the context menu of a control! + + 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! - - Values copied - Nilai disalin - - - All selected values were copied to the clipboard. - Semua nilai yang dipilih telah disalin ke clipboard. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) Putar/jeda pola saat ini (Spasi) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Klik di sini untuk memainkan pola saat ini. Ini berguna saat mengeditnya. Pola diulang secara otomatis saat ujungnya tercapai. - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Berhenti memutar pola saat ini (Spasi) - Click here if you want to stop playing of the current pattern. - Klik disini jika anda ingin berhenti memutar pola saat ini. - - - Draw mode (Shift+D) - Mode menggambar (Shift+D) - - - Erase mode (Shift+E) - Mode penghapus (Shift+E) - - - Flip vertically - Balik secara vertikal - - - Flip horizontally - Balik secara horizontal - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Klik disini dan pola akan dibalik. Titik nya akan dibalik dengan arah y. - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Klik disini dan pola akan dibalik. Titik nya akan dibalik dengan arah x. - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Klik di sini dan mode-gambar akan diaktifkan. Dalam mode ini Anda bisa menambahkan dan memindahkan nilai tunggal. Ini adalah mode default yang sering digunakan. Anda juga dapat menekan 'Shift+D' pada keyboard untuk mengaktifkan mode ini. - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Klik di sini dan mode-penghapus akan diaktifkan. Dalam mode ini Anda bisa menghapus nilai tunggal. Anda juga dapat menekan 'Shift+E' pada keyboard untuk mengaktifkan mode ini. - - - Discrete progression - Perkembangan diskrit - - - Linear progression - perkembangan linier - - - Cubic Hermite progression - Perkembangan Hermite Cubic - - - Tension value for spline - nilai tegangan untuk spline - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - Cut selected values (%1+X) - Potong nilai yang dipilih (%1+X) - - - Copy selected values (%1+C) - Salin nilai yang dipilih (%1+X) - - - Paste values from clipboard (%1+V) - Tempel nilai dari clipboard (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klik disini dan nilai yang dipilih akan dipotong ke papan klip. Anda bisa menempelkannya di manapun dalam pola apapun dengan mengklik tombol tempel. - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klik di sini dan nilai yang dipilih akan disalin ke papan klip. Anda bisa menempelkannya di manapun dalam pola apapun dengan mengklik tombol tempel. - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Klik di sini dan nilai dari papan klip akan disisipkan pada ukuran pertama yang terlihat. - - - Tension: - Tegangan: - - - Automation Editor - no pattern - Editor Otomasi - tiada pola - - - Automation Editor - %1 - Editor Otomasi - %1 - - + 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 - Timeline controls - Kontrol timeline + + 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 - Model is already connected to this pattern. - Model sudah terhubung ke pola ini. - - + Quantization Kuantitasi - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Kuantitasi. Tetapkan ukuran langkah terkecil untuk Titik Otomasi. Secara deafult ini juga menentukan panjangnya, membersihkan titik lain di kisaran ini. Tekan <Ctrl> untuk mengganti perilaku ini. + + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> Tarik kontrol sambil menekan <%1> - AutomationPatternView + AutomationClipView + Open in Automation editor Buka di editor Otomasi + Clear Bersih + Reset name Reset nama + Change name Ganti nama - %1 Connections - %1 Koneksi - - - Disconnect "%1" - Putuskan "%1" - - + Set/clear record Setel/bersihkan catatan + Flip Vertically (Visible) Balik secara Vertikal (Terlihat) + Flip Horizontally (Visible) Balik secara Horizontal (Terlihat) - Model is already connected to this pattern. + + %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 - BBEditor + 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) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Klik disini untuk memutar ketukan/bassline saat ini. Ketukan/bassline otomatis diulang ketika mencapai akhir. - - - Click here to stop playing of current beat/bassline. - Klik disini untuk menghentikan pemutaran ketukan/bassline saat ini. - - - Add beat/bassline - Tambah ketukan/bassline - - - Add automation-track - Tambah trek-otomasi - - - Remove steps - Hapus langkah - - - Add steps - Tambah langkah - - + Beat selector Pemilih Ketukan + Track and step actions Aksi trek dan langkah - Clone Steps - Klon 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 + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor Buka di Ketukan/Bassline-Editor + Reset name Reset nama + Change name Ganti nama - - Change color - Ganti warna - - - Reset color to default - Reset warna ke default - - BBTrack + PatternTrack + Beat/Bassline %1 Ketukan/Bassline %1 + Clone of %1 Klon dari %1 @@ -660,26 +682,32 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk BassBoosterControlDialog + FREQ FREK + Frequency: Frekuensi: + GAIN GAIN + Gain: Gain: + RATIO RASIO + Ratio: Rasio: @@ -687,14 +715,17 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk BassBoosterControls + Frequency Frekuensi + Gain Gain + Ratio Rasio @@ -702,107 +733,2344 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk BitcrushControlDialog + IN MASUK + OUT KELUAR + + GAIN GAIN - Input Gain: - Gain Masuk: - - - Input Noise: - Bising Masukan: - - - Output Gain: - Gain Keluaran: - - - CLIP - KLIP - - - Output Clip: - Klip Keluaran: - - - Rate Enabled - Aktifkan Nilai - - - Enable samplerate-crushing - Aktifkan samplerate-crushing - - - Depth Enabled - Aktifkan Kedalaman - - - Enable bitdepth-crushing - Aktifkan bitdepth-crushing - - - Sample rate: - Nilai sampel: - - - Stereo difference: - Perbedaan stereo: - - - Levels: - Tingkat: + + 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 + + - CaptionMenu + CarlaAboutW + + About Carla + + + + + About + Ihwal + + + + About text here + + + + + Extended licensing here + + + + + 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 + Lisensi + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Berkas + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help &Bantuan - Help (not available) - Bantuan (tidak tersedia) + + toolBar + + + + + 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 + + + + + &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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - Klik disini untuk menampilkan atau menyembunyikan antarmuka pengguna (GUI) dari Carla. + + Settings + Pengaturan + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 6200x4800 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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: + 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 @@ -810,58 +3078,73 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk 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. @@ -869,18 +3152,22 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk 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. @@ -888,116 +3175,158 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk ControllerView + Controls Kontrol - Controllers are able to automate the value of a knob, slider, and other controls. - Kontroler dapat mengotomatisasi nilai kenop, slider, dan kontrol lainnya. - - + 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 - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: - Band 1/2 Crossover: + + Band 1/2 crossover: + - Band 2/3 Crossover: - Band 2/3 Crossover: + + Band 2/3 crossover: + - Band 3/4 Crossover: - Band 3/4 Crossover: + + Band 3/4 crossover: + - Band 1 Gain: - Gain Band 1: + + Band 1 gain + - Band 2 Gain: - Gain Band 2: + + Band 1 gain: + - Band 3 Gain: - Gain Band 3: + + Band 2 gain + - Band 4 Gain: - Gain Band 4: + + Band 2 gain: + - Band 1 Mute - Bisukan Band 1 + + Band 3 gain + - Mute Band 1 - Bisukan Band 1 + + Band 3 gain: + - Band 2 Mute - Bisukan Band 2 + + Band 4 gain + - Mute Band 2 - Bisukan Band 2 + + Band 4 gain: + - Band 3 Mute - Bisukan Band 3 + + Band 1 mute + - Mute Band 3 - Bisukan Band 3 + + Mute band 1 + - Band 4 Mute - Bisukan Band 4 + + Band 2 mute + - Mute Band 4 - Bisukan Band 4 + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + DelayControls - Delay Samples - Sampel Delay + + Delay samples + + Feedback Umpan balik - Lfo Frequency - Frekuensi Lfo + + LFO frequency + Frekuensi LFO - Lfo Amount - Jumlah Lfo + + LFO amount + Jumlah LFO + Output gain Gain keluaran @@ -1005,228 +3334,528 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk DelayControlsDialog - Lfo Amt - jmlh Lfo - - - Delay Time - Waktu Delay - - - Feedback Amount - Jumlah Umpan balik - - - Lfo - Lfo - - - Out Gain - Gain Keluar - - - Gain - GainGain - - + 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 + + + + + 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: + Nilai sampel: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + + DualFilterControlDialog - Filter 1 enabled - Filter 1 diaktifkan - - - Filter 2 enabled - Filter 2 diaktifkan - - - Click to enable/disable Filter 1 - Klik untuk mengaktifkan/menonaktifkan Filter 1 - - - Click to enable/disable Filter 2 - Klik untuk mengaktifkan/menonaktifkan Filter 2 - - + + 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 1 frequency - Frekuensi Cutoff 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 2 frequency - Frekuensi Cutoff 2 + + Cutoff frequency 2 + + Q/Resonance 2 Q/Resonansi 2 + Gain 2 Gain 2 - LowPass - LowPass + + + Low-pass + - HiPass - HiPass + + + Hi-pass + - BandPass csg - BandPass csg + + + Band-pass csg + - BandPass czpg - BandPass czpg + + + Band-pass czpg + + + Notch Notch - Allpass - Allpass + + + All-pass + + + Moog Moog - 2x LowPass - 2x LowPass + + + 2x Low-pass + - RC LowPass 12dB - RC LowPass 12dB + + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC BandPass 12dB + + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC HighPass 12dB + + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC LowPass 24dB + + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC BandPass 24dB + + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC HighPass 24dB + + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filter Formant Vokal + + + Vocal Formant + + + 2x Moog 2x Moog - SV LowPass - SV LowPass + + + SV Low-pass + - SV BandPass - SV BandPass + + + SV Band-pass + - SV HighPass - SV HighPass + + + SV High-pass + + + SV Notch SV Notch + + Fast Formant Formant Cepat + + Tripole Tripol @@ -1234,41 +3863,55 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk Editor + + Transport controls + Kontrol transport + + + Play (Space) Putar (Spasi) + Stop (Space) Hentikan (Spasi) + Record Rekam + Record while playing Rekam ketika memutar - Transport controls - Kontrol transport + + Toggle Step Recording + Effect + Effect enabled Efek diaktifkan + Wet/Dry mix + Gate Lawang + Decay Tahan @@ -1276,6 +3919,7 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk EffectChain + Effects enabled Aktifkan efek @@ -1283,10 +3927,12 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk EffectRackView + EFFECTS CHAIN RANTAI EFEK + Add effect Tambah efek @@ -1294,22 +3940,28 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk EffectSelectDialog + Add effect Tambah efek + + Name Nama + Type Tipe + Description Deskripsi + Author Pencipta @@ -1317,78 +3969,57 @@ Jika Anda tertarik untuk menerjemahkan LMMS dalam bahasa lain atau ingin meningk EffectView - Toggles the effect on or off. - Mengaktifkan atau menonaktifkan efek. - - + On/Off Nyala/Mati + W/D B/K + Wet Level: Tingkat Basah: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - - - + DECAY DECAY + Time: Waktu: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - Kenop Decay mengontrol berapa banyak buffers of silence yang harus dilewati sebelum plugin berhenti diproses. Nilai yang lebih kecil akan mengurangi overhead CPU namun berisiko clipping pada efek delay dan reverb. - - + GATE LAWANG + Gate: Lawang: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - Tombol Lawang mengontrol tingkat sinyal yang dianggap 'diam' saat memutuskan kapan harus menghentikan pemrosesan sinyal. - - + Controls Kontrol - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - - - + Move &up Pindah ke &atas + Move &down Pindah ke &bawah + &Remove this plugin &Hapus plugin ini @@ -1396,408 +4027,409 @@ Right clicking will bring up a context menu where you can change the order in wh EnvelopeAndLfoParameters - Predelay - Prapenundaan + + Env pre-delay + - Attack - Attack + + Env attack + - Hold - Tahan + + Env hold + - Decay - Decay + + Env decay + - Sustain - Tahan + + Env sustain + - Release - Release + + Env release + - Modulation - Modulasi + + Env mod amount + - LFO Predelay - Prapenundaan LFO + + LFO pre-delay + - LFO Attack - Attack LFO + + LFO attack + - LFO speed - Kecepatan LFO + + LFO frequency + Frekuensi LFO - LFO Modulation - Modulasi LFO + + LFO mod amount + - LFO Wave Shape - Bentuk Gelombang LFO + + LFO wave shape + - Freq x 100 - Frek x 100 + + LFO frequency x 100 + - Modulate Env-Amount - Modulasikan Jumlah-Env + + Modulate env amount + EnvelopeAndLfoView + + DEL DEL - Predelay: - Prapenundaan: - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. + + + Pre-delay: + + ATT ATT + + Attack: Attack: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - - - + HOLD HOLD + Hold: Hold: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - - - + DEC DEC + Decay: Decay: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - - - + SUST SUST + Sustain: Sustain: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - - - + REL REL + Release: Release: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - - - + + AMT JMLH + + Modulation amount: Jumlah modulasi: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - - - - LFO predelay: - Prapenundaan LFO: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - - - - LFO- attack: - Attack LFO: - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - - - + SPD SPD - LFO speed: - kecepatan LFO: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - - - - Click here for a sine-wave. - Klik disini untuk gelombang-sinus. - - - Click here for a triangle-wave. - Klik disini untuk gelombang-segitiga. - - - Click here for a saw-wave for current. - Klik disini untuk gelombang-gergaji untuk saat ini. - - - Click here for a square-wave. - Klik disini untuk gelombang-kotak. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - + + Frequency: + Frekuensi: + FREQ x 100 FREK x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Klik disini jika frekuensi LFO ini dikalikan dengan 100. - - - multiply LFO-frequency by 100 - Kalikan frekuensi-LFO oleh 100 - - - MODULATE ENV-AMOUNT - MODULASIKAN JUMLAH-ENV - - - Click here to make the envelope-amount controlled by this LFO. + + Multiply LFO frequency by 100 - control envelope-amount by this LFO + + MODULATE ENV AMOUNT + + Control envelope amount by this LFO + + + + ms/LFO: md/LFO: + Hint Petunjuk - Drag a sample from somewhere and drop it in this window. - Seret sampel dari suatu tempat dan jatuhkan di jendela ini. - - - Click here for random wave. - Klik di sini untuk gelombang acak. + + Drag and drop a sample into this window. + EqControls + Input gain Gain masukan + Output gain Gain keluaran - Low shelf gain + + 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 + + High-shelf gain + HP res HP res - Low Shelf 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 + + High-shelf res + LP res LP res + HP freq HP freq - Low Shelf 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 + + High-shelf freq + LP freq Frek LP + HP active HP aktif - Low shelf active + + 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 + + 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 + + Low-pass type - high pass type + + High-pass type + Analyse IN + Analyse OUT @@ -1805,85 +4437,108 @@ Right clicking will bring up a context menu where you can change the order in wh EqControlsDialog + HP HP - Low Shelf + + Low-shelf + Peak 1 Peak 1 + Peak 2 Peak 2 + Peak 3 Peak 3 + Peak 4 Peak 4 - High Shelf + + High-shelf + LP LP - In Gain - + + Input gain + Gain masukan + + + Gain Gain - Out Gain - Gain Keluar + + Output gain + Gain keluaran + Bandwidth: + + Octave + Oktaf + + + Resonance : Resonansi : + Frequency: Frekuensi: - lp grp - lp grp + + LP group + - hp grp - hp grp - - - Octave - Oktaf + + HP group + EqHandle + Reso: Reso: + BW: BW: + + Freq: Frek: @@ -1891,254 +4546,272 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog + Export project Ekspor proyek - Output - Keluaran - - - File format: - Format berkas: - - - Samplerate: - Sampelrate: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Kecepatan Bit: - - - 64 KBit/s - 64 KBit/dtk - - - 128 KBit/s - 128 KBit/dtk - - - 160 KBit/s - 160 KBit/dtk - - - 192 KBit/s - 192 KBit/dtk - - - 256 KBit/s - 256 KBit/dtk - - - 320 KBit/s - 320 KBit/dtk - - - Depth: - Kedalaman: - - - 16 Bit Integer - 16 Bit Integer - - - 32 Bit Float - 32 Bit Float - - - Quality settings - Pengaturan kualitas - - - Interpolation: - Interpolasi: - - - Zero Order Hold + + Export as loop (remove extra bar) - Sinc Fastest - Sinc Tercepat - - - Sinc Medium (recommended) - Sinc Sedang (direkomendasikan) - - - Sinc Best (very slow!) - Sinc Terbaik (sangat lambat!) - - - Oversampling (use with care!): - Oversampling (gunakan dengan hati-hati!): - - - 1x (None) - 1x (Tidak ada) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Mulai - - - Cancel - Batal - - - Export as loop (remove end silence) - Ekspor sebagai pengulangan (hapus keheningan akhir) - - + Export between loop markers Ekspor antar titik pengulangan + + Render Looped Section: + + + + + time(s) + + + + + File format settings + Pengaturan format berkas + + + + File format: + Format berkas: + + + + 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 + 16 Bit integer + + + + 24 Bit integer + 24 Bit integer + + + + 32 Bit float + 32 Bit float + + + + Stereo mode: + Mode Stereo: + + + + Mono + Mono + + + + Stereo + Stereo + + + + Joint stereo + Stereo Bergabung + + + + Compression level: + Level kompresi: + + + + Bitrate: + Kecepatan Bit: + + + + 64 KBit/s + 64 KBit/dtk + + + + 128 KBit/s + 128 KBit/dtk + + + + 160 KBit/s + 160 KBit/dtk + + + + 192 KBit/s + 192 KBit/dtk + + + + 256 KBit/s + 256 KBit/dtk + + + + 320 KBit/s + 320 KBit/dtk + + + + Use variable bitrate + Gunakan variabel kecepatan bit + + + + Quality settings + Pengaturan kualitas + + + + Interpolation: + Interpolasi: + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + Oversampling: + + + + + 1x (None) + 1x (Tidak ada) + + + + 2x + 2x + + + + 4x + 4x + + + + 8x + 8x + + + + Start + Mulai + + + + Cancel + Batal + + + Could not open file Tidak bisa membuka berkas - Export project to %1 - Ekspor proyek ke %1 - - - 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% - - + 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! - 24 Bit Integer - 24 Bit Integer + + Export project to %1 + Ekspor proyek ke %1 - Use variable bitrate - Gunakan variabel kecepatan bit - - - Stereo mode: + + ( Fastest - biggest ) - Stereo - Stereo - - - Joint Stereo + + ( Slowest - smallest ) - Mono - Mono + + Error + Kesalahan - Compression level: - Level kompresi: + + 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. - (fastest) - (tercepat) - - - (default) - (bawaan) - - - (smallest) - (terkecil) - - - - Expressive - - Selected graph - Grafik yang dipilih - - - A1 - A1 - - - A2 - A2 - - - A3 - A3 - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - + + Rendering: %1% + Merender: %1% Fader + + Set value + + + + Please enter a new value between %1 and %2: Silakan masukan nilai baru antara %1 dan %2: @@ -2146,14 +4819,27 @@ Pastikan Anda memiliki izin menulis ke file dan direktori yang berisi berkas ter FileBrowser + + User content + + + + + Factory content + + + + Browser Penjelajah + Search Cari + Refresh list Segarkan daftar @@ -2161,65 +4847,105 @@ Pastikan Anda memiliki izin menulis ke file dan direktori yang berisi berkas ter FileBrowserTreeWidget + Send to active instrument-track Kirim ke trek-instrumen yang aktif - Open in new instrument-track/B+B Editor - Buka di trek-instrumen/Editor B+B yang baru + + 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... - --- Factory files --- - --- Berkas pabrik --- - - - Open in new instrument-track/Song Editor - Buka di trek-instrumen/Editor Lagu yang baru - - + Error Kesalahan - does not appear to be a valid - Tampaknya tidak valid + + %1 does not appear to be a valid %2 file + - file - berkas + + --- Factory files --- + --- Berkas pabrik --- FlangerControls - Delay Samples - Sampel Delay + + Delay samples + - Lfo Frequency - Frekuensi Lfo + + LFO frequency + Frekuensi LFO + Seconds Detik + + Stereo phase + + + + Regen Regen + Noise Derau + Invert Balik @@ -2227,145 +4953,516 @@ Pastikan Anda memiliki izin menulis ke file dan direktori yang berisi berkas ter FlangerControlsDialog - Delay Time: - Waktu Delay: - - - Feedback Amount: - Jumlah Timbal balik: - - - White Noise Amount: - Jumlah Gelombang Riuh: - - + 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 - Period: - Periode: + + 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 - FxLine + 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 + + + + + MixerLine + + Channel send amount Jumlah kirim saluran - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Saluran FX menerima masukan dari satu atau beberapa trek instrumen. -Hal ini pada gilirannya dapat diarahkan ke beberapa saluran FX lainnya. LMMS secara otomatis menangani mencegah loop tak terbatas untuk Anda dan tidak membiarkan membuat sambungan yang menghasilkan loop tak terbatas. -Untuk mengarahkan saluran ke saluran lain, pilih saluran FX dan klik tombol "kirim" pada saluran yang ingin Anda kirimi. Tombol di bawah tombol kirim mengontrol tingkat sinyal yang dikirim ke saluran . - -Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses dengan mengklik kanan saluran FX. - - - + 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 + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + + + + + New mixer Channel + Saluran FX Baru + + + + Mixer + + Master Master - FX %1 + + + + Channel %1 FX %1 + Volume Volume + Mute Bisu + Solo Solo - FxMixerView + MixerView - FX-Mixer - FX-Mixer + + Mixer + Mixer - FX Fader %1 + + Fader %1 FX Pemudar %1 + Mute Bisu - Mute this FX channel + + Mute this mixer channel Bisukan saluran FX ini + Solo Solo - Solo FX channel + + Solo mixer channel Saluran FX Solo - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 Jumlah untuk kirim dari saluran %1 ke saluran %2 @@ -2373,14 +5470,17 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses GigInstrument + Bank Bank + Patch Patch + Gain Gain @@ -2388,46 +5488,23 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses GigInstrumentView - Open other GIG file - Buka berkas GIG lainnya - - - Click here to open another GIG file - klik disini untuk membuka berkas GIG lainnya - - - Choose the patch - Pilih patch - - - Click here to change which patch of the GIG file to use - Klik di sini untuk mengubah patch dari berkas GIG yang akan digunakan - - - Change which instrument of the GIG file is being played - Ubah instrumen berkas GIG mana yang sedang dimainkan - - - Which GIG file is currently being used - Berkas GIG mana yang saat ini digunakan - - - Which patch of the GIG file is currently being used - Patch berkas GIG yang sedang digunakan - - - Gain - Gain - - - Factor to multiply samples by - - - + + Open GIG file Buka berkas GIG + + Choose patch + + + + + Gain: + Gain: + + + GIG Files (*.gig) Berkas GIG (*.gig) @@ -2435,42 +5512,52 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses 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 @@ -2478,650 +5565,798 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses InstrumentFunctionArpeggio + Arpeggio Arpeggio + Arpeggio type Tipe arpeggio + Arpeggio range Jarak arpeggio - Arpeggio time - Waktu arpeggio + + Note repeats + - Arpeggio gate - Gate arpeggio - - - Arpeggio direction - Arah arpeggio - - - Arpeggio mode - Mode arpeggio - - - Up - Atas - - - Down - Bawah - - - Up and down - Atas dan bawah - - - Random - Acak - - - Free - Bebas - - - Sort - Sortir - - - Sync - Selaras - - - Down and up - Bawah dan atas + + Cycle steps + Langkah siklus + Skip rate Lewati nilai + Miss rate Tingkat miss - Cycle steps - Langkah siklus + + 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 - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - + RANGE JARAK + Arpeggio range: Jarak arpeggio: + octave(s) Oktaf - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. + + REP - TIME - WAKTU - - - Arpeggio time: - Waktu arpeggio: - - - ms - md - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. + + Note repeats: - GATE - LAWANG - - - Arpeggio gate: - - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - Chord: - Chord: - - - Direction: - Arah: - - - Mode: - Mode: - - - SKIP - LEWAT - - - Skip rate: - Lewati nilai: - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - MISS - - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. + + time(s) + CYCLE SIKLUS + Cycle notes: Siklus nada: + note(s) not - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + 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 - Phrygolydian - Phrygolydian + + Phrygian + + Lydian Lydian + Mixolydian Mixolydian + Aeolian Aeolian + Locrian Locrian - Chords - Chord - - - Chord type - Tipe Chord - - - Chord range - Jarak Chord - - + 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 - RANGE - JARAK - - - Chord range: - Jarak chord: - - - octave(s) - Oktaf(beberapa) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - - + STACKING + Chord: Chord: + + + RANGE + JARAK + + + + Chord range: + Jarak chord: + + + + octave(s) + Oktaf(beberapa) + InstrumentMidiIOView + ENABLE MIDI INPUT AKTIFKAN MASUKAN MIDI - CHANNEL - SALURAN - - - VELOCITY - - - + ENABLE MIDI OUTPUT AKTIFKAN KELUARAN MIDI - PROGRAM - PROGRAM + + + 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 - NOTE - CATATAN - - + CUSTOM BASE VELOCITY - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + BASE VELOCITY @@ -3129,138 +6364,172 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses InstrumentMiscView + MASTER PITCH MASTER PITCH - Enables the use of Master Pitch - Aktifkan penggunaan 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 - LowPass - LowPass + + Low-pass + - HiPass - HiPass + + Hi-pass + - BandPass csg - BandPass csg + + Band-pass csg + - BandPass czpg - BandPass czpg + + Band-pass czpg + + Notch Notch - Allpass - Allpass + + All-pass + + Moog Moog - 2x LowPass - 2x LowPass + + 2x Low-pass + - RC LowPass 12dB - RC LowPass 12dB + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC BandPass 12dB + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC HighPass 12dB + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC LowPass 24dB + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC BandPass 24dB + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC HighPass 24dB + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filter Formant Vokal + + Vocal Formant + + 2x Moog 2x Moog - SV LowPass - SV LowPass + + SV Low-pass + - SV BandPass - SV BandPass + + SV Band-pass + - SV HighPass - SV HighPass + + SV High-pass + + SV Notch SV Notch + Fast Formant Formant Cepat + Tripole Tripol @@ -3268,50 +6537,42 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses InstrumentSoundShapingView + TARGET SASARAN - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - + FILTER FILTER - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - - - - RESO - RESO - - - Resonance: - Resonansi: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - + FREQ FREK - cutoff frequency: - frekuensi cutoff: + + Cutoff frequency: + Frekuensi cutoff: + + Hz + Hz + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. @@ -3319,224 +6580,347 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses InstrumentTrack + + unnamed_track trek_tak_bernama + + Base note + Not dasar + + + + First note + + + + + Last note + + + + Volume Volume + Panning Keseimbangan + Pitch Pitch - FX channel - Saluran FX - - - Default preset - Preset default - - - With this knob you can set the volume of the opened channel. - - - - Base note - Not dasar - - + Pitch range Jarak pitch - Master Pitch + + Mixer channel + Saluran FX + + + + Master pitch + Master pitch + + + + Enable/Disable MIDI CC + + + CC Controller %1 + + + + + + Default preset + Preset default + InstrumentTrackView + Volume Volume + Volume: Volume: + VOL VOL + Panning Keseimbangan + Panning: Keseimbangan: + PAN PAN + MIDI MIDI + Input Masukan + Output Keluaran - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS PENGATURAN UMUM - Instrument volume - Volume instrumen + + Volume + Volume + Volume: Volume: + VOL VOL + Panning Keseimbangan + Panning: Keseimbangan: + PAN PAN + Pitch Pitch + Pitch: Pitch: + cents sen + PITCH - FX channel - Saluran FX - - - FX - FX - - - Save preset - Simpan preset - - - XML preset file (*.xpf) - Berkas preset XML (*.xpf) - - + Pitch range (semitones) + 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 - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Klik disini jika Anda ingin menyimpan pengaturan trek instrumen saat ini kedalam berkas preset. Nantinya Anda dapat memuat preset ini dengan mengklik dua kali pada preset-browser. - - - Use these controls to view and edit the next/previous track in the song editor. - Gunakan kontrol ini untuk melihat dan mengubah trek berikutnya / sebelumnya di editor lagu. - - + SAVE SIMPAN + Envelope, filter & LFO + Chord stacking & arpeggio + Effects Efek - MIDI settings - Pengaturan MIDI + + MIDI + MIDI + Miscellaneous Serba aneka + + Save preset + Simpan preset + + + + XML preset file (*.xpf) + Berkas preset 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 + + + + + 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 - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: + + + 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 @@ -3544,10 +6928,12 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses LadspaControlDialog + Link Channels Hubungkan Saluran + Channel Saluran @@ -3555,28 +6941,46 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses LadspaControlView + Link channels Hubungkan saluran + Value: Nilai: - - Sorry, no help available. - Maaf, tidak ada bantuan tersedia. - 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: @@ -3584,18 +6988,26 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses LeftRightNav + + + Previous Sebelumnya + + + Next Selanjutnya + Previous (%1) Sebelumnya (%1) + Next (%1) Selanjutnya (%1) @@ -3603,30 +7015,37 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses 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 @@ -3634,114 +7053,131 @@ Anda dapat menghapus dan memindahkan saluran FX dalam menu konteks, yang diakses LfoControllerDialog + LFO LFO - LFO Controller - Kontroler LFO - - + BASE DASAR - Base amount: - Jumlah dasar: + + Base: + - todo - untuk-dilakukan + + FREQ + FREK - SPD - SPD + + LFO frequency: + - LFO-speed: - Kecepatan-LFO: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Gunakan kenop ini untuk mengatur kecepatan LFO. Semakin besar nilai maka semakin cepat LFO berosilasi dan semakin cepat efeknya. + + AMNT + JMLH + Modulation amount: Jumlah modulasi: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - + PHS PHS + Phase offset: - degrees - derajat - - - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. + + degrees - Click here for a sine-wave. - Klik disini untuk gelombang-sinus. + + Sine wave + Gelombang sinus - Click here for a triangle-wave. - Klik disini untuk gelombang-segitiga. + + Triangle wave + Gelombang segitiga - Click here for a saw-wave. - Klik disini untuk gelombang gergaji. + + Saw wave + Gelombang gergaji - Click here for a square-wave. - Klik disini untuk gelombang-kotak. + + Square wave + Gelombang kotak - Click here for an exponential wave. - Klik disini untuk gelombang eksponensial. + + Moog saw wave + - Click here for white-noise. - Klik disini untuk kebisingan-putih. + + Exponential wave + - Click here for a user-defined shape. + + White noise + Kebisingan putih + + + + User-defined shape. Double click to pick a file. - Click here for a moog saw-wave. + + Mutliply modulation frequency by 1 - AMNT - JMLH + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + - LmmsCore + 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 @@ -3749,396 +7185,509 @@ Double click to pick a file. 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 - What's this? - Apa ini? - - + 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 - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - - - + + Beat+Bassline Editor Editor Bassline+ketukan - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - - - + + Piano Roll Rol Piano - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Klik disini untuk menampilkan atau menyembunyikan Rol-Piano. Dengan bantuan Rol-Piano Anda dapat mengubah melodu dengan mudah. - - + + Automation Editor Editor Otomasi - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - + + + Mixer + Mixer - FX Mixer - FX Mixer + + Show/hide controller rack + Tampilkan/sembunyikan rak kontroler - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Klik disini untuk menampilkan atau menyembunyikan FX Mixer. FX Mixer adalah alat yang sangat ampuh untuk mengelola efek untuk lagu Anda. Anda bisa memasukkan efek ke saluran efek yang berbeda. - - - Project Notes - Catatan Proyek - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - - - - Controller Rack - Kontroler rak + + 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. - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) + + Controller Rack + Kontroler rak - Version %1 - Versi %1 + + Project Notes + Catatan Proyek - Configuration file - Berkas konfigurasi - - - Error while parsing configuration file at line %1:%2: %3 - Kesalahan saat mengurai berkas konfigurasi pada baris %1:%2 %3 - - - Volumes - Volume - - - Undo - Undo - - - Redo - Redo - - - My Projects - Proyek Saya - - - My Samples - Sampel Saya - - - My Presets - Preset Saya - - - My Home - Rumah Saya - - - My Computer - Komputer Saya - - - &File - &Berkas - - - &Recently Opened Projects - &Proyek yang Baru Dibuka - - - Save as New &Version - Simpan sebagai &Versi yang baru - - - E&xport Tracks... - E&kspor trek... - - - Online Help - Bantuan Daring - - - What's This? - Apa Ini? - - - Open Project - Buka Proyek - - - Save Project - Simpan Proyek - - - 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? + + Fullscreen - 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. - - - Preparing plugin browser - Menyiapkan penjelajah plugin - - - Preparing file browsers - Menyiapkan penjelajah berkas - - - Root directory - Direktori root - - - Loading background artwork - Memuat karya seni latar belakang - - - New from template - Baru dari template - - - Save as default template - Simpan sebagai template default - - - &View - &Tampilan - - - Toggle metronome - Toggle metronom - - - Show/hide Song-Editor - Tampilkan/sembunyikan Editor-Lagu - - - Show/hide Beat+Bassline Editor - Tampilkan/sembunyikan Editor Bassline+Ketukan - - - Show/hide Piano-Roll - Tampilkan/sembunyikan Rol-Piano - - - Show/hide Automation Editor - Tampilkan/sembunyikan Editor Otomasi - - - Show/hide FX Mixer - Tampilkan/sembunyikan FX Mixer - - - Show/hide project notes - Tampilkan/sembunyikan not proyek - - - Show/hide controller rack - Tampilkan/sembunyikan rak kontroler - - - Recover session. Please save your work! - Sesi pemulihan. Tolong simpan pekerjaanmu! - - - 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? - - - LMMS Project - Proyek LMMS - - - LMMS Project Template - Proyek Template LMMS - - - Overwrite default template? - Timpa template default? - - - This will overwrite your current default template. - Ini akan menimpa template default Anda saat ini. - - - Smooth scroll - Gulung halus - - - Enable note labels in piano roll - Aktifkan label not di rol piano - - - Save project template - Simpan template proyek - - + Volume as dBFS Volume sebagai dBFS - Could not open file - Tidak bisa membuka berkas + + Smooth scroll + Gulung halus - 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 + + Enable note labels in piano roll + Aktifkan label not di rol piano - Export &MIDI... - + + 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 @@ -4146,21 +7695,44 @@ Please make sure you have write permission to the file and the directory contain 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 @@ -4168,18 +7740,43 @@ Please make sure you have write permission to the file and the directory contain MidiImport + + Setup incomplete Pemasangan tidak lengkap - You do not have 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. - Anda tidak menyetel pemutar soundfont default pada dialog pengaturan (Edit->Pengaturan). Oleh karena itu tidak ada suara yang akan diputar setelah mengimpor berkas MIDI ini. Anda harus mengunduh MIDI soundfont yang umum, tentukan di dialog pengaturan lalu coba lagi. + + 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 @@ -4187,541 +7784,911 @@ Please make sure you have write permission to the file and the directory contain 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 + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Berkas + + + + &Edit + &Edit + + + + &Quit + &Keluar + + + + &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 - Output MIDI program - Program MIDI keluaran - - - Receive MIDI-events - Terima aktifitas-MIDI - - - Send MIDI-events - Kirim aktifitas-MIDI - - + 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 - PERANGKAT + + Device + MonstroInstrument - Osc 1 Volume - Volume Osc 1 - - - Osc 1 Panning - Keseimbangan Osc 1 - - - Osc 1 Coarse detune + + Osc 1 volume - Osc 1 Fine detune left + + Osc 1 panning - Osc 1 Fine detune right + + Osc 1 coarse detune - Osc 1 Stereo phase offset + + Osc 1 fine detune left - Osc 1 Pulse width + + Osc 1 fine detune right - Osc 1 Sync send on rise + + Osc 1 stereo phase offset - Osc 1 Sync send on fall + + Osc 1 pulse width - Osc 2 Volume - Volume Osc 2 - - - Osc 2 Panning - Kesimbangan Osc 2 - - - Osc 2 Coarse detune + + Osc 1 sync send on rise - Osc 2 Fine detune left + + Osc 1 sync send on fall - Osc 2 Fine detune right + + Osc 2 volume - Osc 2 Stereo phase offset + + Osc 2 panning - Osc 2 Waveform + + Osc 2 coarse detune - Osc 2 Sync Hard + + Osc 2 fine detune left - Osc 2 Sync Reverse + + Osc 2 fine detune right - Osc 3 Volume - Volume Osc 3 - - - Osc 3 Panning - Keseimbangan Osc 3 - - - Osc 3 Coarse detune + + 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 sub-oscillator mix - Osc 3 Waveform 1 + + Osc 3 waveform 1 - Osc 3 Waveform 2 + + Osc 3 waveform 2 - Osc 3 Sync Hard + + Osc 3 sync hard - Osc 3 Sync Reverse + + Osc 3 Sync reverse - LFO 1 Waveform - Betuk gelombang LFO 1 - - - LFO 1 Attack - Attack LFO 1 - - - LFO 1 Rate - Nilai LFO 1 - - - LFO 1 Phase - Phase LFO 1 - - - LFO 2 Waveform - Betuk gelombang LFO 2 - - - LFO 2 Attack - Attack LFO 2 - - - LFO 2 Rate - Nilai LFO 2 - - - LFO 2 Phase - Phase LFO 2 - - - Env 1 Pre-delay - Prapenundaan Env 1 - - - Env 1 Attack - Attack Env 1 - - - Env 1 Hold + + LFO 1 waveform - Env 1 Decay + + LFO 1 attack - Env 1 Sustain + + LFO 1 rate - Env 1 Release + + LFO 1 phase - Env 1 Slope + + LFO 2 waveform - Env 2 Pre-delay + + LFO 2 attack - Env 2 Attack + + LFO 2 rate - Env 2 Hold + + LFO 2 phase - Env 2 Decay + + Env 1 pre-delay - Env 2 Sustain + + Env 1 attack - Env 2 Release + + Env 1 hold - Env 2 Slope + + Env 1 decay - Osc2-3 modulation + + 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 - Vol1-Env1 - Vol1-Env1 + + Osc 1 - Vol env 1 + - Vol1-Env2 - Vol1-Env2 + + Osc 1 - Vol env 2 + - Vol1-LFO1 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 + - Vol1-LFO2 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 + - Vol2-Env1 - Vol2-Env1 + + Osc 2 - Vol env 1 + - Vol2-Env2 - Vol2-Env2 + + Osc 2 - Vol env 2 + - Vol2-LFO1 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 + - Vol2-LFO2 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 + - Vol3-Env1 - Vol3-Env1 + + Osc 3 - Vol env 1 + - Vol3-Env2 - Vol3-Env2 + + Osc 3 - Vol env 2 + - Vol3-LFO1 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 + - Vol3-LFO2 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 + - Phs1-Env1 - Phs1-Env1 + + Osc 1 - Phs env 1 + - Phs1-Env2 - Phs1-Env2 + + Osc 1 - Phs env 2 + - Phs1-LFO1 - Phs1-LFO1 + + Osc 1 - Phs LFO 1 + - Phs1-LFO2 - Phs1-LFO2 + + Osc 1 - Phs LFO 2 + - Phs2-Env1 - Phs2-Env1 + + Osc 2 - Phs env 1 + - Phs2-Env2 - Phs2-Env2 + + Osc 2 - Phs env 2 + - Phs2-LFO1 - Phs2-LFO1 + + Osc 2 - Phs LFO 1 + - Phs2-LFO2 - Phs2-LFO2 + + Osc 2 - Phs LFO 2 + - Phs3-Env1 - Phs3-Env1 + + Osc 3 - Phs env 1 + - Phs3-Env2 - Phs3-Env2 + + Osc 3 - Phs env 2 + - Phs3-LFO1 - Phs3-LFO1 + + Osc 3 - Phs LFO 1 + - Phs3-LFO2 - Phs3-LFO2 + + Osc 3 - Phs LFO 2 + - Pit1-Env1 - Pit1-Env1 + + Osc 1 - Pit env 1 + - Pit1-Env2 - Pit1-Env2 + + Osc 1 - Pit env 2 + - Pit1-LFO1 - Pit1-LFO1 + + Osc 1 - Pit LFO 1 + - Pit1-LFO2 - Pit1-LFO2 + + Osc 1 - Pit LFO 2 + - Pit2-Env1 - Pit2-Env1 + + Osc 2 - Pit env 1 + - Pit2-Env2 - Pit2-Env2 + + Osc 2 - Pit env 2 + - Pit2-LFO1 - Pit2-LFO1 + + Osc 2 - Pit LFO 1 + - Pit2-LFO2 - Pit2-LFO2 + + Osc 2 - Pit LFO 2 + - Pit3-Env1 - Pit3-Env1 + + Osc 3 - Pit env 1 + - Pit3-Env2 - Pit3-Env2 + + Osc 3 - Pit env 2 + - Pit3-LFO1 - Pit3-LFO1 + + Osc 3 - Pit LFO 1 + - Pit3-LFO2 - Pit3-LFO2 + + Osc 3 - Pit LFO 2 + - PW1-Env1 - PW1-Env1 + + Osc 1 - PW env 1 + - PW1-Env2 - PW1-Env2 + + Osc 1 - PW env 2 + - PW1-LFO1 - PW1-LFO1 + + Osc 1 - PW LFO 1 + - PW1-LFO2 - PW1-LFO2 + + Osc 1 - PW LFO 2 + - Sub3-Env1 - Sub3-Env1 + + Osc 3 - Sub env 1 + - Sub3-Env2 - Sub3-Env2 + + Osc 3 - Sub env 2 + - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 + - Sub3-LFO2 - Sub3-LFO2 + + 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 @@ -4729,279 +8696,241 @@ Please make sure you have write permission to the file and the directory contain MonstroView + Operators view Tampilan operator - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - + Matrix view Tampilan matrix - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - Pilih bentuk gelombang untuk osilator 2. - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - + + + Volume Volume + + + Panning Keseimbangan + + + Coarse detune Detune kasar + + + semitones - Finetune left + + + Fine tune left + + + + cents sen - Finetune right + + + 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 @@ -5009,117 +8938,145 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator MultitapEchoControlDialog + Length Panjang + Step length: + Dry - Dry Gain: + + Dry gain: + Stages - Lowpass stages: + + Low-pass stages: + Swap inputs Tukar masukan - Swap left and right input channel for reflections - Tukar masukan kiri dan kanan saluran untuk refleksi + + Swap left and right input channels for reflections + NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune - Channel 1 Volume + + Channel 1 volume Volume Saluran 1 - Channel 1 Envelope length + + Channel 1 envelope length - Channel 1 Duty cycle + + Channel 1 duty cycle - Channel 1 Sweep amount + + Channel 1 sweep amount - Channel 1 Sweep rate + + Channel 1 sweep rate + Channel 2 Coarse detune + Channel 2 Volume Volume Saluran 2 - Channel 2 Envelope length + + Channel 2 envelope length - Channel 2 Duty cycle + + Channel 2 duty cycle - Channel 2 Sweep amount + + Channel 2 sweep amount - Channel 2 Sweep rate + + Channel 2 sweep rate - Channel 3 Coarse detune + + Channel 3 coarse detune - Channel 3 Volume + + Channel 3 volume Volume Saluran 3 - Channel 4 Volume + + Channel 4 volume Volume Saluran 4 - Channel 4 Envelope length + + Channel 4 envelope length - Channel 4 Noise frequency + + Channel 4 noise frequency - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep + Master volume Volume master + Vibrato Getaran @@ -5127,197 +9084,448 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 + + 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 volume - Volume Osc %1 - - - Osc %1 panning - Keseimbangan Osc %1 - - - 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 - Tipe modulasi %1 - - + 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 @@ -5325,77 +9533,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - Buka patch lain - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Klik disini untuk membuka file patch lainnya. Pengaturan Pengulangan dan Langgam tidak diatur ulang. + + Open patch + + Loop Pengulangan + Loop mode Mode pengulangan - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Di sini Anda bisa mengaktifkan mode Pengulangan. Jika diaktifkan, PatMan akan menggunakan informasi pengulangan yang tersedia dalam file. - - + Tune Nada + Tune mode Mode nada - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Disini kamu bisa mengaktifkan/menonaktifkan mode Nada. Jika diaktifkan, PatMan akan mengatur sampel agar cocok dengan frekuensi not. - - + No file selected Tidak ada berkas dipilih + Open patch file Buka berkas patch + Patch-Files (*.pat) Berkas-Patch (*.pat) - PatternView + 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 @@ -5403,14 +9619,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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. @@ -5418,10 +9637,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK + LFO Controller Kontroler LFO @@ -5429,327 +9650,519 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog + BASE DASAR - Base amount: - Jumlah dasar: - - - Modulation amount: - Jumlah modulasi: - - - Attack: - Attack: - - - Release: - Release: + + Base: + + AMNT JMLH + + Modulation amount: + Jumlah modulasi: + + + MULT - Amount Multiplicator: + + Amount multiplicator: + ATCK + + Attack: + Attack: + + + DCAY + + Release: + Release: + + + + TRSH + + + + Treshold: - TRSH + + Mute output + + + + + Absolute value PeakControllerEffectControls + Base value Nilai dasar + Modulation amount - Mute output - - - + Attack Attack + Release Release - Abs Value - Nilai Abs - - - Amount Multiplicator + + Treshold - Treshold + + Mute output + + + + + Absolute value + + + + + Amount multiplicator PianoRoll - Please open a pattern by double-clicking on it! - - - - Last note - - - - Note lock - - - + Note Velocity + Note Panning Keseimbangan Not + Mark/unmark current semitone - Mark current scale - - - - Mark current chord - - - - Unmark all - Hapus tanda semua - - - No scale - - - - No chord - - - - Velocity: %1% - Kecepatan: %1% - - - Panning: %1% left - Menyeimbangkan: %1% kiri - - - Panning: %1% right - Menyeimbangkan: %1% kanan - - - Panning: center - Menyeimbangkan: tengah - - - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: - - + 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 pattern (Space) + + 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 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) Berhenti memutar pola sekarang (Spasi) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Klik di sini untuk memainkan pola saat ini. Ini berguna saat mengeditnya. Pola diulang secara otomatis saat ujungnya tercapai. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Klik di sini untuk merekam not dari perangkat MIDI atau virtual test-piano dari jendela saluran yang sesuai dengan pola saat ini. Saat merekam semua not yang Anda mainkan akan dituliskan ke pola ini dan Anda dapat memutar dan mengubahnya setelahnya. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Klik di sini untuk merekam not dari perangkat MIDI atau virtual test-piano dari jendela saluran yang sesuai dengan pola saat ini. Saat merekam semua not yang Anda mainkan akan dituliskan ke pola ini dan Anda akan mendengar lagu atau trek BB di latar belakang. - - - Click here to stop playback of current pattern. - Klik disini untuk berhenti memutar pola saat ini. - - - Draw mode (Shift+D) - mode Menggambar (Shift+D) - - - Erase mode (Shift+E) - Mode penghapus (Shift+E) - - - Select mode (Shift+S) - Mode pilih (Shift+S) - - - Detune mode (Shift+T) - Mode detune (Shift+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Klik di sini dan mode gambar akan diaktifkan. Dalam mode ini Anda bisa menambahkan, mengubah ukuran dan memindahkan not. Ini adalah mode default yang sering digunakan. Anda juga dapat menekan 'Shift+D' pada keyboard untuk mengaktifkan mode ini. Tekan %1 untuk masuk ke mode pilih secara sementara. - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - Potong not terpilih (%1+X) - - - Copy selected notes (%1+C) - Salin not terpilih (%1+C) - - - Paste notes from clipboard (%1+V) - Tempel not dari papan klip (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Klik di sini dan catatan dari papan klip akan disisipkan pada ukuran pertama yang terlihat. - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - - - + 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 pattern + + + Piano-Roll - no clip Rol-Piano - tiada pola - Quantize - Kuantitas + + + 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"! @@ -5757,221 +10170,1293 @@ Alasan: "%2" 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. - Instrument Plugins - Plugin Instrumen + + no description + tiada 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 + + + + 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 for processing dynamics in a flexible way + plugin untuk memproses dynamics dengan cara yang fleksibel + + + + A native eq plugin + Plugin eq bawaan + + + + A native flanger plugin + + + + + 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 + + + + + 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 + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + Kontrol + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Pengaturan + + + + 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: + Tipe: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + 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! + + 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 + Tutup + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + Nyala/Mati + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - 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 - - + 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-File (*.wav) - Berkas-WAV (*.wav) + + WAV (*.wav) + WAV (*.wav) - Compressed OGG-File (*.ogg) - Berkas-OGG terkompresi (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin - Compressed MP3-File (*.mp3) - + + Show GUI + Tampilkan GUI + + + + Help + Bantuan 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 - File: %1 - Berkas: %1 + + &Recently Opened Projects + &Proyek yang Baru Dibuka RenameDialog + Rename... Ganti nama... @@ -5979,717 +11464,1607 @@ Alasan: "%2" ReverbSCControlDialog + Input Masukan - Input Gain: - Gain Masuk: + + Input gain: + Gain masukan: + Size Ukuran + Size: Ukuran: + Color Warna + Color: Warna: + Output Keluaran - Output Gain: - Gain Keluaran: + + Output gain: + Gait keluaran: ReverbSCControls - Input Gain - Gain Masukan + + Input gain + Gain masukan + Size Ukuran + Color Warna - Output Gain - Gain Keluaran + + Output gain + Gain keluaran + + + + SaControls + + + Pause + + + + + 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 + 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 + 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 - Open audio file - Buka berkas suara - - - 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) - - - 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) - - + 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 - - - SampleTCOView - double-click to select sample - Klik dua kali untuk memilih sampel + + 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 - Sample track - Trek sampel - - + 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 - Setup LMMS - Atur LMMS - - - General settings - Pengaturan umum - - - BUFFER SIZE - UKURAN BUFFER - - - Reset to default-value - Setel ulang ke nilai default - - - MISC + + Reset to default value + + Use built-in NaN handler + + + + + Settings + Pengaturan + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + Tampilkan volume sebagai dBFS + + + Enable tooltips Aktifkan tooltips - Show restart warning after changing settings - Tampilkan peringatan mulai ulang setelah mengganti pengaturan + + Enable master oscilloscope by default + - Compress project files per default - Kompres berkas proyek per default + + Enable all note labels in piano roll + - One instrument track window mode - Mode jendela satu trek instrumen + + Enable compact track buttons + - HQ-mode for output audio-device - mode-HQ untuk keluaran perangkat-audio + + Enable one instrument-track-window mode + - Compact track buttons - Tombol trek yang kompak + + 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 - Enable note labels in piano roll - Aktifkan label not di rol piano - - - Enable waveform display by default - Aktifkan tampilan gelombang grafik sebagai default - - + Keep effects running even without input Biarkan efek berjalan walaupun tanpa masukan - Create backup file when saving a project - Buat berkas backup ketika menyimpan proyek + + + Audio + Audio - LANGUAGE - BAHASA - - - Paths + + 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-plugin directory - Direktori VST-plugin + + VST plugins directory + + + LADSPA plugins directories + + + + + SF2 directory + Direktori SF2 + + + + Default SF2 + + + + + GIG directory + Direktori GIG + + + + Theme directory + + + + Background artwork Latar belakang karya seni - STK rawwave directory - Direktori STK rawwave - - - Default Soundfont File - Berkas Soundfont default - - - Performance settings - Pengaturan performa - - - UI effects vs. performance - Efek UI vs. performa - - - Smooth scroll in Song Editor - Gulung halus di Editor Lagu - - - Show playback cursor in AudioFileProcessor + + Some changes require restarting. - Audio settings - Pengaturan suara + + Autosave interval: %1 + - AUDIO INTERFACE - INTERFACE SUARA + + Choose the LMMS working directory + - MIDI settings - Pengaturan MIDI + + Choose your VST plugins directory + - MIDI INTERFACE - INTERFACE MIDI + + Choose your LADSPA plugins directory + + + Choose your default SF2 + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + + Paths + + + + OK OK + Cancel Batal - Restart LMMS - Mulai Ulang LMMS - - - Please note that most changes won't take effect until you restart LMMS! - Harap dicatat bahwa sebagian besar perubahan tidak akan berpengaruh sampai Anda memulai-ulang LMMS! - - + Frames: %1 Latency: %2 ms Bingkai: %1 Latensi: %2 md - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - Pilih direktori kerja LMMS - - - Choose your VST-plugin directory - Pilih direktori VST-Plugin Anda - - - Choose artwork-theme directory - Pilih direktori tema karya seni - - - Choose LADSPA plugin directory - Pilih direktori plugin LADSPA - - - Choose STK rawwave directory - Pilih direktori STK rawwave - - - Choose default SoundFont - Pilih Soundfont default - - - Choose background artwork - Pilih karya seni latar belakang - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - Buka kembali proyek terakhir saat memulai - - - Directories - Direktori - - - Themes directory - Direktori tema - - - GIG directory - Direktori GIG - - - SF2 directory - Direktori SF2 - - - LADSPA plugin directories - Direktori plugin LADSPA - - - Auto save - Simpan otomatis - - + Choose your GIG directory Pilih direktor GIG anda + Choose your SF2 directory Pilih direktor SF2 anda + minutes menit + minute menit - Display volume as dBFS - Tampilkan volume sebagai dBFS - - - Enable auto-save - Aktifkan simpan otomatis - - - Allow auto-save while playing - Izinkan simpan-otomatis ketika bermain - - + Disabled Dinonaktifkan + + + SidInstrument - Auto-save interval: %1 - Waktu jeda simpan otomatis: %1 + + Cutoff frequency + Frekuensi cutoff - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Tetapkan waktu antara pencadangan otomatis ke% 1. -Ingat juga untuk menyimpan proyek Anda secara manual. Anda dapat memilih untuk menonaktifkan penyimpanan saat bermain, beberapa sistem yang lebih tua sulit ditemukan. + + Resonance + Resonansi + + + + 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 + + + Close + Tutup Song + Tempo Tempo + Master volume Volume master + Master pitch Master pitch - Project saved - Proyek disimpan + + Aborting project load + - The project %1 is now saved. - Proyek %1 telah disimpan. + + Project file contains local paths to plugins, which could be used to run malicious code. + - 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 - - - Empty project - Proyek kosong - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Proyek ini kosong jadi mengekspor itu tidak masuk akal. Pertama silakan masukan beberapa item ke Editor Lagu! - - - Select directory for writing exported tracks... - Pilih direktori untuk menulis trek yang diekspor... - - - untitled - tak berjudul - - - Select file for project-export... - Pilih berkas untuk ekspor-proyek... - - - The following errors occured while loading: - Kesalahan muncul saat memuat: - - - MIDI File (*.mid) - Berkas MIDI (*.mid) + + Can't load project: Project file contains local paths to plugins. + + LMMS Error report Laporan kesalahan LMMS - Save project - Simpan proyek + + (repeated %1 times) + + + + + The following errors occurred while loading: + SongEditor + Could not open file Tidak bisa membuka berkas - Could not write file - Tidak bisa menulis berkas - - + 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. + + + + + This %1 was created with LMMS %2 + + + + Error in file Kesalahan dalam berkas + 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. - Tempo - Tempo - - - TEMPO/BPM - TEMPO/KPM - - - tempo of song - tempo lagu - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - High quality mode - Mode kualitas tinggi - - - Master volume - Volume master - - - master volume - volume master - - - Master pitch - Master pitch - - - master pitch - master pitch - - - Value: %1% - Nilai: %1% - - - Value: %1 semitones - Nilai: %1 semitone - - - 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. - Tidak bisa membuka %1 untuk menulis. Anda mungkin tidak diperbolehkan untuk menulis ke berkas ini. Pastikan anda memiliki akses baca kepada berkas tersebut lalu coba lagi. - - - template - template - - - project - proyek - - + Version difference Perbedaan Versi - This %1 was created with LMMS %2. - %1 ini telah dibuat oleh LMMS %2. + + template + template + + + + project + proyek + + + + Tempo + Tempo + + + + TEMPO + + + + + Tempo in BPM + + + + + High quality mode + Mode kualitas tinggi + + + + + + Master volume + Volume master + + + + + + Master pitch + Master pitch + + + + Value: %1% + Nilai: %1% + + + + Value: %1 semitones + Nilai: %1 semitone SongEditorWindow + Song-Editor Editor-Lagu + Play song (Space) Putar lagu (Spasi) + 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) - Add beat/bassline - Tambah ketukan/bassline - - - Add sample-track - Tambah Trek-sampel - - - Add automation-track - Tambah trek-otomasi - - - Draw mode - Mode gambar - - - Edit mode (select and move) - Mode Edit (pilih dan pindah) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Klik disini jika anda ingin memutar seluruh lagu Anda. Pemutaran akan dimulai pada tanda-posisi-lagu (hijau). Anda juga bisa memindahkannya saat memutar. - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - + Track actions Aksi trek + + Add beat/bassline + Tambah ketukan/bassline + + + + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum + + Horizontal zooming + Pembesaran horizontal + + + + Snap controls - Linear Y axis + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - + + Hint + Petunjuk - Linear Y axis + + Move recording curser using <Left/Right> arrows - - Channel mode - Mode saluran - SubWindow + Close Tutup + Maximize Maksimalkan + Restore Kembalikan @@ -6697,81 +13072,110 @@ Setidaknya pastikan Anda memiliki izini baca kepada berkas tersebut lalu coba la TabWidget + + Settings for %1 Pengaturan untuk %1 + + TemplatesMenu + + + New from template + Baru dari template + + TempoSyncKnob + + 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 @@ -6779,30 +13183,37 @@ Setidaknya pastikan Anda memiliki izini baca kepada berkas tersebut lalu coba la TimeDisplayWidget - click to change time units - klik untuk mengganti unit waktu + + Time units + + MIN MIN + SEC DTK + MSEC MDTK + BAR BAR + BEAT KETUKAN + TICK TIK @@ -6810,45 +13221,50 @@ Setidaknya pastikan Anda memiliki izini baca kepada berkas tersebut lalu coba la TimeLineWidget - Enable/disable auto-scrolling - Aktifkan/nonaktifkan skrol-otomatis + + Auto scrolling + - Enable/disable loop-points - Aktifkan / nonaktifkan titik-pengulangan + + Loop points + - After stopping go back to begin - Setelah berhenti kembali ke awal + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Tahan <Shift> untuk memindahkan titik pengulangan awal; Tekan <%1> untuk menonaktifkan titik pengulangan magnetik. - Track + Mute Bisu + Solo Solo @@ -6856,305 +13272,492 @@ Setidaknya pastikan Anda memiliki izini baca kepada berkas tersebut lalu coba la 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... - Importing MIDI-file... - Mengimpor berkas-MIDI... + + Loading cancelled + + + Project loading was cancelled. + + + + Loading Track %1 (%2/Total %3) Memuat Trek %1 (%2/Total %3) + + + Importing MIDI-file... + Mengimpor berkas-MIDI... + - TrackContentObject + Clip + Mute Bisu - TrackContentObjectView + ClipView + Current position Posisi saat ini - Hint - Petunjuk - - - Press <%1> and drag to make a copy. - Tekan <%1> dan seret untuk membuat salinan. - - + Current length Panjang saat ini - Press <%1> for free resizing. - Tekan <%1> untuk merubah ukuran secara bebas. - - + + %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 + + + Paste + Tempel + TrackOperationsWidget - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Actions for this track - Aksi untuk trek ini + + Actions + + + Mute Bisu + + Solo Solo - Mute this track - Bisukan trek ini + + 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 - FX %1: %2 + + 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 - Assign to new FX Channel - Tetapkan ke Saluran FX baru + + Change color + Ganti warna + + + + Reset color to default + Reset warna ke default + + + + Set random color + + + + + Clear clip colors + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 + + Modulate phase of oscillator 1 by oscillator 2 - Use amplitude modulation for modulating oscillator 1 with oscillator 2 + + Modulate amplitude of oscillator 1 by oscillator 2 - Mix output of oscillator 1 & 2 - Campurkan keluaran dari osilator 1 & 2 + + Mix output of oscillators 1 & 2 + + Synchronize oscillator 1 with oscillator 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 + + Modulate frequency of oscillator 1 by oscillator 2 - Use phase modulation for modulating oscillator 2 with oscillator 3 + + Modulate phase of oscillator 2 by oscillator 3 - Use amplitude modulation for modulating oscillator 2 with oscillator 3 + + Modulate amplitude of oscillator 2 by oscillator 3 - Mix output of oscillator 2 & 3 - Campurkan keluaran dari osilator 2 & 3 + + Mix output of oscillators 2 & 3 + + Synchronize oscillator 2 with oscillator 3 Selaraskan osilator 2 dengan osilator 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 + + Modulate frequency of oscillator 2 by oscillator 3 + Osc %1 volume: Volume Osc %1: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - - - + Osc %1 panning: Keseimbangan Osc %1: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - - - + Osc %1 coarse detuning: + semitones semitone - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - - - + Osc %1 fine detuning left: + + cents sen - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 fine detuning right: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 phase-offset: + + degrees derajat - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - - - + Osc %1 stereo phase-detuning: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. + + Sine wave + Gelombang sinus + + + + Triangle wave + Gelombang segitiga + + + + Saw wave + Gelombang gergaji + + + + Square wave + Gelombang kotak + + + + Moog-like saw wave - Use a sine-wave for current oscillator. - Gunakan gelombang sinus untuk osilator saat ini. - - - Use a triangle-wave for current oscillator. - Gunakan gelombang segitiga untuk osilator saat ini. - - - Use a saw-wave for current oscillator. - Gunakan gelombang gergaji untuk osilator saat ini. - - - Use a square-wave for current oscillator. - Gunakan gelombang kotak untuk osilator saat ini. - - - Use a moog-like saw-wave for current oscillator. + + Exponential wave - Use an exponential wave for current oscillator. + + White noise + Kebisingan putih + + + + User-defined wave + + + + + VecControls + + + Display persistence amount - Use white-noise for current oscillator. - Gunakan derau putih untuk osilator saat ini. + + Logarithmic scale + - Use a user-defined waveform for current oscillator. - Gunakan gelombang yang ditetapkan pengguna untuk osilator saat ini. + + 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 Tingkatkan versi nomor + Decrement version number Turunkan versi nomor + + Save Options + + + + already exists. Do you want to replace it? sudah ada. Apakah anda ingin menimpanya? @@ -7162,156 +13765,117 @@ Pastikan anda memiliki izin baca untuk berkas ini dan direktori yang mengandung VestigeInstrumentView - Open other VST-plugin - Buka plugin-VST lain + + + Open VST plugin + - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Klik disini, Jika Anda ingin membuka plugin VST lain. Setelah mengklik tombol ini, dialog buka-berkas muncul dan Anda dapat memilih berkas Anda. + + Control VST plugin from LMMS host + - Show/hide GUI - Tampilkan/sembunyikan GUI - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Klik di sini untuk menampilkan atau menyembunyikan tampilan antarmuka pengguna (GUI) plugin VST Anda. - - - Turn off all notes - Matikan semua not - - - Open VST-plugin - Buka plugin-VST - - - DLL-files (*.dll) - Berkas-DLL (*.dll) - - - EXE-files (*.exe) - berkas-EXE (*.exe) - - - No VST-plugin loaded - Tidak ada VST-plugin dimuat - - - Control VST-plugin from LMMS host - Kendalikan VST-plugin dari host LMMS - - - Click here, if you want to control VST-plugin from host. - Klik disini, jika anda ingin mengendalikan VST-plugin dari host. - - - Open VST-plugin preset - Buka preset VST-plugin - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klik disini, jika anda infin membuka preset VST-plugin *.fxp, *.fxb lain. + + Open VST plugin preset + + Previous (-) Sebelumnya (-) - Click here, if you want to switch to another VST-plugin preset program. - Klik disini, jika anda ingin mengganti ke program preset plugin VST lain. - - + Save preset Simpan preset - Click here, if you want to save current VST-plugin preset program. - Klik disini, jika anda ingin menyimpan preset program VST-plugin saat ini. - - + Next (+) Selanjutnya (+) - Click here to select presets that are currently loaded in VST. - Klik disini untuk memilih preset yang saat ini dimuat di VST. + + 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) + + + + No VST plugin loaded + + + + Preset Preset + by oleh + - VST plugin control - kontrol VST plugin - - VisualizationWidget - - click to enable/disable visualization of master-output - klik disini untuk mengaktifkan/menonaktifkan visualisasi dari keluaran master - - - Click to enable - klik untuk mengaktifkan - - VstEffectControlDialog + Show/hide Tampilkan/sembunyikan - Control VST-plugin from LMMS host - Kendalikan VST-plugin dari host LMMS + + Control VST plugin from LMMS host + - Click here, if you want to control VST-plugin from host. - Klik disini, jika anda ingin mengendalikan VST-plugin dari host. - - - Open VST-plugin preset - Buka preset VST-plugin - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klik disini, jika anda infin membuka preset VST-plugin *.fxp, *.fxb lain. + + Open VST plugin preset + + Previous (-) Sebelumnya (-) - Click here, if you want to switch to another VST-plugin preset program. - Klik disini, jika anda ingin mengganti ke program preset plugin VST lain. - - + Next (+) Selanjutnya (+) - Click here to select presets that are currently loaded in VST. - Klik disini untuk memilih preset yang saat ini dimuat di VST. - - + Save preset Simpan preset - Click here, if you want to save current VST-plugin preset program. - Klik disini, jika anda ingin menyimpan preset program VST-plugin saat ini. - - + + Effect by: Efek oleh: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7319,173 +13883,207 @@ Pastikan anda memiliki izin baca untuk berkas ini dan direktori yang mengandung VstPlugin - Loading plugin - Memuat plugin + + + 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 - Please wait while loading VST plugin... - Mohon tunggu, sedang memuat VST plugin... + + Loading plugin + Memuat plugin - The VST plugin %1 could not be loaded. - VST plugin %1 tidak dapat dimuat. + + 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 + 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 @@ -7493,2777 +14091,2253 @@ Pastikan anda memiliki izin baca untuk berkas ini dan direktori yang mengandung WatsynView - 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 with output of A2 - - - - Ring-modulate A1 and A2 - Cincin modulasi A1 dan A2 - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - Gabung keluaran dari B2 ke B1 - - - Modulate amplitude of B1 with output of B2 - Modulasikan amplitudo dari B1 dengan keluaran B2 - - - Ring-modulate B1 and B2 - Cincin modulasi B1 dan B2 - - - Modulate phase of B1 with 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 - - - Click to load a waveform from a sample file - Klik untuk memuat bentuk gelombang dari berkas sampel - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - Normalisasi - - - Click to normalize - Klik untuk normalisasi - - - Invert - Balik - - - Click to invert - Klik untuk dibalikan - - - Smooth - Halus - - - Click to smooth - Klik untuk menghaluskan - - - Sine wave - Gelombang sinus - - - Click for sine wave - Klik untuk gelombang sinus - - - Triangle wave - Gelombang segitiga - - - Click for triangle wave - Klik untuk gelombang segitiga - - - Click for saw wave - Klik untuk gelombang gergaji - - - Square wave - Gelombang kotak - - - Click for square wave - Klik untuk gelombang kotak - - + + + + Volume Volume + + + + 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 + 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 + + + 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 frequency - Filter Resonance + + Filter resonance + Bandwidth Lebar pita - FM Gain - Gain FM - - - Resonance Center Frequency + + FM gain - Resonance Bandwidth + + Resonance center frequency - Forward MIDI Control Change Events + + Resonance bandwidth + + + + + Forward MIDI control change events ZynAddSubFxView - Show GUI - Tampilkan GUI - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Klik disini untuk menampilkan atau menyembunyikan antarmuka pengguna grafis (GUI) dari ZynAddSubFX. - - + Portamento: Portamento: + PORT PORT - Filter Frequency: - Frekuensi Filter: + + Filter frequency: + + FREQ FREK - Filter Resonance: - Resonansi Filter: + + Filter resonance: + + RES RES + Bandwidth: Lebar pita: + BW LP - FM Gain: - FM Gain: + + FM gain: + + FM GAIN FM GAIN + Resonance center frequency: Frekuensi resonansi tengah: + RES CF + Resonance bandwidth: + RES BW - Forward MIDI Control Changes + + Forward MIDI control changes + + + Show GUI + Tampilkan GUI + - audioFileProcessor + AudioFileProcessor + Amplify + Start of sample Awal dari sampel + End of sample Akhir dar sampel - Reverse sample - Balikan sampel - - - Stutter - - - + 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 + BitInvader - Samplelength - Panjangsampel + + Sample length + - bitInvaderView + BitInvaderView - Sample Length - Panjang Sampel - - - Sine wave - Gelombang sinus - - - Triangle wave - Gelombang segitiga - - - Saw wave - Gelombang gergaji - - - Square wave - Gelombang kotak - - - White noise wave - Gelombang riuh - - - User defined wave - Gelombang yang didefinisikan pengguna - - - Smooth - Halus - - - Click here to smooth waveform. - Klik disini untuk menghaluskan grafik gelombang. - - - Interpolation - Interpolasi - - - Normalize - Normalisasi + + 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. - Click for a sine-wave. + + + Sine wave + Gelombang sinus + + + + + Triangle wave + Gelombang segitiga + + + + + Saw wave + Gelombang gergaji + + + + + Square wave + Gelombang kotak + + + + + White noise + Kebisingan putih + + + + + User-defined wave - Click here for a triangle-wave. - Klik disini untuk gelombang-segitiga. - - - Click here for a saw-wave. - Klik disini untuk gelombang gergaji. - - - Click here for a square-wave. - Klik disini untuk gelombang-kotak. - - - Click here for white-noise. - Klik disini untuk kebisingan-putih. - - - Click here for a user-defined shape. - - - - - dynProcControlDialog - - INPUT - MASUKAN - - - Input gain: - Gain masukan: - - - OUTPUT - KELUARAN - - - Output gain: - Gait keluaran: - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Reset waveform - Reset grafik gelombang - - - Click here to reset the wavegraph back to default - Klik disini untuk mereset gelombang grafik ke default - - + + Smooth waveform Gelombang halus - Click here to apply smoothing to wavegraph - Klik disini untuk menerapkan kehalusan ke grafik gelombang + + Interpolation + Interpolasi - Increase wavegraph amplitude by 1dB + + Normalize + Normalisasi + + + + DynProcControlDialog + + + INPUT + MASUKAN + + + + Input gain: + Gain masukan: + + + + OUTPUT + KELUARAN + + + + Output gain: + Gait keluaran: + + + + ATTACK - Click here to increase wavegraph amplitude by 1dB - Klik disini untuk meningkatkan amplitudo Grafik gelombang dengan 1dB - - - Decrease wavegraph amplitude by 1dB + + Peak attack time: - Click here to decrease wavegraph amplitude by 1dB - Klik disini untuk mengurangi amplitudo wavegraf dengan 1dB - - - Stereomode Maximum + + 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 - Stereomode Average + + Stereo mode: average + Process based on the average of both stereo channels - Stereomode Unlinked + + Stereo mode: unlinked + Process each stereo channel independently - dynProcControls + DynProcControls + Input gain Gain masukan + Output gain Gain keluaran + Attack time + Release time + Stereo mode Mode stereo - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - - - - Sine wave - Gelombang sinus - - - Click for a sine-wave. - - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - - - - Click for an exponential wave. - - - - Saw wave - Gelombang gergaji - - - Click here for a saw-wave. - Klik disini untuk gelombang gergaji. - - - User defined wave - Gelombang yang didefinisikan pengguna - - - Click here for a user-defined shape. - - - - 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. - - - White noise wave - Gelombang riuh - - - Click here for white-noise. - Klik disini untuk kebisingan-putih. - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - - - - O2 panning: - - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - Assign to: - - - - New FX Channel - Saluran FX Baru - - graphModel + Graph Grafik - kickerInstrument + KickerInstrument + Start frequency Frekuensi mulai + End frequency Frekuensi akhir - Gain - Gain - - + Length Panjang - Distortion Start - Distorsi Mulai - - - Distortion End - Distorsi Akhir - - - Envelope Slope + + Start distortion + + End distortion + + + + + Gain + Gain + + + + Envelope slope + + + + Noise Derau + Click Klik - Frequency Slope + + Frequency slope + Start from note Mulai dari not + End to note Berakhir ke not - kickerInstrumentView + KickerInstrumentView + Start frequency: Frekuensi mulai: + End frequency: Frekuensi akhir: + + Frequency slope: + + + + Gain: Gain: - Frequency Slope: + + Envelope length: - Envelope Length: - - - - Envelope Slope: + + Envelope slope: + Click: Klik: + Noise: Derau: - Distortion Start: - Distorsi Mulai: + + Start distortion: + - Distortion End: - Distorsi Akhir: + + End distortion: + - ladspaBrowserView + LadspaBrowserView + + Available Effects Efek tersedia + + Unavailable Effects Efek tak tersedia + + Instruments Instrumen + + Analysis Tools Alat Analisis + + Don't know Tidak tahu - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - - - + Type: Tipe: - ladspaDescription + LadspaDescription + Plugins Plugin + Description Deskripsi - ladspaPortDialog + 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 + 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 + 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 + MalletsInstrument + Hardness Kekerasan + Position Posisi - Vibrato Gain + + Vibrato gain - Vibrato Freq + + Vibrato frequency - Stick Mix + + Stick mix + Modulator Modulator + Crossfade - LFO Speed + + LFO speed Kecepatan LFO - LFO Depth - Kedalaman LFO + + LFO depth + + ADSR ADSR + Pressure Tekanan + Motion + Speed Kecepatan + Bowed + Spread + Marimba Marimba + Vibraphone Vibraphone + Agogo - Wood1 + + Wood 1 + Reso Reso - Wood2 + + Wood 2 + Beats Ketukan - Two Fixed + + Two fixed + Clump - Tubular Bells + + Tubular bells - Uniform Bar + + Uniform bar - Tuned Bar + + Tuned bar + Glass - Tibetan Bowl + + Tibetan bowl - malletsInstrumentView + MalletsInstrumentView + Instrument Instrumen + Spread + Spread: - Hardness - Kekerasan - - - Hardness: - - - - Position - Posisi - - - Position: - Posisi: - - - Vib Gain - - - - Vib Gain: - - - - Vib Freq - - - - Vib Freq: - - - - Stick Mix - - - - Stick Mix: - - - - Modulator - Modulator - - - Modulator: - - - - Crossfade - - - - Crossfade: - - - - LFO Speed - Kecepatan LFO - - - LFO Speed: - Kecepatan LFO: - - - LFO Depth - Kedalaman LFO - - - LFO Depth: - Kedalaman LFO: - - - ADSR - ADSR - - - ADSR: - ADSR: - - - Pressure - Tekanan - - - Pressure: - Tekanan: - - - Speed - Kecepatan - - - Speed: - Kecepatan: - - + 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 + ManageVSTEffectView + - VST parameter control - VST kontrol parameter - VST Sync + + VST sync - Click here if you want to synchronize all parameters with VST plugin. - Klik disini jika Anda ingin menyelaraskan semua parameter dengan plugin VST. - - + + Automated Diotomasi - Click here if you want to display automated parameters only. - Klik disini jika Anda ingin menampilkan parameter terotomasi saja. - - + Close Tutup - - Close VST effect knob-controller window. - Tutup jendela efek VST pengatur-kenop. - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - kontrol VST plugin + VST Sync - Click here if you want to synchronize all parameters with VST plugin. - Klik disini jika Anda ingin menyelaraskan semua parameter dengan plugin VST. - - + + Automated Diotomasi - Click here if you want to display automated parameters only. - Klik disini jika Anda ingin menampilkan parameter terotomasi saja. - - + Close Tutup - - Close VST plugin knob-controller window. - Tutup jendela plugin VST pengatur-kenop. - - opl2instrument - - Patch - Patch - - - Op 1 Attack - Attack Op 1 - - - Op 1 Decay - Decay Op 1 - - - Op 1 Sustain - Sustain Op 1 - - - Op 1 Release - Release Op 1 - - - Op 1 Level - Level Op 1 - - - Op 1 Level Scaling - Level Scaling Op 1 - - - Op 1 Frequency Multiple - - - - Op 1 Feedback - Timbal Balik Op 1 - - - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - FM - - - Vibrato Depth - - - - Tremolo Depth - - - - - opl2instrumentView - - Attack - Attack - - - Decay - Tahan - - - Release - Release - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion Distorsi + Volume Volume - organicInstrumentView + 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: - cents - sen - - - The distortion knob adds distortion to the output of the instrument. - Kenop distorsi menambahkan distorsi ke keluaran instrumen. - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - - + Osc %1 stereo detuning + + cents + sen + + + Osc %1 harmonic: - FreeBoyInstrument - - Sweep time - - - - Sweep direction - - - - Sweep RtShift amount - - - - Wave Pattern Duty - - - - 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 - - - Right Output level - Tingkat Keluaran kanan - - - Left Output level - Tingkat Keluaran kiri - - - 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 - - - Shift Register width - - - - - FreeBoyInstrumentView - - Sweep Time: - - - - Sweep Time - - - - Sweep RtShift amount: - - - - Sweep RtShift amount - - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - - - - Length of each step in sweep: - - - - Length of each step in sweep - - - - Wave pattern duty - - - - Square Channel 2 Volume: - - - - Square Channel 2 Volume - - - - Wave Channel Volume: - - - - Wave Channel Volume - - - - Noise Channel Volume: - - - - Noise Channel Volume - - - - SO1 Volume (Right): - Volume SO1 (Kanan): - - - SO1 Volume (Right) - Volume SO1 (Kanan) - - - SO2 Volume (Left): - Volume SO2 (Kiri): - - - SO2 Volume (Left) - Volume SO2 (Kiri) - - - Treble: - Trebel: - - - Treble - Trebel - - - Bass: - Bass: - - - Bass - Bass - - - Sweep Direction - - - - Volume Sweep Direction - - - - Shift Register Width - - - - Channel1 to SO1 (Right) - Saluran1 ke SO1 (Kanan) - - - Channel2 to SO1 (Right) - Saluran2 ke SO1 (Kanan) - - - Channel3 to SO1 (Right) - Saluran3 ke SO1 (Kanan) - - - Channel4 to SO1 (Right) - Saluran4 ke SO1 (Kanan) - - - Channel1 to SO2 (Left) - Saluran1 ke SO2 (Kiri) - - - Channel2 to SO2 (Left) - Saluran2 ke SO2 (Kiri) - - - Channel3 to SO2 (Left) - Saluran3 ke SO2 (Kiri) - - - Channel4 to SO2 (Left) - Saluran4 ke SO2 (Kiri) - - - Wave Pattern - Pola Gelombang - - - The amount of increase or decrease in frequency - Besarnya kenaikan atau penurunan frekuensi - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - - - - Draw the wave here - - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset + Bank selector Pemilih bank + Bank Bank + Program selector Pemilih program + Patch Patch + Name Nama + OK OK + Cancel Batal - pluginBrowser - - no description - tiada deskripsi - - - Incomplete monophonic imitation tb303 - - - - Plugin for freely manipulating stereo output - - - - Plugin for controlling knobs with sound peaks - Plugin untuk mengendalikan kenop dengan puncak suara - - - Plugin for enhancing stereo separation of a stereo input file - - - - List installed LADSPA plugins - Daftar plugin LADSPA yang terpasang - - - GUS-compatible patch instrument - - - - Additive Synthesizer for organ-like sounds - - - - Tuneful things to bang on - Hal-hal yang menyenangkan untuk ajep-ajep - - - VST-host for using VST(i)-plugins within LMMS - - - - Vibrating string modeler - Menggetarkan modeler string - - - plugin for using arbitrary LADSPA-effects inside LMMS. - Plugin untuk menggunakan efek LADSPA yang sewenang-wenang di dalam LMMS. - - - Filter for importing MIDI-files into LMMS - Filter untuk mengimpor berkas MIDI ke LMMS - - - 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. - - - Player for SoundFont files - Pemutar untuk berkas SoundFont - - - Emulation of GameBoy (TM) APU - Emulasi APU GameBoy (TM) - - - Customizable wavetable synthesizer - Synthesizer wavetable yang dapat disesuaikan - - - Embedded ZynAddSubFX - Tertanam ZynAddSubFX - - - 2-operator FM Synth - 2-operator FM Synth - - - Filter for importing Hydrogen files into LMMS - Filter untuk mengimpor berkas Hydrogen ke LMMS - - - LMMS port of sfxr - - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - Plugin amplifier native - - - Carla Rack Instrument - Rak Instrumen Carla - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - plugin untuk pembentukan gelombang - - - Boost your bass the fast and simple way - Tingkatkan bass Anda dengan cara cepat dan sederhana - - - Versatile drum synthesizer - Synthesizer drum serbaguna - - - 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 - - - plugin for processing dynamics in a flexible way - plugin untuk memproses dynamics dengan cara yang fleksibel - - - Carla Patchbay Instrument - Instrumen Carla Patchbay - - - plugin for using arbitrary VST effects inside LMMS. - Plugin untuk menggunakan efek VST yang sewenang-wenang di dalam LMMS. - - - Graphical spectrum analyzer plugin - Plugin analisa spektrum grafis - - - A NES-like synthesizer - Synthesizer seperti NES - - - A native delay plugin - - - - Player for GIG files - Pemutar untuk berkas GIG - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - Plugin eq bawaan - - - A 4-band Crossover Equalizer - - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - Filter untuk mengekspor berkas MIDI dari LMMS - - - Reverb algorithm by Sean Costello - - - - Mathematical expression parser - - - - - sf2Instrument + Sf2Instrument + Bank Bank + Patch Patch + Gain Gain + Reverb - Reverb Roomsize + + Reverb room size - Reverb Damping + + Reverb damping - Reverb Width + + Reverb width - Reverb Level + + Reverb level + Chorus - Chorus Lines + + Chorus voices - Chorus Level + + Chorus level - Chorus Speed + + Chorus speed - Chorus Depth + + Chorus depth + A soundfont %1 could not be loaded. Soundfont %1 tidak dapat dimuat. - sf2InstrumentView - - Open other SoundFont file - Buka berkas SoundFont lain - - - Click here to open another SF2 file - Klik disini untuk membuka berkas SF2 lain - - - Choose the patch - Pilih patch - - - Gain - Gain - - - Apply reverb (if supported) - Aktifkan gema (jika didukung) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - - - - Reverb Roomsize: - - - - Reverb Damping: - - - - Reverb Width: - - - - Reverb Level: - - - - Apply chorus (if supported) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - - - - Chorus Lines: - - - - Chorus Level: - - - - Chorus Speed: - - - - Chorus Depth: - - + Sf2InstrumentView + + Open SoundFont file Buka berkas SoundFont - SoundFont2 Files (*.sf2) - Berkas SoundFont2 (*.sf2) - - - - sfxrInstrument - - Wave Form - Bentuk Gelombang - - - - sidInstrument - - Cutoff - Cutoff - - - Resonance - Resonansi - - - Filter type - Tipe filter - - - Voice 3 off + + Choose patch - Volume - Volume - + + Gain: + Gain: - Chip model - Model chip - - - - sidInstrumentView - - Volume: - Volume: + + Apply reverb (if supported) + Aktifkan gema (jika didukung) - Resonance: - Resonansi: + + Room size: + Ukuran ruangan: - Cutoff frequency: - Frekuensi cutoff: - - - High-Pass filter - Filter High-Pass - - - Band-Pass filter - Filter Band-Pass - - - Low-Pass filter - Filter Low-Pass - - - Voice3 Off + + Damping: - MOS6581 SID - MOS6581 SID + + Width: + Lebar: - MOS8580 SID - MOS8580 SID + + + Level: + Tingkat: - Attack: - Attack: - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. + + Apply chorus (if supported) - Decay: - Decay: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. + + Voices: - Sustain: - Sustain: + + Speed: + Kecepatan: - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - + + Depth: + Kedalaman: - Release: - Release: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - Pulse Width: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - Coarse: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - Pulse Wave - - - - Triangle Wave - - - - SawTooth - - - - Noise - Derau - - - Sync - Selaras - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - Ring-Mod - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - Filtered - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - Test - Tes - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. + + SoundFont Files (*.sf2 *.sf3) - stereoEnhancerControlDialog + SfxrInstrument - WIDE - LEBAR + + Wave + + + + + StereoEnhancerControlDialog + + + WIDTH + + Width: Lebar: - stereoEnhancerControls + StereoEnhancerControls + Width Lebar - stereoMatrixControlDialog + 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 + 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 + VestigeInstrument + Loading plugin Memuat plugin - Please wait while loading VST-plugin... - Mohon tunggu, memuat VST-plugin... + + Please wait while loading the VST plugin... + - vibed + Vibed + String %1 volume Volume string %1 + String %1 stiffness + Pick %1 position + Pickup %1 position - Pan %1 - Keseimbangan %1 - - - Detune %1 + + String %1 panning - Fuzziness %1 - Kekaburan %1 + + String %1 detune + - Length %1 - Panjang %1 + + String %1 fuzziness + + + String %1 length + + + + Impulse %1 Impuls %1 - Octave %1 - Oktaf %1 + + String %1 + - vibedView + VibedView - Volume: - Volume: - - - The 'V' knob sets the volume of the selected string. - Tombol 'V' mengatur volume dari string yang dipilih. + + String volume: + + String stiffness: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - - - + Pick position: Posisi petik: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - - - + Pickup position: Posisi pickup: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. + + String panning: - Pan: - Keseimbangan: - - - The Pan knob determines the location of the selected string in the stereo field. - Tombol keseimbangan menentukan lokasi string yang dipilih di bidang stereo. - - - Detune: + + String detune: - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. + + String fuzziness: - Fuzziness: - Kekaburan: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. + + String length: - Length: - Panjang: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - Impulse or initial state - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. + + Impulse + Octave Oktaf - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - - - + Impulse Editor Editor Impuls - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - - - + Enable waveform Aktifkan gelombang grafik - Click here to enable/disable waveform. - Klik disini untuk mengaktifkan/menonaktifkan gelombang graifk. + + Enable/disable string + + String Deretan - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - - - + + Sine wave Gelombang sinus + + Triangle wave Gelombang segitiga + + Saw wave Gelombang gergaji + + Square wave Gelombang kotak - White noise wave - Gelombang riuh + + + White noise + Kebisingan putih - User defined wave - Gelombang yang didefinisikan pengguna + + + User-defined wave + - Smooth - Halus + + + Smooth waveform + Gelombang halus - Click here to smooth waveform. - Klik disini untuk menghaluskan grafik gelombang. - - - Normalize - Normalisasi - - - Click here to normalize waveform. - Klik disini untuk menormalisasi gelombang. - - - Use a sine-wave for current oscillator. - Gunakan gelombang sinus untuk osilator saat ini. - - - Use a triangle-wave for current oscillator. - Gunakan gelombang segitiga untuk osilator saat ini. - - - Use a saw-wave for current oscillator. - Gunakan gelombang gergaji untuk osilator saat ini. - - - Use a square-wave for current oscillator. - Gunakan gelombang kotak untuk osilator saat ini. - - - Use white-noise for current oscillator. - Gunakan derau putih untuk osilator saat ini. - - - Use a user-defined waveform for current oscillator. - Gunakan gelombang yang ditetapkan pengguna untuk osilator saat ini. + + + Normalize waveform + - voiceObject + 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 + WaveShaperControlDialog + INPUT MASUKAN + Input gain: Gain masukan: + OUTPUT KELUARAN + Output gain: Gait keluaran: - Reset waveform - Reset grafik gelombang + + + Reset wavegraph + - Click here to reset the wavegraph back to default - Klik disini untuk mereset gelombang grafik ke default + + + Smooth wavegraph + - Smooth waveform - Gelombang halus + + + Increase wavegraph amplitude by 1 dB + - Click here to apply smoothing to wavegraph - Klik disini untuk menerapkan kehalusan ke grafik gelombang - - - Increase graph amplitude by 1dB - Tingkatkan grafik amplitudo sebanyak 1dB - - - Click here to increase wavegraph amplitude by 1dB - Klik disini untuk meningkatkan amplitudo Grafik gelombang dengan 1dB - - - Decrease graph amplitude by 1dB - Turunkan grafik aplitudo sebanyak 1dB - - - Click here to decrease wavegraph amplitude by 1dB - Klik disini untuk mengurangi amplitudo wavegraf dengan 1dB + + + Decrease wavegraph amplitude by 1 dB + + Clip input Klip masukan - Clip input signal to 0dB - Klip sinyal masukan ke 0dB + + Clip input signal to 0 dB + - waveShaperControls + WaveShaperControls + Input gain Gain masukan + Output gain Gain keluaran - \ No newline at end of file + diff --git a/data/locale/it.ts b/data/locale/it.ts index f93cb0170..ff146d471 100644 --- a/data/locale/it.ts +++ b/data/locale/it.ts @@ -2,93 +2,111 @@ AboutDialog + About LMMS Informazioni su LMMS - Version %1 (%2/%3, Qt %4, %5) - Versione %1 (%2/%3, Qt %4, %5) - - - About - Informazioni su - - - LMMS - easy music production for everyone - LMMS - Produzione musicale semplice per tutti - - - Authors - Autori - - - Translation - Traduzione - - - 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! - Roberto Giaconia <derobyj@gmail.com> - -Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, sei il benvenuto! - - - License - Licenza - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + Versione %1 (%2/%3, Qt %4, %5). + + + + About + Informazioni su + + + + LMMS - easy music production for everyone. + LMMS - produzione musicale facile per tutti. + + + + Copyright © %1. + Copyright © %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> + + + + Authors + Autori + + + Involved Coinvolti + Contributors ordered by number of commits: Hanno collaborato (ordinati per numero di contributi): - Copyright © %1 - Copyright © %1 + + Translation + Traduzione - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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! + La lingua corrente è tradotta dall' inglese (nativo).Se sei interessato a tradurre LMMS o desideri migliorare la traduzione esistente, sei il benvenuto! E' sufficiente contattare il manutentore: Roberto Giaconia <derobyj@gmail.com> + + + + License + Licenza AmplifierControlDialog + VOL VOL + Volume: Volume: + PAN - BIL + PAN + Panning: - Bilanciamento: + Panoramica: + LEFT SX + Left gain: Guadagno a sinistra: + RIGHT DX + Right gain: Guadagno a destra: @@ -96,18 +114,22 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s AmplifierControls + Volume Volume + Panning - Bilanciamento + Panoramica + Left gain Guadagno a sinistra + Right gain Guadagno a destra @@ -115,10 +137,12 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s AudioAlsaSetupWidget + DEVICE PERIFERICA + CHANNELS CANALI @@ -126,533 +150,530 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s AudioFileProcessorView - Open other sample - Apri un altro campione - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Clicca qui per aprire un altro file audio. Apparirà una finestra di dialogo dove sarà possibile scegliere il file. Impostazioni come la modalità ripetizione, amplificazione e così via non vengono reimpostate, pertanto potrebbe non suonare come il file originale. + + Open sample + Apri campione + Reverse sample - Inverti il campione - - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Attivando questo pulsante, l'intero campione viene invertito. Ciò è utile per effetti particolari, ad es. un crash invertito. - - - Amplify: - Amplificazione: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Questa manopola regola l'amplificaione. Con un valore pari a 100% il campione non viene modificato, altrimenti verrà amplificato della percentuale specificata (il file originale non viene modificato!) - - - Startpoint: - Punto di inizio: - - - Endpoint: - Punto di fine: - - - Continue sample playback across notes - Continua la ripetizione del campione tra le note - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Attivando questa opzione, il campione audio viene riprodotto tra note differenti: se cambi l'altezza, o la nota finisce prima del punto di fine del campione, allora la nota seguente riprodurrà il campione da dove si era fermata la precedente. Se invece si vuol far ripartire il campione dal punto d'inizio, bisogna inserire una nota molto grave (< 20 Hz) + Inverti campione + Disable loop - Disabilità ripetizione - - - This button disables looping. The sample plays only once from start to end. - Questo pulsante disabilità la ripetizione. Il suono viene eseguito solo una volta dall'inizio alla fine. + Disabilità ripetizione ciclica + Enable loop - Abilita ripetizione + Abilita ripetizione ciclica - This button enables forwards-looping. The sample loops between the end point and the loop point. - Questo pulsante abilità la ripetizione diretta. Il suono viene ripetuto indefinitamente dal loop point al punto di fine. + + Enable ping-pong loop + Abilita ripetizione ciclica ping-pong - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Questo pulsante abilita la ripetizione ing-pong. Il suono viene eseguito avanti e indietro tra il punto di fine e il loop point. + + Continue sample playback across notes + Continua riproduzione campione attraverso le note - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Con questa manopola puoi impostare il punto da cui AudioFileProcessor inizia a riprodurre il suono. + + Amplify: + Amplifica: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Con questa manopola puoi impostare il punti in cui AudioFileProcessor finisce di riprodurre il suono. + + Start point: + Punto iniziale: + + End point: + Punto finale: + + + Loopback point: - Punto LoopBack: - - - With this knob you can set the point where the loop starts. - Con questa modalità puoi impostare il punto dove la ripetizione comincia: la parte del suono tra il LoopBack e il punto di fine è quella che verà ripetuta. + Punto di ripresa: AudioFileProcessorWaveView + Sample length: - Lunghezza del campione: + Lunghezza campione: AudioJack + JACK client restarted - Il client JACK è ripartito + 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 kickato da JACK per qualche motivo. Quindi il collegamento JACK di LMMS è ripartito. Dovrai rifare le connessioni. + 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 - Il server JACK è 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. - Il server JACK sembra essere stato spento e non sono partite nuove istanze. Quindi LMMS non è in grado di procedere. Salva il progetto attivo e fai ripartire JACK ed 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 DEL CLIENT + + Client name + Nome Client - CHANNELS - CANALI + + Channels + Canali - AudioOss::setupWidget + AudioOss - DEVICE - PERIFERICA + + Device + Dispositivo - CHANNELS - CANALI + + Channels + Canali AudioPortAudio::setupWidget - BACKEND - USCITA POSTERIORE + + Backend + Backend - DEVICE - PERIFERICA + + Device + Dispositivo - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - PERIFERICA + + Device + Dispositivo - CHANNELS - CANALI + + Channels + Canali AudioSdl::setupWidget - DEVICE - PERIFERICA + + Device + Dispositivo - AudioSndio::setupWidget + AudioSndio - DEVICE - PERIFERICA + + Device + Dispositivo - CHANNELS - CANALI + + Channels + Canali AudioSoundIo::setupWidget - BACKEND - INTERFACCIA + + Backend + Backend - DEVICE - PERIFERICA + + 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) - Edit song-global automation - Modifica l'automazione globale della traccia + + &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 a un controller + Connesso al controller + Edit connection... Modifica connessione... + Remove connection Rimuovi connessione + Connect to controller... - Connetti a un controller... - - - Remove song-global automation - Rimuovi l'automazione globale della traccia - - - Remove all linked controls - Rimuovi tutti i controlli collegati + Connetti al controller... AutomationEditor - Please open an automation pattern with the context menu of a control! - È necessario aprire un pattern di automazione con il menu contestuale di un controllo! + + Edit Value + - Values copied - Valori copiati + + New outValue + - All selected values were copied to the clipboard. - Tutti i valori sono stati copiati nella clipboard. + + 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! AutomationEditorWindow - Play/pause current pattern (Space) - Riproduci/metti in pausa il beat/bassline selezionato (Spazio) + + Play/pause current clip (Space) + Riproduce/sospende lo schema corrente (Spazio) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Cliccando qui si riproduce il pattern selezionato. Questo è utile mentre lo si modifica. Il pattern viene automaticamente ripetuto quando finisce. + + Stop playing of current clip (Space) + Arresta la riproduzione dello schema corrente (Spazio) - Stop playing of current pattern (Space) - Ferma il beat/bassline selezionato (Spazio) - - - Click here if you want to stop playing of the current pattern. - Cliccando qui si ferma la riproduzione del pattern attivo. + + Edit actions + Modifica attività + Draw mode (Shift+D) Modalità disegno (Shift+D) + Erase mode (Shift+E) - Modalità cancella (Shift+E) + Modalità cancellazione (Shift+E) + + Draw outValues mode (Shift+C) + + + + Flip vertically - Contrario + Capovolgi verticalmente + Flip horizontally - Retrogrado + Capovolgi orizzontalmente - Click here and the pattern will be inverted.The points are flipped in the y direction. - Clicca per mettere riposizionare i punti al contrario verticalmente. - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Clicca per riposizionare i punti come se venissero letti da destra a sinistra. - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Cliccando qui si attiva la modalità disegno. In questa modalità è possibile aggiungere e spostare singoli valori. Questa è la modalità predefinita, che viene usata la maggior parte del tempo. Questa modalità si attiva anche premendo la combinazione di tasti 'Shift+D'. - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Cliccando qui si attiva la modalità cancellazione. In questa modalità è possibile cancellare singoli valori. Questa modalità si attiva anche premendo la combinazione di tasti 'Shift+E'. + + Interpolation controls + Controlli interpolazione + Discrete progression - Progressione discreta + Progressione discontinua + Linear progression Progressione lineare + Cubic Hermite progression - Progressione a cubica di Hermite + Progressione cubica di Hermite + Tension value for spline - Valore di tensione delle curve - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Una tensione alta garantisce una curva più morbida, ma potrebbe tralasciare alcuni valori. Abbassando la tensione, invece, la curva si fletterà per sostare per più tempo sui valori indicati dai punti. - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Clicca qui per scegliere il metodo di progressione discreta per questo pattern di automazione. Il valore della variabile connessa rimarrà costante tra i punti disegnati, cambierà immediatamente non appena raggiunto ogni punto. - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Clicca qui per scegliere il metodo di progressione lineare per questo pattern di automazione. Il valore della variabile connessa cambierà in modo costante nel tempo tra i punti disegnati per arrivare al valore di ogni punto senza cambiamenti bruschi. - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Clicca qui per scegliere il metodo di progressione a cubica di Hermite per questo pattern di automazione. Il valore della variabile connessa cambierà seguendo una curva morbida. - - - Cut selected values (%1+X) - Taglia i valori selezionati (%1+X) - - - Copy selected values (%1+C) - Copia i valori selezionati (%1+C) - - - Paste values from clipboard (%1+V) - Incolla i valori dagli appunti (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Cliccando qui i valori selezionati vengono spostati negli appunti. È possibile incollarli ovunque, in qualsiasi pattern, cliccando il pulsante Incolla. - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Cliccando qui i valori selezionati vengono copiati negli appunti. È possibile incollarli ovunque, in qualsiasi pattern, cliccando il pulsante Incolla. - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Cliccando qui i valori negli appunti vengono incollati alla prima battuta visibile. + Valore tensione delle curve + Tension: Tensione: - Automation Editor - no pattern - Editor dell'automazione - nessun pattern - - - Automation Editor - %1 - Editor dell'automazione - %1 - - - Edit actions - Modalità di modifica - - - Interpolation controls - Modalità Interpolazione - - - Timeline controls - Controlla griglia - - + Zoom controls - Opzioni di zoom + Opzioni ingrandimento + + Horizontal zooming + Ingrandimento orizzontale + + + + Vertical zooming + Ingrandimento verticale + + + Quantization controls - Controlli di quantizzazione - - - Model is already connected to this pattern. - Il controllo è già connesso a questo pattern. + Controlli quantizzazione + Quantization Quantizzazione - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Quantizzazione. Imposta la massima precisione dei punti di Automazione. Controlla anche la lunghezza, cancellando quindi i punti che sono entro tale lunghezza. Puoi comunque ignorare questa funzione premendo <Ctrl>. + + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> Trascina un controllo tenendo premuto <%1> - AutomationPatternView + AutomationClipView + Open in Automation editor - Apri nell'editor dell'Automazione + Apri nell'editor Automazione + Clear - Pulisci + 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" - Set/clear record - Accendi/spegni registrazione - - - Flip Vertically (Visible) - Contrario - - - Flip Horizontally (Visible) - Retrogrado - - - Model is already connected to this pattern. - Il controllo è già connesso a questo pattern. + + Model is already connected to this clip. + Modello già collegato a questo schema. AutomationTrack + Automation track - Traccia di automazione + Traccia automazione - BBEditor + PatternEditor + Beat+Bassline Editor - Beat+Bassline Editor + Editor Beat+Bassline + Play/pause current beat/bassline (Space) - Riproduci/metti in pausa il beat/bassline selezionato (Spazio) + Riproduce/sospende il beat/bassline corrente (Spazio) + Stop playback of current beat/bassline (Space) - Ferma il beat/bassline attuale (Spazio) + Arresta il beat/bassline corrente (Spazio) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Cliccando qui si riprodurre il beat/bassline selezionato. Il beat/bassline ricomincia automaticamente quando finisce. + + Beat selector + Selettore Beat - Click here to stop playing of current beat/bassline. - Cliccando qui si ferma la riproduzione del beat/bassline attivo. + + Track and step actions + Attività tracce e passaggi + Add beat/bassline Aggiungi beat/bassline - Add automation-track - Aggiungi una traccia di automazione - - - Remove steps - Elimina note - - - Add steps - Aggiungi note - - - Beat selector - Selezione del Beat - - - Track and step actions - Controlli tracce e step - - - Clone Steps - Clona gli step + + Clone beat/bassline clip + + Add sample-track Aggiungi traccia campione - - - BBTCOView - Open in Beat+Bassline-Editor - Apri nell'editor di Beat+Bassline + + 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 - - Change color - Cambia colore - - - Reset color to default - Reimposta il colore a default - - BBTrack + PatternTrack + Beat/Bassline %1 Beat/Bassline %1 + Clone of %1 Clone di %1 @@ -660,26 +681,32 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s BassBoosterControlDialog + FREQ FREQ + Frequency: Frequenza: + GAIN GUAD + Gain: Guadagno: + RATIO RAPP + Ratio: Rapporto: @@ -687,14 +714,17 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s BassBoosterControls + Frequency Frequenza + Gain Guadagno + Ratio Rapporto dinamico @@ -702,107 +732,2348 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s BitcrushControlDialog + IN IN + OUT OUT + + GAIN GUAD - Input Gain: - Guadagno in Input: - - - Input Noise: - Rumore in Input: - - - Output Gain: - Guadagno in Output: - - - CLIP - CLIP - - - Output Clip: - Clip in Output: - - - Rate Enabled - Abilita Frequenza - - - Enable samplerate-crushing - Abilità la riduzione di frequnza di campionamento - - - Depth Enabled - Abilita Risoluzione - - - Enable bitdepth-crushing - Abilità la riduzione di bit di quantizzazione - - - Sample rate: - Frequenza di campionamento: - - - Stereo difference: - Differenza stereo: - - - Levels: - Livelli di quantizzazione: + + 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 - STEREO - + + Sample rate: + Frequenza di campionamento: + + STEREO + STEREO + + + + Stereo difference: + Differenza stereo: + + + QUANT - + QUANT + + + + Levels: + Livelli di quantizzazione: - CaptionMenu + 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 + + + + CarlaAboutW + + + About Carla + Informazioni su Carla + + + + About + Informazioni su + + + + About text here + Informazioni sul testo qui + + + + Extended licensing here + 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 + + 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 + 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) + + + + CarlaHostW + + + MainWindow + MainWindow + + + + Rack + Rack + + + + Patchbay + Patchbay + + + + Logs + Rapporti + + + + Loading... + Caricamento... + + + + 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 + + + + + Zoom + Ingrandimento + + + + &Settings + &Impostazioni + + + &Help &Aiuto - Help (not available) - Aiuto (non disponibile) + + toolBar + Barra 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 + + + + + Show Canvas &Keyboard + + + + + Show Internal + Mostra interno + + + + Show External + Mostra esterno + + + + Show Time Panel + Mostra pannello temporale + + + + Show &Side Panel + Mostra &pannello laterale + + + + &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... + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - Clicca qui per mostrare o nascondere l'interfaccia grafica (GUI) di Carla. + + Settings + Impostazioni + + + + main + principale + + + + canvas + + + + + engine + motore + + + + osc + osc + + + + file-paths + Percorsi dei file + + + + plugin-paths + Percorsi plugin + + + + wine + wine + + + + experimental + Sperimentale + + + + Widget + Widget + + + + + Main + Principale + + + + + Canvas + + + + + + Engine + Motore + + + + File Paths + Percorsi dei file + + + + Plugin Paths + Percorsi plugins + + + + Wine + Wine + + + + + Experimental + Sperimentale + + + + <b>Main</b> + <b>Principale</b> + + + + Paths + Percorsi + + + + Default project folder: + Cartella progetto predefinita: + + + + Interface + Interfaccia + + + + 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> + + + + + Bezier Lines + Linee di Bezier + + + + Theme: + Tema: + + + + Size: + Grandezza: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 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 + + + + 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 + + + + 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 + + + + 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) + + + + Whenever possible, run the plugins in bridge mode. + Quando possibile, esegui i plugins in modalità bridge. + + + + 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 @@ -810,58 +3081,73 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s ControllerConnectionDialog + Connection Settings Impostazioni connessione + MIDI CONTROLLER CONTROLLER MIDI + Input channel Canale di ingresso + CHANNEL CANALE + Input controller - Controller di input + 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. @@ -869,364 +3155,711 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s 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 connessioni associate a questo controller: non sarà possibile ripristinarle. + Confermi l'eliminazione? Ci sono collegamenti associati a questo controller: non sarà possibile ripristinarli. ControllerView + Controls Controlli - Controllers are able to automate the value of a knob, slider, and other controls. - I controller possono automatizzare il valore di una manopola, di uno slider e di altri controlli. - - + Rename controller Rinomina controller + Enter the new name for this controller - Inserire il nuovo nome di questo controller + Inserire nuovo nome per questo controller + + LFO + LFO + + + &Remove this controller &Rimuovi questo controller + Re&name this controller Ri&nomina questo controller - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: + + Band 1/2 crossover: Punto di separazione 1/2: - Band 2/3 Crossover: + + Band 2/3 crossover: Punto di separazione 2/3: - Band 3/4 Crossover: + + Band 3/4 crossover: Punto di separazione 3/4: - Band 1 Gain: + + Band 1 gain + Guadagno banda 1 + + + + Band 1 gain: Guadagno banda 1: - Band 2 Gain: + + Band 2 gain + Guadagno banda 2 + + + + Band 2 gain: Guadagno banda 2: - Band 3 Gain: + + Band 3 gain + Guadagno banda 3 + + + + Band 3 gain: Guadagno banda 3: - Band 4 Gain: + + Band 4 gain + Guadagno banda 4 + + + + Band 4 gain: Guadagno banda 4: - Band 1 Mute - Muto Banda 1 + + Band 1 mute + Muto banda 1 - Mute Band 1 - Muto Banda 1 + + Mute band 1 + Muto banda 1 - Band 2 Mute - Muto Banda 2 + + Band 2 mute + Muto banda 2 - Mute Band 2 - Muto Banda 2 + + Mute band 2 + Muto banda 2 - Band 3 Mute - Muto Banda 3 + + Band 3 mute + Muto banda 3 - Mute Band 3 - Muto Banda 3 + + Mute band 3 + Muto banda 3 - Band 4 Mute - Muto Banda 4 + + Band 4 mute + Muto banda 4 - Mute Band 4 - Muto Banda 4 + + Mute band 4 + Muto banda 4 DelayControls - Delay Samples - Campioni di Delay + + Delay samples + Campioni di delay + Feedback Feedback - Lfo Frequency - Frequenza Lfo + + LFO frequency + Frequenza LFO - Lfo Amount - Ampiezza Lfo + + LFO amount + Ampiezza LFO + Output gain - Guadagno in output + Guadagno in uscita DelayControlsDialog - Lfo Amt - Quantità Lfo + + DELAY + TEMPO - Delay Time + + Delay time Tempo di ritardo - Feedback Amount - Quantità di Feedback - - - Lfo - Lfo - - - Out Gain - Guadagno in output - - - Gain - Guadagno - - - DELAY - DELAY - - + FDBK FDBK - RATE - RATE + + 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 + Carla Control - Connetti + + + + Remote setup + Configurazione remota + + + + UDP Port: + Porta UDP: + + + + Remote host: + Host remoto: + + + + 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 + Imposta valore + + + + TextLabel + TextLabel + + + + Scale Points + Punti di scala + + + + DriverSettingsW + + + Driver Settings + Impostazioni driver + + + + Device: + Dispositivo: + + + + Buffer size: + Dimensione buffer: + + + + Sample rate: + Frequenza di campionamento: + + + + Triple buffer + Buffer triplo + + + + Show Driver Control Panel + Mostra pannello di controllo driver + + + + Restart the engine to load the new settings + Riavvia il motore per caricare le nuove impostazioni + DualFilterControlDialog - Filter 1 enabled - Abilita filtro 1 - - - Filter 2 enabled - Abilita filtro 2 - - - Click to enable/disable Filter 1 - Clicca qui per abilitare/disabilitare il filtro 1 - - - Click to enable/disable Filter 2 - Clicca qui per abilitare/disabilitare il filtro 2 - - + + 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 - Attiva Filtro 1 + Filtro 1 abilitato + Filter 1 type - Tipo del Filtro 1 + Filtro di tipo 1 - Cutoff 1 frequency - Frequenza di taglio Filtro 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 2 frequency - Frequenza di taglio Filtro 2 + + Cutoff frequency 2 + Frequenza di taglio 2 + Q/Resonance 2 Risonanza Filtro 2 + Gain 2 Guadagno Filtro 2 - LowPass - PassaBasso + + + Low-pass + Passa-basso - HiPass - PassaAlto + + + Hi-pass + Passa-alto - BandPass csg - PassaBanda csg + + + Band-pass csg + Passa-banda csg - BandPass czpg - PassaBanda czpg + + + Band-pass czpg + Passa-banda czpg + + Notch Notch - Allpass - Passatutto + + + All-pass + Passa-tutto + + Moog Moog - 2x LowPass - PassaBasso 2x + + + 2x Low-pass + Passa-basso 2x - RC LowPass 12dB - RC PassaBasso 12dB + + + RC Low-pass 12 dB/oct + Passa-basso RC 12 dB/ott - RC BandPass 12dB - RC PassaBanda 12dB + + + RC Band-pass 12 dB/oct + Passa-banda RC 12 dB/ott - RC HighPass 12dB - RC PassaAlto 12dB + + + RC High-pass 12 dB/oct + Passa-alto RC 12 dB/ott - RC LowPass 24dB - RC PassaBasso 24dB + + + RC Low-pass 24 dB/oct + Passa-basso RC 24 dB/ott - RC BandPass 24dB - RC PassaBanda 24dB + + + RC Band-pass 24 dB/oct + Passa-banda RC 24 dB/ott - RC HighPass 24dB - RC PassaAlto 24dB + + + RC High-pass 24 dB/oct + Passa-alto RC 24 dB/ott - Vocal Formant Filter - Filtro a Formante di Voce + + + Vocal Formant + Formante Vocale + + 2x Moog 2x Moog - SV LowPass - PassaBasso SV + + + SV Low-pass + Passa-basso SV - SV BandPass - PassaBanda SV + + + SV Band-pass + Passa-banda SV - SV HighPass - PassaAlto SV + + + SV High-pass + Passa-alto SV + + SV Notch Notch SV + + Fast Formant Formante veloce + + Tripole Tre poli @@ -1234,41 +3867,55 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s Editor + + Transport controls + Controlli trasporto + + + Play (Space) Play (Spazio) + Stop (Space) Fermo (Spazio) + Record Registra + Record while playing Registra in play - Transport controls - Controlli trasporto + + Toggle Step Recording + Attiva/disattiva registrazione a passi Effect + Effect enabled Effetto attivo + Wet/Dry mix Bilanciamento Wet/Dry + Gate Gate + Decay Decadimento @@ -1276,6 +3923,7 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s EffectChain + Effects enabled Effetti abilitati @@ -1283,10 +3931,12 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s EffectRackView + EFFECTS CHAIN CATENA DI EFFETTI + Add effect Aggiungi effetto @@ -1294,22 +3944,28 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s EffectSelectDialog + Add effect Aggiungi effetto + + Name Nome + Type Tipo + Description Descrizione + Author Autore @@ -1317,90 +3973,57 @@ Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, s EffectView - Toggles the effect on or off. - Abilita o disabilita l'effetto. - - + On/Off On/Off + W/D W/D + Wet Level: Livello del segnale modificato: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - La manopola Wet/Dry imposta il rapporto tra il segnale in ingresso e la quantità di effetto udibile in uscita. - - + DECAY DECAY + Time: Tempo: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - La manopola Decadimento controlla quanto silenzio deve esserci prima che il plugin si fermi. Valori più piccoli riducono il carico del processore ma rischiano di troncare la parte finale degli effetti di delay. - - + GATE GATE + Gate: Gate: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - La manopola Gate controlla il livello del segnale che è considerato 'silenzio' per decidere quando smettere di processare i segnali. - - + Controls Controlli - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - I plugin di effetti funzionano come una catena di effetti sottoposti al segnale dall'alto verso il basso. - -L'interruttore On/Off permette di saltare un certo plugin in qualsiasi momento. - -La manopola Wet/Dry controlla il bilanciamento tra il segnale in ingresso e quello processato che viene emesso dall'effetto. L'ingresso di ogni stadio è costituito dall'uscita dello stadio precedente, così il segnale 'dry' degli effetti sottostanti contiene tutti i precedenti effetti. - -La manopola Decadimento controlla il tempo per cui il segnale viene processato dopo che le note sono state rilasciate. L'effetto smette di processare il segnale quando questo scende sotto una certa soglia per un certo periodo ti tempo. La manopola imposta questo periodo di tempo. Tempi maggiori richiedono una maggiore potenza del processore, quindi il tempo dovrebbe rimanere basso per la maggior parte degli effetti. È necessario aumentarlo per effetti che producono lunghi periodi di silenzio, ad es. i delay. - -La manopola Gate regola la soglia sotto la quale l'effetto smette di processare il segnale. Il conteggio del tempo di silenzio necessario inizia non appena il sengale processato scende sotto la soglia specificata. - -Il pulsante Controlli apre una finestra per modificare i parametri dell'effetto. - -Con il click destro si apre un menu conestuale che permette di cambiare l'ordine degli effetti o di eliminarli. - - + Move &up Sposta verso l'&alto + Move &down Sposta verso il &basso + &Remove this plugin &Elimina questo plugin @@ -1408,408 +4031,409 @@ Con il click destro si apre un menu conestuale che permette di cambiare l'o EnvelopeAndLfoParameters - Predelay - Ritardo iniziale + + Env pre-delay + Pre-ritardo inv - Attack - Attacco + + Env attack + Attacco inv - Hold - Mantenimento + + Env hold + Mantenimento inv - Decay - Decadimento + + Env decay + Decadimento inv - Sustain - Sostegno + + Env sustain + Sostegno inv - Release - Rilascio + + Env release + Rilascio inv - Modulation - Modulazione + + Env mod amount + Quantità mod inv - LFO Predelay - Ritardo iniziale dell'LFO + + LFO pre-delay + Ritardo iniziale LFO - LFO Attack - Attacco dell'LFO + + LFO attack + Attacco LFO - LFO speed - Velocità dell'LFO + + LFO frequency + Frequenza LFO - LFO Modulation - Modulazione dell'LFO + + LFO mod amount + Quantità mod LFO - LFO Wave Shape - Forma d'onda dell'LFO + + LFO wave shape + Forma d'onda LFO - Freq x 100 - Freq x 100 + + LFO frequency x 100 + Frequenza LFO x 100 - Modulate Env-Amount - Modula la quantità di Env + + Modulate env amount + Modula quantità inv EnvelopeAndLfoView + + DEL RIT - Predelay: + + + Pre-delay: Ritardo iniziale: - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Questa manopola imposta il ritardo iniziale dell'envelope selezionato. Più grande è questo valore più tempo passerà prima che l'envelope effettivo inizi. - - + + ATT ATT + + Attack: Attacco: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Questa manopola imposta il tempo di attacco dell'envelope selezionato. Più grande è questo valore più tempo passa prima di raggiungere il livello di attacco. Scegliere un valore contenuto per strumenti come pianoforti e un valore grande per gli archi. - - + HOLD MANT + Hold: Mantenimento: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Questa manopola imposta il tempo di mantenimento dell'envelope selezionato. Più grande è questo valore più a lungo l'envelope manterrà il livello di attacco prima di cominciare a scendere verso il livello di sostegno. - - + DEC DEC + Decay: Decadimento: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Questa manopola imposta il tempo di decdimento dell'envelope selezionato. Più grande è questo valore più lentamente l'envelope decadrà dal livello di attacco a quello di sustain. Scegliere un valore piccolo per strumenti come i pianoforti. - - + SUST SOST + Sustain: Sostegno: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Questa manopola imposta il livello di sostegno dell'envelope selezionato. Più grande è questo valore più sarà alto il livello che l'envelope manterrà prima di scendere a zero. - - + REL RIL + Release: Rilascio: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Questa manopola imposta il tempo di rilascio dell'anvelope selezionato. Più grande è questo valore più tempo l'envelope impiegherà per scendere dal livello di sustain a zero. Scegliere un valore grande per strumenti dal suono morbido, come gli archi. - - + + AMT Q.TÀ + + Modulation amount: Quantità di modulazione: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Questa manopola imposta la quantità di modulazione dell'envelope selezionato. Più grande è questo valore, più la grandezza corrispondente (ad es. il volume o la frequenza di taglio) sarà influenzata da questo envelope. - - - LFO predelay: - Ritardo iniziale dell'LFO: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Questa manopola imposta il ritardo iniziale dell'LFO selezionato. Più grande è questo valore più tempo passerà prima che l'LFO inizi a oscillare. - - - LFO- attack: - Attacco dell'LFO: - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Questa manopola imposta il tempo di attaco dell'LFO selezionato. Più grande è questo valore più tempo l'LFO impiegherà per raggiungere la massima ampiezza. - - + SPD VEL - LFO speed: - Velocità dell'LFO: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Questa manopola imposta la velocità dell'LFO selezionato. Più grande è questo valore più velocemente l'LFO oscillerà e più veloce sarà l'effetto. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Questa manopola imposta la quantità di modulazione dell'LFO selezionato. Più grande è questo valore più la grandezza selezionata (ad es. il volume o la frequenza di taglio) sarà influenzata da questo LFO. - - - Click here for a sine-wave. - Cliccando qui si ha un'onda sinusoidale. - - - Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. - - - Click here for a saw-wave for current. - Cliccando qui si ha un'onda a dente di sega. - - - Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Cliccando qui è possibile definire una forma d'onda personalizzata. Successivamente è possibile trascinare un file di campione nel grafico dell'LFO. + + Frequency: + Frequenza: + FREQ x 100 FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Cliccando qui la frequenza di questo LFO viene moltiplicata per 100. + + Multiply LFO frequency by 100 + moltiplica frequenza dell'LFO per 100 - multiply LFO-frequency by 100 - moltiplica la frequenza dell'LFO per 100 + + MODULATE ENV AMOUNT + MODULA QUANTITA' INVILUPPO - MODULATE ENV-AMOUNT - MODULA LA QUANTITA' DI ENVELOPE - - - Click here to make the envelope-amount controlled by this LFO. - Cliccando qui questo LFO controlla la quantità di envelope. - - - control envelope-amount by this LFO - controlla la quantità di envelope con questo LFO + + Control envelope amount by this LFO + controlla la quantità di inviluppo con questo LFO + ms/LFO: ms/LFO: + Hint Suggerimento - Drag a sample from somewhere and drop it in this window. - È possibile trascinare un campione in questa finestra. - - - Click here for random wave. - Clicca qui per un'onda randomica. + + 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 + + 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 + + High-shelf gain Guadagno alte frequenze + HP res Ris Passa Alto - Low Shelf res + + 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 + + High-shelf res Ris alte frequenze + LP res Ris Passa Basso + HP freq Freq Passa Alto - Low Shelf freq + + 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 + + High-shelf freq Freq alte frequenze + LP freq Freq Passa Basso + HP active Attiva Passa Alto - Low shelf active + + 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 + + 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 + + Low-pass type Tipo di passa basso - high pass type + + High-pass type Tipo di passa alto + Analyse IN Analizza Input + Analyse OUT Analizza Output @@ -1817,85 +4441,108 @@ Con il click destro si apre un menu conestuale che permette di cambiare l'o EqControlsDialog + HP PA - Low Shelf - Bassi + + Low-shelf + Basse frequenze (Low-shelf) + Peak 1 Picco 1 + Peak 2 Picco 2 + Peak 3 Picco 3 + Peak 4 Picco 4 - High Shelf - Acuti + + High-shelf + Alte frequenze (High-shelf) + LP PB - In Gain + + Input gain Guadagno in input + + + Gain Guadagno - Out Gain + + Output gain Guadagno in output + Bandwidth: Larghezza di banda: + + Octave + Ottave + + + Resonance : Risonanza: + Frequency: Frequenza: - lp grp - lp grp + + LP group + Gruppo PB - hp grp - hp grp - - - Octave - Ottave + + HP group + Gruppo PA EqHandle + Reso: Risonanza: + BW: Largh: + + Freq: Freq: @@ -1903,254 +4550,272 @@ Con il click destro si apre un menu conestuale che permette di cambiare l'o ExportProjectDialog + Export project Esporta il progetto - Output - Codifica - - - File format: - Formato file: - - - Samplerate: - Frequenza di campionamento: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Bitrate: - - - 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 - - - Depth: - Risoluzione Bit: - - - 16 Bit Integer - Interi 16 Bit - - - 32 Bit Float - Virgola mobile 32 Bit - - - Quality settings - Impostazioni qualità - - - Interpolation: - Interpolazione: - - - Zero Order Hold - Zero Order Hold - - - Sinc Fastest - Più veloce - - - Sinc Medium (recommended) - Sinc Medium (suggerito) - - - Sinc Best (very slow!) - Sinc Best (molto lento!) - - - Oversampling (use with care!): - Oversampling (usare con cura!): - - - 1x (None) - 1x (Nessuna) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Inizia - - - Cancel - Annulla - - - Export as loop (remove end silence) - Esporta come loop (rimuove il silenzio finale) + + Export as loop (remove extra bar) + Esporta come loop (rimuove la battuta extra) + Export between loop markers Esporta solo tra i punti di loop + + Render Looped Section: + Rendering sezione ciclica: + + + + time(s) + + + + + File format settings + Impostazioni formato file + + + + File format: + Formato file: + + + + Sampling rate: + Frequenza di campionamento: + + + + 44100 Hz + 44100 Hz + + + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Risoluzione Bit: + + + + 16 Bit integer + Interi 16 Bit + + + + 24 Bit integer + Interi 24 Bit + + + + 32 Bit float + Virgola mobile 32 Bit + + + + Stereo mode: + Modalità Stereofonia: + + + + Mono + Monofonico + + + + Stereo + Stereofonico + + + + Joint stereo + Stereofonia compressa (Joint stereo) + + + + Compression level: + Livello compressione: + + + + Bitrate: + Bitrate: + + + + 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 + Usa bitrate variabile + + + + Quality settings + Impostazioni qualità + + + + Interpolation: + Interpolazione: + + + + Zero order hold + Basilare (Zero-order hold) + + + + Sinc worst (fastest) + Sinc peggiore (veloce) + + + + Sinc medium (recommended) + Sinc medio (suggerito) + + + + Sinc best (slowest) + 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 - Export project to %1 - Esporta il progetto in %1 - - - 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% - - + 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! - 24 Bit Integer - Interi 24 Bit + + Export project to %1 + Esporta il progetto in %1 - Use variable bitrate - Usa bitrate variabile + + ( Fastest - biggest ) + ( Più veloce - più grande ) - Stereo mode: - + + ( Slowest - smallest ) + ( Più lento - più piccolo ) - Stereo - + + Error + Errore - Joint Stereo - + + 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. - Mono - - - - Compression level: - - - - (fastest) - - - - (default) - - - - (smallest) - - - - - Expressive - - Selected graph - Grafico selezionato - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - + + 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: @@ -2158,80 +4823,133 @@ Si prega di controllare i permessi di scrittura sul file e la cartella che lo co 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 in new instrument-track/B+B Editor - Usa in una nuova traccia nel B+B Editor + + 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... - --- Factory files --- - --- File di fabbrica --- - - - Open in new instrument-track/Song Editor - Usa in una nuova traccia nel Song-Editor - - + Error Errore - does not appear to be a valid - non sembra essere un file + + %1 does not appear to be a valid %2 file + %1 non sembra essere un file %2 valido - file - valido + + --- Factory files --- + --- File di fabbrica --- FlangerControls - Delay Samples - Campioni di Delay + + Delay samples + Campioni di delay - Lfo Frequency - Frequenza Lfo + + LFO frequency + Frequenza LFO + Seconds Secondi + + Stereo phase + + + + Regen Regen + Noise Rumore + Invert Inverti @@ -2239,145 +4957,516 @@ Si prega di controllare i permessi di scrittura sul file e la cartella che lo co FlangerControlsDialog - Delay Time: - Tempo di Ritardo: - - - Feedback Amount: - Quantità di Feedback: - - - White Noise Amount: - Quantità di Rumore Bianco: - - + DELAY - DELAY + RIT. + + Delay time: + Tempo di ritardo: + + + RATE - 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 - Period: - + + 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 - FxLine + 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 + + + + MixerLine + + Channel send amount Quantità di segnale inviata dal canale - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Il canale FX riceve input da uno o più tracce strumentali. -Il segnale così ricevuto può essere girato ad altri canali FX. LMMS eviterà che si creino cicli infiniti non permettendo la creazione di connessioni pericolose in tal senso. - -Per inviare il suono di un canale ad un altro, seleziona il canale FX e premi sul pulsante "send" su un altro canale a cui vuoi inviare segnale. La manopola sotto il pulsante send controlla il livello di segnale che viene ricevuto dal canale. - -Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tasto destro su un canale FX. - - + Move &left Sposta a &sinistra + Move &right Sposta a $destra + Rename &channel Rinomina &canale + R&emove channel R&imuovi canale + Remove &unused channels - Rimuovi i canali in&utilizzati + Rimuovi canali in&utilizzati + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + - FxMixer + MixerLineLcdSpinBox - Master - Master + + Assign to: + Assegna a: - FX %1 + + New mixer Channel + Nuovo canale FX + + + + Mixer + + + Master + Principale + + + + + + Channel %1 FX %1 + Volume Volume + Mute - Muto + Silenziato + Solo Solo - FxMixerView + MixerView - FX-Mixer + + Mixer Mixer FX - FX Fader %1 + + Fader %1 Volume FX %1 + Mute - Muto + Silenziato - Mute this FX channel + + Mute this mixer channel Silenzia questo canale FX + Solo Solo - Solo FX channel - Ascolta questo canale da solo + + Solo mixer channel + Canale solo FX - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 Quantità da mandare dal canale %1 al canale %2 @@ -2385,14 +5474,17 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas GigInstrument + Bank Banco + Patch Patch + Gain Guadagno @@ -2400,740 +5492,875 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas GigInstrumentView - Open other GIG file - Apri un altro file GIG - - - Click here to open another GIG file - Clicca per aprire un nuovo file GIG - - - Choose the patch - Seleziona il patch - - - Click here to change which patch of the GIG file to use - Clicca per scegliere quale patch del file GIG usare - - - Change which instrument of the GIG file is being played - Cambia lo strumento del file GIG da suonare - - - Which GIG file is currently being used - Strumento del file GIG attualmente in uso - - - Which patch of the GIG file is currently being used - Patch del file GIG attualmente in uso - - - Gain - Guadagno - - - Factor to multiply samples by - Moltiplica i campioni per questo fattore - - + + Open GIG file Apri file GIG + + Choose patch + Scegli patch + + + + Gain: + Guadagno: + + + GIG Files (*.gig) - File GIG (*.gig) + Files GIG (*.gig) GuiApplication + Working directory - Directory di lavoro + Cartella di lavoro + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - La directory di lavoro di LMMS %1 non esiste. La creo adesso? Questa directory può essere cambiata in un secondo momento dal menu Modifica -> Impostazioni. + 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 + Caricamento song editor + Preparing mixer - Caricamento Mixer + Caricamento mixer + Preparing controller rack - Caricamento rack di Controller + Caricamento rack controller + Preparing project notes - Caricamento note del progetto + Caricamento note progetto + Preparing beat/bassline editor - Caricamento beat e bassline editor + Caricamento editor beat/bassline + Preparing piano roll Caricamento Piano Roll + Preparing automation editor - Caricamento Editor di Automazione + Caricamento editor di automazione InstrumentFunctionArpeggio + Arpeggio Arpeggio + Arpeggio type - Tipo di arpeggio + Tipo arpeggio + Arpeggio range - Ampiezza dell'arpeggio + Estensione arpeggio + + Note repeats + + + + + Cycle steps + Note cicliche + + + + Skip rate + Frequanza salto + + + + Miss rate + Tasso mancante + + + Arpeggio time - Tempo dell'arpeggio + Tempo arpeggio + Arpeggio gate - Gate dell'arpeggio + Ingresso arpeggio + Arpeggio direction - Direzione dell'arpeggio + Direzione arpeggio + Arpeggio mode - Modo dell'arpeggio + Modo arpeggio + Up Su + Down Giù + Up and down Su e giù - Random - Casuale - - - Free - Libero - - - Sort - Ordinato - - - Sync - Sincronizzato - - + Down and up Giù e su - Skip rate - Frequanza di Salto + + Random + Casuale - Miss rate - Frequanza di Sbaglio + + Free + Libero - Cycle steps - Note ruotate + + Sort + Ordinamento + + + + Sync + Sincronizzato InstrumentFunctionArpeggioView + ARPEGGIO ARPEGGIO - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Un arpeggio è un modo di suonare alcuni strumenti (pizzicati in particolare), che rende la musica più viva. Le corde di tali strumenti (ad es. un'arpa) vengono pizzicate come accordi. L'unica differenza è che ciò viene fatto in ordine sequenziale, in modo che le note non vengano suonate allo stesso tempo. Arpeggi tipici sono quelli sulle triadi maggiore o minore, ma ci sono molte altre possibilità tra le quali si può scegliere. - - + RANGE - AMPIEZZA + ESTENSIONE + Arpeggio range: - Ampiezza dell'arpeggio: + Estenzione arpeggio: + octave(s) ottava(e) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Questa manopola imposta l'ampiezza in ottave dell'arpeggio. L'arpeggio selezionato verrà suonato all'interno del numero di ottave impostato. + + REP + - TIME - TEMPO + + Note repeats: + - Arpeggio time: - Tempo dell'arpeggio: - - - ms - ms - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Questa manopola imposta l'ampiezza dell'arpeggio in millisecondi. Il tempo dell'arpeggio specifica per quanto tempo ogni nota dell'arpeggio deve essere eseguita. - - - GATE - GATE - - - Arpeggio gate: - Gate dell'arpeggio: - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Questa manopola imposta il gate dell'arpeggio. Il gate dell'arpeggio specifica la percentuale di ogni nota che deve essere eseguita. In questo modo si possono creare arpeggi particolari, con le note staccate. - - - Chord: - Tipo di arpeggio: - - - Direction: - Direzione: - - - Mode: - Modo: - - - SKIP - SALTA - - - Skip rate: - Frequanza di Salto: - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - Con la funzione di salto, l'arpeggiatore metterà in pausa uno step in modo casuale. Alla posizione minima non verrà applicata alcuna variazione. Aumentando il valore, invece, si arriva gradualmente ad una completa casualità dell'effetto. - - - MISS - SBAGLIA - - - Miss rate: - Frequanza di Sbaglio: - - - The miss function will make the arpeggiator miss the intended note. - La funzione di sbaglio farà "sbagliare" l'arpeggiatore, che suonerà un'altra nota rispetto a quella normalmente prevista. + + time(s) + + CYCLE - RUOTA + CICLO + Cycle notes: - Note ruotate: + Note cicliche: + note(s) nota(e) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - Salta n note dell'arpeggio e torna indietro quando supera l'ampiezza. Se il numero di note totali è divisibile per il numero di note saltate, l'arpeggio risulterà più piccolo, eventualmente di una sola nota. + + 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 - Phrygolydian + + Phrygian Frigia + Lydian Lidia + Mixolydian Misolidia + Aeolian Eolia + Locrian Locria - Chords - Accordi - - - Chord type - Tipo di accordo - - - Chord range - Ampiezza dell'accordo - - + 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 - RANGE - AMPIEZZA - - - Chord range: - Ampiezza degli accordi: - - - octave(s) - ottava(e) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Questa manopola imposta l'ampiezza degli accordi in ottave. L'accordo selezionato verrà eseguito all'interno del numero di ottave impostato. - - + STACKING ACCORDI + Chord: Tipo di accordo: + + + RANGE + AMPIEZZA + + + + Chord range: + Ampiezza degli accordi: + + + + octave(s) + ottava(e) + InstrumentMidiIOView + ENABLE MIDI INPUT ABILITA INGRESSO MIDI - CHANNEL - CANALE - - - VELOCITY - VALOCITY - - + ENABLE MIDI OUTPUT ABILITA USCITA MIDI - PROGRAM - PROGRAMMA + + + 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 - NOTE - NOTA - - + CUSTOM BASE VELOCITY VELOCITY BASE PERSONALIZZATA - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - Specifica la normalizzazione della velocity per strumenti MIDI al volume della nota 100% + + 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 @@ -3141,137 +6368,171 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas InstrumentMiscView + MASTER PITCH TRASPORTO - Enables the use of Master Pitch - Abilita l'uso del 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 - LowPass - PassaBasso + + Low-pass + Passa-basso - HiPass - PassaAlto + + Hi-pass + Passa-alto - BandPass csg - PassaBanda csg + + Band-pass csg + Passa-banda csg - BandPass czpg - PassaBanda czpg + + Band-pass czpg + Passa-banda czpg + Notch Notch - Allpass - Passatutto + + All-pass + Passa-tutto + Moog Moog - 2x LowPass - PassaBasso 2x + + 2x Low-pass + Passa-basso 2x - RC LowPass 12dB - RC PassaBasso 12dB + + RC Low-pass 12 dB/oct + Passa-basso RC 12 dB/ott - RC BandPass 12dB - RC PassaBanda 12dB + + RC Band-pass 12 dB/oct + Passa-banda RC 12 dB/ott - RC HighPass 12dB - RC PassaAlto 12dB + + RC High-pass 12 dB/oct + Passa-alto RC 12 dB/ott - RC LowPass 24dB - RC PassaBasso 24dB + + RC Low-pass 24 dB/oct + Passa-basso RC 24 dB/ott - RC BandPass 24dB - RC PassaBanda 24dB + + RC Band-pass 24 dB/oct + Passa-banda RC 24 dB/ott - RC HighPass 24dB - RC PassaAlto 24dB + + RC High-pass 24 dB/oct + Passa-alto RC 24 dB/ott - Vocal Formant Filter - Filtro a Formante di Voce + + Vocal Formant + Formante Vocale + 2x Moog 2x Moog - SV LowPass - PassaBasso SV + + SV Low-pass + Passa-basso SV - SV BandPass - PassaBanda SV + + SV Band-pass + Passa-banda SV - SV HighPass - PassaAlto SV + + SV High-pass + Passa-alto SV + SV Notch Notch SV + Fast Formant Formante veloce + Tripole Tre poli @@ -3279,50 +6540,42 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas InstrumentSoundShapingView + TARGET OBIETTIVO - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Queste schede contengono envelopes. Sono molto importanti per modificare i suoni, senza contare che sono quasi sempre necessarie per la sintesi sottrattiva. Per esempio se si usa un envelope per il volume, si può impostare quando un suono avrà un certo volume. Si potrebbero voler creare archi dal suono morbido, allora il suono deve iniziare e finire in modo molto morbido; ciò si ottiene impostando tempi di attacco e di rilascio ampi. Lo stesso vale per le altre funzioni degli envelope, come il panning, la frequenza di taglio dei filtri e così via. Bisogna semplicemente giocarci un po'! Si possono ottenere suoni veramente interessanti a partire da un'onda a dente di sega usando soltanto qualche envelope...! - - + FILTER FILTRO - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Qui è possibile selezionare il filtro da usare per questa traccia. I filtri sono molto importanti per cambiare le caratteristiche del suono. - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Questa manopola imposta la frequenza di taglio del filtro. La frequenza di taglio specifica la frequenza a cui viene tagliato il segnate di un filtro. Per esempio un filtro passa-basso taglia tutte le frequenze sopra la frequenza di taglio, mentre un filtro passa-alto taglia tutte le frequenza al di sotto della frequenza di taglio e così via... - - - RESO - RISO - - - Resonance: - Risonanza: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Questa manopola imposta il parametro (Q) per la risonanza del filtro selezionato. Il parametro per la risonanza specifica l'ampiezza della campana di frequenze intorno alla frequenza di taglio che devono essere amplificate. - - + FREQ FREQ - cutoff frequency: - Frequenza del cutoff: + + Cutoff frequency: + Frequenza di taglio: + + Hz + Hz + + + + Q/RESO + Q/RISO + + + + Q/Resonance: + Q/Risonanza: + + + Envelopes, LFOs and filters are not supported by the current instrument. Gli inviluppi, gli LFO e i filtri non sono supportati dallo strumento corrente. @@ -3330,222 +6583,352 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas InstrumentTrack + + unnamed_track traccia_senza_nome - Volume - Volume - - - Panning - Panning - - - Pitch - Altezza - - - FX channel - Canale FX - - - Default preset - Impostazioni predefinite - - - With this knob you can set the volume of the opened channel. - Questa manopola imposta il volume del canale. - - + Base note Nota base + + First note + + + + + Last note + Ultima nota + + + + Volume + Volume + + + + Panning + Panning + + + + Pitch + Altezza + + + Pitch range Estenzione dell'altezza - Master Pitch - Trasporto + + Mixer channel + Canale FX + + + + Master pitch + Altezza principale + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + Impostazioni predefinite InstrumentTrackView + Volume Volume + Volume: Volume: + VOL VOL + Panning Panning + Panning: Panning: + PAN PAN + MIDI MIDI + Input Ingresso + Output Uscita - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS IMPOSTAZIONI GENERALI - Instrument volume - Volume dello strumento + + Volume + Volume + Volume: Volume: + VOL VOL + Panning Panning + Panning: Panning: + PAN PAN + Pitch Altezza + Pitch: Altezza: + cents centesimi + PITCH ALTEZZA - FX channel - Canale FX - - - FX - FX - - - Save preset - Salva il preset - - - XML preset file (*.xpf) - File di preset XML (*.xpf) - - + 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 - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Clicca qui per salvare lo strumento corrente come preset. Al prossimo avvio, questo preset sarà visibile nel preset browser ("I miei preset"). - - - Use these controls to view and edit the next/previous track in the song editor. - Usa questi controlli per visualizzare e modificare la prossima traccia o quella precedente nel Song Editor - - + SAVE SALVA + Envelope, filter & LFO - + Inviluppo, filtro e LFO + Chord stacking & arpeggio - + Accordi e arpeggi + Effects - + Effetti - MIDI settings - Impostazioni MIDI + + 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 + + + + 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 + + + + 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 - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: + + + 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 @@ -3553,10 +6936,12 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas LadspaControlDialog + Link Channels Canali abbinati + Channel Canale @@ -3564,28 +6949,46 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas LadspaControlView + Link channels Abbina i canali + Value: Valore: - - Sorry, no help available. - Spiacente, nessun aiuto disponibile. - 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: @@ -3593,18 +6996,26 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas LeftRightNav + + + Previous Precedente + + + Next Successivo + Previous (%1) Precedente (%1) + Next (%1) Successivo (%1) @@ -3612,30 +7023,37 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas 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 @@ -3643,513 +7061,643 @@ Puoi rimuovere e muovere i canali con il menù contestuale, cliccando con il tas LfoControllerDialog + LFO LFO - LFO Controller - Controller dell'LFO - - + BASE BASE - Base amount: - Quantità di base: + + Base: + Base: - todo - da fare + + FREQ + FREQ - SPD - VEL + + LFO frequency: + Frequenza LFO: - LFO-speed: - Velocità dell'LFO: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Questa manopola imposta la velocità dell'LFO selezionato. Più grande è questo valore più velocemente l'LFO oscillerà e più veloce sarà l'effetto. + + AMNT + Q.TÀ + Modulation amount: Quantità di modulazione: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Questa manopola imposta la quantità di modulazione dell'LFO selezionato. Più grande è questo valore più la variabile selezionata (ad es. il volume o la frequenza di taglio) sarà influenzata da questo LFO. - - + PHS FASE + Phase offset: Scostamento della fase: - degrees + + degrees gradi - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Questa manopola regola lo scostamento della fase per l'LFO. Ciò significa spostare il punto dell'oscillazione da cui parte l'oscillatore. Per esempio, con un'onda sinusoidale e uno scostamento della fase di 180 gradi, l'onda inizierà scendendo. Lo stesso vale per un'onda quadra. + + Sine wave + Onda sinusoidale - Click here for a sine-wave. - Cliccando qui si ha un'onda sinusoidale. + + Triangle wave + Onda triangolare - Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. + + Saw wave + Onda a dente di sega - Click here for a saw-wave. - Cliccando qui si ottiene un'onda a dente di sega. + + Square wave + Onda quadra - Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. + + Moog saw wave + Onda Moog - Click here for an exponential wave. - Cliccando qui si ha un'onda esponenziale. + + Exponential wave + Onda esponenziale - Click here for white-noise. - Cliccando qui si ottiene rumore bianco. + + White noise + Rumore bianco - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Cliccando qui si usa un'onda definita dall'utente. -Fare doppio click per scegliere il file dell'onda. + Forma personalizzata. +Fai doppio click per scegliere un file. - Click here for a moog saw-wave. - Clicca per usare un'onda Moog a banda limitata. + + Mutliply modulation frequency by 1 + Moltiplica la frequenza di modulazione per 1 - AMNT - Q.TÀ + + Mutliply modulation frequency by 100 + Moltiplica la frequenza di modulazione per 100 + + + + Divide modulation frequency by 100 + Dividi la frequenza di modulazione per 100 - LmmsCore + Engine + Generating wavetables - Generazione wavetable + 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 - Accensione dei thread del mixer + Avviamento threads del mixer MainWindow - &New - &Nuovo - - - &Open... - &Apri... - - - &Save - &Salva - - - Save &As... - Salva &Con Nome... - - - Import... - Importa... - - - E&xport... - E&sporta... - - - &Quit - &Esci - - - &Edit - &Modifica - - - Settings - Impostazioni - - - &Tools - S&trumenti - - - &Help - &Aiuto - - - Help - Aiuto - - - What's this? - Cos'è questo? - - - About - Informazioni su - - - Create new project - Crea un nuovo progetto - - - Create new project from template - Crea un nuovo progetto da un modello - - - Open existing project - Apri un progetto esistente - - - Recently opened projects - Progetti aperti di recente - - - Save current project - Salva questo progetto - - - Export current project - Esporta questo progetto - - - Song Editor - Mostra/nascondi il Song-Editor - - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Questo pulsante mostra o nasconde il Song-Editor. Con l'aiuto del Song-Editor è possibile modificare la playlist e specificare quando ogni traccia viene riprodotta. Si possono anche inserire e spostare i campioni (ad es. campioni rap) direttamente nella lista di riproduzione. - - - Beat+Bassline Editor - Beat+Bassline Editor - - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Questo pulsante mostra o nasconde il Beat+Bassline Editor. Il Beat+Bassline Editor serve per creare beats, aprire, aggiungere e togliere canali, tagliare, copiare e incollare pattern beat e pattern bassline. - - - Piano Roll - Mostra/nascondi il Piano-Roll - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Questo pulsante mostra o nasconde il Piano-Roll. Con l'aiuto del Piano-Roll è possibile modificare sequenze melodiche in modo semplice. - - - Automation Editor - Mostra/nascondi l'Editor dell'automazione - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Questo pulsante mostra o nasconde l'editor dell'automazione. Con l'aiuto dell'editor dell'automazione è possibile rendere dinamici alcuni valori in modo semplice. - - - FX Mixer - Mostra/nascondi il mixer degli effetti - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Questo pulsante mostra o nasconde il mixer degli effetti. Il mixer degli effetti è uno strumento molto potente per gestire gli effetti della canzone. È possibile inserire effetti in più canali. - - - Project Notes - Mostra/nascondi le note del progetto - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Questo pulsante mostra o nasconde la finestra delle note del progetto. Qui è possibile scrivere le note per il progetto. - - - Controller Rack - Mostra/nascondi il rack di controller - - - Untitled - Senza_nome - - - LMMS %1 - LMMS %1 - - - 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? - - - 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. - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - Version %1 - Versione %1 - - + 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 - Volumes - Volumi - - - Undo - Annulla - - - Redo - Rifai - - - My Projects - I miei Progetti - - - My Samples - I miei Campioni - - - My Presets - I miei Preset - - - My Home - Directory di Lavoro - - - My Computer - Computer - - - &File - &File - - - &Recently Opened Projects - Progetti &Recenti - - - Save as New &Version - Salva come nuova &Versione - - - E&xport Tracks... - E&sporta Tracce... - - - Online Help - Aiuto Online - - - What's This? - Cos'è questo? - - - Open Project - Apri Progetto - - - Save Project - Salva Progetto - - - 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 recupero. Questo accade se la sessione precedente non è stata ben chiusa o se ce n'è un'altra in esecuzione. Vuoi usare il progetto di recupero? - - - Recover - Recupera - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Recupera il file. Non usare più instanze di LMMS quando effettui il recupero. - - - Discard - Elimina - - - Launch a default session and delete the restored files. This is not reversible. - Fai partire una sessione normale, cancellando il file di recupero in modo irreversibile. - - - Preparing plugin browser - Caricamento browser dei plugin - - - Preparing file browsers - Caricamento browser dei file - - - Root directory - Directory principale - - - Loading background artwork - Caricamento sfondo - - - New from template - Nuovo da modello - - - Save as default template - Salva come progetto default - - - &View - &Visualizza - - - Toggle metronome - Metronomo on/off - - - Show/hide Song-Editor - Mostra/nascondi il Song-Editor - - - Show/hide Beat+Bassline Editor - Mostra/nascondi il Beat+Bassline Editor - - - Show/hide Piano-Roll - Mostra/nascondi il Piano-Roll - - - Show/hide Automation Editor - Mostra/nascondi l'Editor dell'automazione - - - Show/hide FX Mixer - Mostra/nascondi il mixer degli effetti - - - Show/hide project notes - Mostra/nascondi le note del progetto - - - Show/hide controller rack - Mostra/nascondi il rack di controller - - - Recover session. Please save your work! - Sessione di recupero. Salva al più presto! - - - 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? - - - LMMS Project - Progetto LMMS - - - LMMS Project Template - Modello di Progetto LMMS - - - 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. - - - Smooth scroll - Scorrimento morbido - - - Enable note labels in piano roll - Abilita l'etichetta delle note nel piano roll - - - Save project template - Salva come modello di progetto - - - Volume as dBFS - Volume in dBFS - - + 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 @@ -4157,21 +7705,44 @@ Si prega di controllare i permessi di scrittura sul file e la cartella che lo co 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 @@ -4179,18 +7750,43 @@ Si prega di controllare i permessi di scrittura sul file e la cartella che lo co MidiImport + + Setup incomplete Impostazioni incomplete - You do not have 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 di base (Modifica->Impostazioni). Quindi non sarà riprodotto alcun suono dopo aver importato questo file MIDI. Prova a scaricare un soundfont MIDI generico, specifica la sua posizione nelle impostazioni e prova di nuovo. + + 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 @@ -4198,541 +7794,911 @@ Si prega di controllare i permessi di scrittura sul file e la cartella che lo co 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 + + + MIDI Pattern + Schema MIDI + + + + Time Signature: + Indicazione di tempo: + + + + + + 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: + Misure: + + + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 5 + Quinta + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + 8 + + + + 9 + 9 + + + + 10 + 10 + + + + 11 + 11 + + + + 12 + 12 + + + + 13 + 13 + + + + 14 + 14 + + + + 15 + 15 + + + + 16 + 16 + + + + Default Length: + Lunghezza predefinita: + + + + + 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: + Quantizzazione: + + + + &File + &File + + + + &Edit + &Modifica + + + + &Quit + &Esci + + + + &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 - Output MIDI program - Programma MIDI in uscita - - - Receive MIDI-events - Ricevi eventi MIDI - - - Send MIDI-events - Invia eventi MIDI - - + 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 - PERIFERICA + + Device + Dispositivo MonstroInstrument - Osc 1 Volume - Osc 1 Volume + + Osc 1 volume + Volume osc 1 - Osc 1 Panning - Osc 1 Bilanciamento + + Osc 1 panning + Bilanciamento osc 1 - Osc 1 Coarse detune - Osc 1 Intonazione Grezza + + Osc 1 coarse detune + Intonazione al semitono osc 1 - Osc 1 Fine detune left - Osc 1 Intonazione precisa sinistra + + Osc 1 fine detune left + Intonazione precisa osc 1 sinistro - Osc 1 Fine detune right - Osc 1 Intonazione precisa destra + + Osc 1 fine detune right + Intonazione precisa osc 1 destro - Osc 1 Stereo phase offset - Osc 1 Spostamento di fase stereo + + Osc 1 stereo phase offset + Spostamento di fase osc 1 - Osc 1 Pulse width - Osc 1 Profondità impulso + + Osc 1 pulse width + Larghezza impulso osc 1 - Osc 1 Sync send on rise - Osc 1 Manda sync in salita + + Osc 1 sync send on rise + Manda sync alla salita osc 1 - Osc 1 Sync send on fall - Osc 1 Manda sync in discesa + + Osc 1 sync send on fall + Manda sync alla discesa osc 1 - Osc 2 Volume - Osc 2 Volume + + Osc 2 volume + Volume osc 2 - Osc 2 Panning - Osc 2 Bilanciamento + + Osc 2 panning + Bilanciamento osc 2 - Osc 2 Coarse detune - Osc 2 Intonazione Grezza + + Osc 2 coarse detune + Intonazione al semitono osc 2 - Osc 2 Fine detune left - Osc 2 Intonazione precisa sinistra + + Osc 2 fine detune left + Intonazione precisa osc 2 sinistro - Osc 2 Fine detune right - Osc 2 Intonazione precisa destra + + Osc 2 fine detune right + Intonazione precisa osc 2 destro - Osc 2 Stereo phase offset - Osc 2 Spostamento di fase stereo + + Osc 2 stereo phase offset + Spostamento di fase osc 2 - Osc 2 Waveform - Osc 2 Forma d'onda + + Osc 2 waveform + Forma d'onda osc 2 - Osc 2 Sync Hard - Osc 2 Sync pesante + + Osc 2 sync hard + Sync hard osc 2 - Osc 2 Sync Reverse - Osc 2 Sync inverso + + Osc 2 sync reverse + Sync inverso osc 2 - Osc 3 Volume - Osc 3 Volume + + Osc 3 volume + Volume osc 3 - Osc 3 Panning - Osc 3 Bilanciamento + + Osc 3 panning + Bilanciamento osc 3 - Osc 3 Coarse detune - Osc 3 Intonazione Grezza + + 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 - Osc 3 Miscela sub-oscillatori + + Osc 3 sub-oscillator mix + Missaggio sub-oscillatori di Osc 3 - Osc 3 Waveform 1 - Osc 3 Forma d'onda 1 + + Osc 3 waveform 1 + Forma d'onda 1 osc 3 - Osc 3 Waveform 2 - Osc 3 Forma d'onda 2 + + Osc 3 waveform 2 + Forma d'onda 2 osc 3 - Osc 3 Sync Hard - Osc 3 Sync pesante + + Osc 3 sync hard + Sync hard osc 3 - Osc 3 Sync Reverse - Osc 3 Sync inverso + + Osc 3 Sync reverse + Sync inverso osc 3 - LFO 1 Waveform - LFO 1 Forma d'onda + + LFO 1 waveform + Forma d'onda LFO 1 - LFO 1 Attack - LFO 1 Attacco + + LFO 1 attack + Attacco LFO 1 - LFO 1 Rate - LFO 1 Rate + + LFO 1 rate + Periodo LFO 1 - LFO 1 Phase - LFO 1 Fase + + LFO 1 phase + Fase LFO 1 - LFO 2 Waveform - LFO 2 Forma d'onda + + LFO 2 waveform + Forma d'onda LFO 2 - LFO 2 Attack - LFO 2 Attacco + + LFO 2 attack + Attacco LFO 2 - LFO 2 Rate - LFO 2 Rate + + LFO 2 rate + Periodo LFO 2 - LFO 2 Phase - LFO 2 Fase + + LFO 2 phase + Fase LFO 2 - Env 1 Pre-delay - Env 1 Pre-ritardo + + Env 1 pre-delay + Pre-ritardo inv 1 - Env 1 Attack - Env 1 Attacco + + Env 1 attack + Attacco inv 1 - Env 1 Hold - Env 1 Mantenimento + + Env 1 hold + Mantenimento inv 1 - Env 1 Decay - Env 1 Decadimento + + Env 1 decay + Decadimento inv 1 - Env 1 Sustain - Env 1 Sostegno + + Env 1 sustain + Sostegno inv 1 - Env 1 Release - Env 1 Rilascio + + Env 1 release + Rilascio inv 1 - Env 1 Slope - Env 1 Inclinazione + + Env 1 slope + Curvatura inv 1 - Env 2 Pre-delay - Env 2 Pre-ritardo + + Env 2 pre-delay + Pre-ritardo inv 2 - Env 2 Attack - Env 2 Attacco + + Env 2 attack + Attacco inv 2 - Env 2 Hold - Env 2 Mantenimento + + Env 2 hold + Mantenimento inv 2 - Env 2 Decay - Env 2 Decadimento + + Env 2 decay + Decadimento inv 2 - Env 2 Sustain - Env 2 Sostegno + + Env 2 sustain + Sostegno inv 2 - Env 2 Release - Env 2 Rilascio + + Env 2 release + Rilascio inv 2 - Env 2 Slope - Env 2 Inclinazione + + Env 2 slope + Curvatura inv 2 - Osc2-3 modulation - Modulazione Osc2-3 + + Osc 2+3 modulation + Modulazione osc 2+3 + Selected view Seleziona vista - Vol1-Env1 - Vol1-Inv1 + + Osc 1 - Vol env 1 + Osc 1 - Vol inv 1 - Vol1-Env2 - Vol1-Inv2 + + Osc 1 - Vol env 2 + Osc 1 - Vol inv 2 - Vol1-LFO1 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 + Osc 1 - Vol LFO 1 - Vol1-LFO2 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 + Osc 1 - Vol LFO 2 - Vol2-Env1 - Vol2-Inv1 + + Osc 2 - Vol env 1 + Osc 2 - Vol inv 1 - Vol2-Env2 - Vol2-Inv2 + + Osc 2 - Vol env 2 + Osc 2 - Vol inv 2 - Vol2-LFO1 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 + Osc 2 - Vol LFO 1 - Vol2-LFO2 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 + Osc 2 - Vol LFO 2 - Vol3-Env1 - Vol3-Inv1 + + Osc 3 - Vol env 1 + Osc 3 - Vol inv 1 - Vol3-Env2 - Vol3-Inv2 + + Osc 3 - Vol env 2 + Osc 3 - Vol inv 2 - Vol3-LFO1 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 + Osc 3 - Vol LFO 1 - Vol3-LFO2 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 + Osc 3 - Vol LFO 2 - Phs1-Env1 - Fas1-Inv1 + + Osc 1 - Phs env 1 + Osc 1 - Fas inv 1 - Phs1-Env2 - Fas1-Inv2 + + Osc 1 - Phs env 2 + Osc 1 - Fas inv 2 - Phs1-LFO1 - Fas1-LFO1 + + Osc 1 - Phs LFO 1 + Osc 1 - Fas LFO 1 - Phs1-LFO2 - Fas1-LFO2 + + Osc 1 - Phs LFO 2 + Osc 1 - Fas LFO 2 - Phs2-Env1 - Fas2-Inv1 + + Osc 2 - Phs env 1 + Osc 2 - Fas inv 1 - Phs2-Env2 - Fas2-Inv2 + + Osc 2 - Phs env 2 + Osc 2 - Fas inv 2 - Phs2-LFO1 - Fas2-LFO1 + + Osc 2 - Phs LFO 1 + Osc 2 - Fas LFO 1 - Phs2-LFO2 - Fas2-LFO2 + + Osc 2 - Phs LFO 2 + Osc 2 - Fas LFO 2 - Phs3-Env1 - Fas3-Inv1 + + Osc 3 - Phs env 1 + Osc 3 - Fas inv 1 - Phs3-Env2 - Fas3-Inv2 + + Osc 3 - Phs env 2 + Osc 3 - Fas inv 2 - Phs3-LFO1 - Fas3-LFO1 + + Osc 3 - Phs LFO 1 + Osc 3 - Fas LFO 1 - Phs3-LFO2 - Fas3-LFO2 + + Osc 3 - Phs LFO 2 + Osc 3 - Fas LFO 2 - Pit1-Env1 - Alt1-Inv1 + + Osc 1 - Pit env 1 + Osc 1 - Alt inv 1 - Pit1-Env2 - Alt1-Inv2 + + Osc 1 - Pit env 2 + Osc 1 - Alt inv 2 - Pit1-LFO1 - Alt1-LFO1 + + Osc 1 - Pit LFO 1 + Osc 1 - Alt LFO 1 - Pit1-LFO2 - Alt1-LFO2 + + Osc 1 - Pit LFO 2 + Osc 1 - Alt LFO 2 - Pit2-Env1 - Alt2-Inv1 + + Osc 2 - Pit env 1 + Osc 2 - Alt inv 1 - Pit2-Env2 - Alt2-Inv2 + + Osc 2 - Pit env 2 + Osc 2 - Alt inv 2 - Pit2-LFO1 - Alt2-LFO1 + + Osc 2 - Pit LFO 1 + Osc 2 - Alt LFO 1 - Pit2-LFO2 - Alt2-LFO2 + + Osc 2 - Pit LFO 2 + Osc 2 - Alt LFO 2 - Pit3-Env1 - Alt3-Inv1 + + Osc 3 - Pit env 1 + Osc 3 - Alt inv 1 - Pit3-Env2 - Alt3-Inv2 + + Osc 3 - Pit env 2 + Osc 3 - Alt inv 2 - Pit3-LFO1 - Alt3-LFO1 + + Osc 3 - Pit LFO 1 + Osc 3 - Alt LFO 1 - Pit3-LFO2 - Alt3-LFO2 + + Osc 3 - Pit LFO 2 + Osc 3 - Alt LFO 2 - PW1-Env1 - LI1-Inv1 + + Osc 1 - PW env 1 + Osc 1 - LI inv 1 - PW1-Env2 - LI1-Inv2 + + Osc 1 - PW env 2 + Osc 1 - LI inv 2 - PW1-LFO1 - LI1-LFO1 + + Osc 1 - PW LFO 1 + Osc 1 - LI LFO 1 - PW1-LFO2 - LI1-LFO2 + + Osc 1 - PW LFO 2 + Osc 1 - LI LFO 2 - Sub3-Env1 - Sub3-Inv1 + + Osc 3 - Sub env 1 + Osc 3 - Sub inv 1 - Sub3-Env2 - Sub3-Inv2 + + Osc 3 - Sub env 2 + Osc 3 - Sub inv 2 - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 + Osc 3 - Sub LFO 1 - Sub3-LFO2 - Sub3-LFO2 + + 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 @@ -4740,294 +8706,240 @@ Si prega di controllare i permessi di scrittura sul file e la cartella che lo co MonstroView + Operators view Vista operatori - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - La vista operatori contiene tutti gli operatori. Vi sono sia operatori udibili (oscillatori), che silenziosi, o modulatori: LFO e inviluppi. - -Usa il "Cos'è questo?" su tutte le manopole di questa vista per avere informazioni specifiche su di esse. - - + Matrix view Vista Matrice - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - La vista matrice contiene la matrice di modulazione. Qui puoi definire le relazioni di modulazione tra i vari operatori: ogni operatore udibile (gli oscillatori da 1 a 3) ha 3-4 proprietà che possono essere modulate da qualsiasi modulatore. L'utilizzo eccessivo di modulazioni può appesantire la CPU. - -La vista è divisa in obiettivi di modulazione, raggruppati dagli oscillatori. Possono essere modulati il volume, l'altezza, la fase, la larghezza dell'impulso e il rateo del sottooscillatorie. Nota: alcune proprietà sono esclusive di un solo oscillatore. - -Ogni proprietà modulabile ha 4 manopole, una per ogni modulatore. Sono tutti a 0 di default, ossia non vi è modulazione. Il massimo della modulazione si ottiene portando una manopola a 1. I valori negativi invertono l'effetto che avrebbero quelli positivi. - - - Mix Osc2 with Osc3 - Mescola l'Osc2 con l'Osc3 - - - Modulate amplitude of Osc3 with Osc2 - Modula l'amplificazione dell'Osc3 con l'Osc2 - - - Modulate frequency of Osc3 with Osc2 - Modula la frequenza dell'Osc3 con l'Osc2 - - - Modulate phase of Osc3 with Osc2 - Modula la fase dell'Osc3 con l'Osc2 - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - La manopola CRS cambia l'intonazione dell'oscillatore 1 per semitoni. - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - La manopola CRS cambia l'intonazione dell'oscillatore 2 per semitoni. - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - La manopola CRS cambia l'intonazione dell'oscillatore 3 per semitoni. - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL e FTR cambiano l'intonazione precisa dell'oscillatore per i canali sinistro e destro rispettivamente. Possono essere usati per creare un'illusione di spazio. - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - La manopola SPO altera la differenza in fase tra i canali sinistro e destro. Una differenza maggiore crea un'immagine stereo più larga. - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - La manopola PW controlla la profondità dell'impulso, conosciuta anche come duty cycle, dell'oscillatore 1. L'oscillatore 1 è un oscillatore d'onda a impulso digitale, non produce un output con banda limitata, il che vuol dire che è possibile usarlo come un oscillatore udibile ma ciò creerà aliasing. Puoi anche usarlo come fonte silenziosa di un segnale di sincronizzazione, che sincronizza gli altri due oscillatori. - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Manda sync in salita: se abilitato, il segnale di sync viene mandato ogni volta che lo stato dell'oscillatore 1 cambia da basso ad alto, per esempio se l'amplificazione passa da -1 a 1. Sia l'altezza che la fase che i'mpulso possono interessare il tempo dei sync, ma il volume no. I segnali di sync vengono trattati indipendentemente per i canali destro e sinistro. - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Manda sync in discesa: se abilitato, il segnale di sync viene mandato ogni volta che lo stato dell'oscillatore 1 cambia da alto a basso, per esempio se l'amplificazione passa da 1 a -1. Sia l'altezza che la fase che i'mpulso possono interessare il tempo dei sync, ma il volume no. I segnali di sync vengono trattati indipendentemente per i canali destro e sinistro. - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Sync potente: ogni volta che l'oscillatore siceve un segnale di sync dall'Osc1, la sua fase viene resettata alla sua origine. - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Sync di inversione: ogni volta che l'oscillatore riceve un segnale di sync dall'Osc1, l'amplificazione dell'oscillatore viene invertita. - - - Choose waveform for oscillator 2. - Seleziona la forma d'onda per l'Osc2. - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Seleziona la forma d'onda per il primo sub-oscillatore dell'Osc3. L'Osc3 può interpolare morbidamente tra due forme d'onda diverse. - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Seleziona la forma d'onda per il secondo sub-oscillatore dell'Osc3. L'Osc3 può interpolare morbidamente tra due forme d'onda diverse. - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - La manopola SUB cambia le qualtità per la miscela tra i due sub-oscillatori. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - Oltre ai modulatori dedicati, Monstro permette di modulare l'Osc3 tramite l'output dell'Osc2. - -La modalità Mix non produce nessuna modulazione: i due oscillatori sono semplicemente miscelati tra di loro. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - Oltre ai modulatori dedicati, Monstro permette di modulare l'Osc3 tramite l'output dell'Osc2. - -AM vuol dire modulazione di amplificazione: quella dell'Osc3 (il suo volume) è modulata dall'output dell'Osc2. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - Oltre ai modulatori dedicati, Monstro permette di modulare l'Osc3 tramite l'output dell'Osc2. - -FM vuol dire modulazione di frequenza: quella dell'Osc3 (la sua altezza) è modulata dall'Osc2. Questa modulazione è implementata come una modulazione di fase, in modo da avere una frequenza risultate più stabile di una FM pura. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - Oltre ai modulatori dedicati, Monstro permette di modulare l'Osc3 tramite l'outpit dell'Osc2. - -PM è la modulazione di fase: quella dell'Osc3 è modulata dall'Osc2. La differenza con la modulazione di frequenza consiste nel fatto che in quella i cambiamenti di fase non sono cumulativi. - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Selezioa la forma d'onda per l'LFO 1. -Vi sono due forme speciali: "Random" e "Random morbido" sono onde speciali che producono un aoutup randomico, dove il rate dell'LFO controlla quanto spesso lo stato dell'LFO cambia. La versione morbila interpola tra questi stati con una interpolazione a coseno. Queste modalità possono essere usate per ridare "vita" ai toi preset o aggiungere un po' di quella imprevedibilità degli stumenti analogici... - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Selezioa la forma d'onda per l'LFO 2. -Vi sono due forme speciali: "Random" e "Random morbido" sono onde speciali che producono un aoutup randomico, dove il rate dell'LFO controlla quanto spesso lo stato dell'LFO cambia. La versione morbila interpola tra questi stati con una interpolazione a coseno. Queste modalità possono essere usate per ridare "vita" ai toi preset o aggiungere un po' di quella imprevedibilità degli stumenti analogici... - - - Attack causes the LFO to come on gradually from the start of the note. - L'attacco fa sì che l'LFO arrivi gradualmente al suo stato da quello della nota suonata. - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - Il rate setta la velocità dell'LFO, misurata in millisecondi per ciclo. Può essere sincronizzata al tempo nel suo menù a tendina. - - - PHS controls the phase offset of the LFO. - PHS controlla lo spostamento di fase dell'LFO. - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE, o pre-ritardo, ritarda l'inizio dell'inviluppo dal momento in cui la nota viene suonata. 0 vuol dire nessun ritardo. - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - ATT, o attacco, controlla quanto velocemente l'inviluppo arriva al suo masimmo, misurando questo tempo in millisecondi. 0 vuol dire che il valore massimo viene raggiunto istantaneamente. - - - HOLD controls how long the envelope stays at peak after the attack phase. - HOLD controlla per quanto tempo l'inviluppo rimane al suo massimo dopo l'attacco. - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - DEC, o decadimento, controlla in quanto tempo l'inviluppo cade dal suo massimo, misurandolo in missilecondi. Il decadimento effettivo potrebbe essere più lento se viene alterato il sostegno. - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - SUS, o sostegno, controlla il livello di sostegno dell'inviluppo. La fase di decadimento non scenderà oltre questo livello fino a che la nota viene suonata. - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - REL, o rilascio, controlla il tempo di rilascio della nota, misurandola in millisecondi. Se l'inviluppo non si trova al suo valore massimo quando la nota è rilasciata, il rilascio potrebbe durare di meno. - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - SLOPE, o inclinazione, controlla la curva (o la forma) dell'inviluppo. Un valore pari a 0 lascia le salite e le discese come linee dritte. Valori negativi creeranno dei movimenti che partono lentamente, arrivano a un picco ripido, e poi terminano di nuovo lentamente. Valori positivi daranno curve che salgono e scendono velocemente, ma si fermano ai picchi. - - + + + Volume Volume + + + Panning Bilanciamento + + + Coarse detune Intonazione grezza + + + semitones semitoni - Finetune left + + + Fine tune left Intonazione precisa sinistra + + + + cents centesimi - Finetune right + + + 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: @@ -5035,117 +8947,145 @@ Vi sono due forme speciali: "Random" e "Random morbido" sono MultitapEchoControlDialog + Length Lunghezza + Step length: Durata degli step: + Dry Dry - Dry Gain: + + Dry gain: Guadagno senza effetto: + Stages Fasi - Lowpass stages: - Fasi del Passa Basso: + + Low-pass stages: + Fasi del passa-basso: + Swap inputs Scambia input - Swap left and right input channel for reflections + + Swap left and right input channels for reflections Scambia i canali destro e sinistro per le ripetizioni NesInstrument - Channel 1 Coarse detune - Intonazione grezza Canale 1 + + Channel 1 coarse detune + Intonazione al semitono canale 1 - Channel 1 Volume - Volume Canale 1 + + Channel 1 volume + Volume del canale 1 - Channel 1 Envelope length - Lunghezza inviluppo Canale 1 + + Channel 1 envelope length + Lunghezza inviluppo canale 1 - Channel 1 Duty cycle - Duty cycle del Canale 1 + + Channel 1 duty cycle + Duty cycle canale 1 - Channel 1 Sweep amount - Quantità di sweep Canale 1 + + Channel 1 sweep amount + Larghezza glissando canale 1 - Channel 1 Sweep rate - Velocità di sweep 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 envelope length + Lunghezza inviluppo canale 2 - Channel 2 Duty cycle - Duty cycle del Canale 2 + + Channel 2 duty cycle + Duty cycle canale 2 - Channel 2 Sweep amount - Quantità di sweep Canale 2 + + Channel 2 sweep amount + Larghezza glissando canale 2 - Channel 2 Sweep rate - Velocità di sweep Canale 2 + + Channel 2 sweep rate + Velocità glissando canale 2 - Channel 3 Coarse detune - Intonazione grezza Canale 3 + + Channel 3 coarse detune + Intonazione al semitono canale 3 - Channel 3 Volume - Volume Canale 3 + + Channel 3 volume + Volume del canale 3 - Channel 4 Volume - Volume Canale 4 + + Channel 4 volume + Volume del canale 4 - Channel 4 Envelope length - Lunghezza inviluppo Canale 4 + + Channel 4 envelope length + Lunghezza inviluppo canale 4 - Channel 4 Noise frequency - Frequenza rumore Canale 4 + + Channel 4 noise frequency + Frequenza rumore canale 4 - Channel 4 Noise frequency sweep - Frequenza rumore di sweep Canale 4 + + Channel 4 noise frequency sweep + Glissando rumore canale 4 + Master volume Volume principale + Vibrato Vibrato @@ -5153,196 +9093,447 @@ Vi sono due forme speciali: "Random" e "Random morbido" sono 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 + + 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 volume - Volume osc %1 - - - Osc %1 panning - Panning osc %1 - - - Osc %1 coarse detuning - Intonazione osc %1 - - - Osc %1 fine detuning left - Intonazione precisa osc %1 sinistra - - - 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 - - + 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 @@ -5350,77 +9541,85 @@ Vi sono due forme speciali: "Random" e "Random morbido" sono PatmanView - Open other patch - Apri un'altra patch - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Clicca qui per aprire un altro file di patch. Le impostazioni di ripetizione e intonazione non vengono reimpostate. + + Open patch + Apri patch + Loop Ripetizione + Loop mode Modalità ripetizione - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Qui puoi scegliere la modalità di ripetizione. Se abilitata, PatMan userà l'informazione sulla ripetizione disponibile nel file. - - + Tune Intonazione + Tune mode Modalità intonazione - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Qui puoi scegliere la modalità di intonazione. Se abilitata, PatMan intonerà il campione alla frequenza della nota. - - + No file selected Nessun file selezionato + Open patch file Apri file di patch + Patch-Files (*.pat) File di patch (*.pat) - PatternView + 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 @@ -5428,14 +9627,17 @@ Vi sono due forme speciali: "Random" e "Random morbido" sono 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. @@ -5443,10 +9645,12 @@ Vi sono due forme speciali: "Random" e "Random morbido" sono PeakControllerDialog + PEAK PICCO + LFO Controller Controller dell'LFO @@ -5454,327 +9658,519 @@ Vi sono due forme speciali: "Random" e "Random morbido" sono PeakControllerEffectControlDialog + BASE BASE - Base amount: - Quantità di base: - - - Modulation amount: - Quantità di modulazione: - - - Attack: - Attacco: - - - Release: - Rilascio: + + Base: + Base: + AMNT Q.TÀ + + Modulation amount: + Quantità di modulazione: + + + MULT MOLT - Amount Multiplicator: + + Amount multiplicator: Moltiplicatore di quantità: + ATCK ATCC + + Attack: + Attacco: + + + DCAY DCAD + + Release: + Rilascio: + + + + TRSH + SOGLIA + + + Treshold: Soglia: - TRSH - SCARTA + + Mute output + Silenzia l'output + + + + Absolute value + Valore assoluto PeakControllerEffectControls + Base value Valore di base + Modulation amount Quantità di modulazione - Mute output - Silenzia l'output - - + Attack Attacco + Release Rilascio - Abs Value - Valore Assoluto - - - Amount Multiplicator - Moltiplicatore della quantità - - + Treshold Soglia + + + Mute output + Silenzia l'output + + + + Absolute value + Valore assoluto + + + + Amount multiplicator + Moltiplicatore di quantità + PianoRoll - Please open a pattern by double-clicking on it! - Aprire un pattern con un doppio-click sul pattern stesso! - - - Last note - Ultima nota - - - Note lock - Note lock - - + Note Velocity Volume Note + Note Panning Panning Note + Mark/unmark current semitone Evidenza (o togli evidenziazione) questo semitono - Mark current scale - Evidenza la scala corrente - - - Mark current chord - Evidenza l'accordo corrente - - - Unmark all - Togli tutte le evidenziazioni - - - No scale - - Scale - - - No chord - - Accordi - - - Velocity: %1% - Velocity: %1% - - - Panning: %1% left - Bilanciamento: %1% a sinistra - - - Panning: %1% right - Bilanciamento: %1% a destra - - - Panning: center - Bilanciamento: centrato - - - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: - - + 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 pattern (Space) + + 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 - Stop playing of current pattern (Space) + + 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) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Cliccando qui si riproduce il pattern selezionato. Questo è utile mentre lo si modifica. Il pattern viene automaticamente ripetuto quando finisce. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Cliccando qui si registrano nel pattern note da una periferica MIDI o dal piano di prova virtuale nella finestra del canale corrispondente. Mentre si registra, tutte le note eseguite vengono scritte in questo pattern e in seguito le si potrà riprodurre e modificare. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Cliccando qui si registrano nel pattern note da una periferica MIDI o dal piano di prova virtuale nella finestra del canale corrispondente. Mentre si registra, tutte le note eseguite vengono scritte in questo pattern, sentendo contemporaneamente la canzone o la traccia BB in sottofondo. - - - Click here to stop playback of current pattern. - Cliccando qui si ferma la riproduzione del pattern attivo. - - - Draw mode (Shift+D) - Modalità disegno (Shift+D) - - - Erase mode (Shift+E) - Modalità cancella (Shift+E) - - - Select mode (Shift+S) - Modalità selezione (Shift+S) - - - Detune mode (Shift+T) - Modalità intonanzione (Shift+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Cliccando qui si attiva la modalità disegno. In questa modalità è possibile aggiungere e spostare singoli valori. Questa è la modalità predefinita, che viene usata la maggior parte del tempo. Questa modalità si attiva anche premendo la combinazione di tasti 'Shift+D'. Tieni premuto %1 per andare temporaneamente in modalità selezione. - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Cliccando qui si attiva la modalità cancellazione. In questa modalità è possibile cancellare singoli valori. Questa modalità si attiva anche premendo la combinazione di tasti 'Shift+E'. - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Cliccando qui viene attivata la modalità selezione. Puoi selezionare le note. Puoi anche tenere premuto %1 durante la modalità disegno per usare la modalità selezione temporaneamente. - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - Cliccando qui viene attivata la modalità intonazione. Puoi cliccare una nota per aprire la finestra di automazione dell'intonazione. Puoi usare questa modalità per fare uno slide da una nota ad un'altra. Puoi anche premere Shift+T per attivare questa modalità. - - - Cut selected notes (%1+X) - Taglia le note selezionate (%1+X) - - - Copy selected notes (%1+C) - Copia le note selezionate (%1+C) - - - Paste notes from clipboard (%1+V) - Incolla le note selezionate (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Cliccando qui le note selezionate verranno spostate negli appunti. È possibile incollarle in un punto qualsiasi del pattern cliccando sul tasto incolla. - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Cliccando qui le note selezionate verranno copiate negli appunti. È possibile incollarle in un punto qualsiasi del pattern cliccando sul tasto incolla. - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Cliccando qui i valori nella clipboard vengono incollati alla prima battuta visibile. - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Controlla l'ingrandimento di un asse. Normalmente, l'ingrandimento dev'essere adatto alle note più piccole che si sta scrivendo. - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - la 'Q' sta per quantizzazione, e controlla la lunghezza minima di modifica della nota. Con quantità minori, puoi scrivere note più piccole nel Piano Roll, o punti di controllo più precisi nell'Editor di Automazione. - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - Puoi selezionare la grandezza delle nuove note. 'Ultima nota' significa che LMMS userà la lunghezza dell'ultima nota modificata - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - Questa funzionalità è connessa al menù contestuale della tastiera viruale a sinistra. Dopo aver scelto la scala in questo menù a tendina, puoi cliccare con il tasto destro sulla nota desiderata nella tastiera, e selezionare 'Evidenza la scala corrente'. LMMS evidenzierà tutte le note che compongono la scala selezionata partendo dalla nota selezionata come tonica! - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - Ti permette di selezionare un accordo che LMMS può scriviere o evidenziare. Trovi tutti gli accordi più comuni in questo menù a tendina. Dopo averne selezionato uno, clicca dove vuoi per posizionarlo, oppure fai tasto destro sulla tastiera virtuale per evidenziare l'accordo. Per tornare alla scrittura per singola nota, devi selezionare 'Nessuno' in questo menù. - - + 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 pattern + + + Piano-Roll - no clip Piano-Roll - nessun pattern - Quantize - Quantizza + + + 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"! @@ -5782,221 +10178,1296 @@ Motivo: "%2" 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. - Instrument Plugins - Plugin Strumentali + + 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 for using arbitrary LV2 instruments inside 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. + + + + 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: + + + + + Has Inline Display: + Ha un Display in linea: + + + + Has Custom GUI: + Ha una GUI personalizzata: + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + Informazioni + + + + Name + Nome + + + + Label/URI + + + + + Maker + Creatore + + + + Binary/Filename + Binario/Nome file + + + + Focus Text Search + Ricerca testo mirato + + + + Ctrl+F + Ctrl+F + + + + PluginEdit + + + Plugin Editor + Editor plugin + + + + Edit + Modifica + + + + Control + Controllo + + + + MIDI Control Channel: + Canale controllo MIDI: + + + + N + N + + + + Output dry/wet (100%) + Uscita dry/wet (100%) + + + + Output volume (100%) + Volume di uscita (100%) + + + + Balance Left (0%) + Bilanciamento a sinistra (0%) + + + + + Balance Right (0%) + Bilanciamento destro (0%) + + + + Use Balance + Usa bilanciamento + + + + Use Panning + Usa panoramica + + + + Settings + Impostazioni + + + + Use Chunks + Usa blocchi + + + + Audio: + Audio: + + + + Fixed-Size Buffer + Buffer dimensione-fissa + + + + Force Stereo (needs reload) + Forza Stereo (deve essere ricaricato) + + + + MIDI: + MIDI: + + + + Map Program Changes + Mappa modifiche programma + + + + 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 + + +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: 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! + + PluginParameter + + + Form + Modulo + + + + Parameter Name + Nome parametro + + + + ... + ... + + + + PluginRefreshW + + + Carla - Refresh + Carla - Aggiorna + + + + Search for new... + Cerca nuovo... + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + 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 + + + + Scan + Scansiona + + + + >> Skip + >> Ignora + + + + Close + Chiudi + + + + PluginWidget + + + + + + + Frame + + + + + Enable + Abilita + + + + On/Off + On/Off + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + INGRESSO AUDIO + + + + AUDIO OUT + USCITA AUDIO + + + + GUI + GUI + + + + Edit + Modifica + + + + Remove + Rimuovi + + + + Plugin Name + Nome Plugin + + + + Preset: + Preselezione: + + ProjectNotes - 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... - - + 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-File (*.wav) - File WAV (*.wav) + + WAV (*.wav) + WAV (*.wav) - Compressed OGG-File (*.ogg) - File in formato OGG compresso (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin - Compressed MP3-File (*.mp3) - + + 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 - File: %1 - File: %1 + + &Recently Opened Projects + Progetti &Recenti RenameDialog + Rename... Rinomina... @@ -6004,716 +11475,1606 @@ Motivo: "%2" ReverbSCControlDialog + Input Ingresso - Input Gain: + + Input gain: Guadagno in Input: + Size Grandezza + Size: Grandezza: + Color Colore + Color: Colore: + Output Uscita - Output Gain: - Guadagno in Output: + + Output gain: + Guadagno in output: ReverbSCControls - Input Gain - Guadagno input + + Input gain + Guadagno in input + Size Grandezza + Color Colore - Output Gain - Guadagno output + + 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 - Open audio file - Apri file audio - - - 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) - - - 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) - - + 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 - - - SampleTCOView - double-click to select sample - Fare doppio click per selezionare il campione + + 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 - Sample track - Traccia di campione - - + 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 - Setup LMMS - Cofigura LMMS + + Reset to default value + Ritorna alle impostazioni predefinite - General settings - Impostazioni generali + + Use built-in NaN handler + Usa il gestore NaN integrato - BUFFER SIZE - DIMENSIONE DEL BUFFER + + Settings + Impostazioni - Reset to default-value - Reimposta al valore predefinito + + + General + Generale - MISC - VARIE + + Graphical user interface (GUI) + Interfaccia utente grafica (GUI) + + Display volume as dBFS + Mostra il volume in dBFS + + + Enable tooltips Abilita i suggerimenti - Show restart warning after changing settings - Dopo aver modificato le impostazioni, mostra un avviso al riavvio + + Enable master oscilloscope by default + - Compress project files per default - Per impostazione predefinita, comprimi i file di progetto + + Enable all note labels in piano roll + - One instrument track window mode - Mostra un solo strumento per volta + + Enable compact track buttons + - HQ-mode for output audio-device - Modalità alta qualità per l'uscita audio + + Enable one instrument-track-window mode + - Compact track buttons - Pulsanti della traccia compatti + + 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 - Enable note labels in piano roll - Abilita l'etichetta delle note nel piano roll - - - Enable waveform display by default - Abilità il display della forma d'onda per default - - + Keep effects running even without input Lascia gli effetti attivi anche senza input - Create backup file when saving a project - Crea un file di backup quando salva i progetti + + + Audio + Audio - LANGUAGE - LINGUA + + Audio interface + Interfaccia audio - Paths - Percorsi + + 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-plugin directory - Directory dei plugin VST + + 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 - STK rawwave directory - Directory per i file rawwave STK + + Some changes require restarting. + Alcune modifiche richiedono il riavvio. - Default Soundfont File - File SoundFont predefinito + + Autosave interval: %1 + Intervallo salvataggio automatico: %1 - Performance settings - Impostazioni prestazioni + + Choose the LMMS working directory + Scegli la cartella di lavoro di LMMS - UI effects vs. performance - Effetti UI (interfaccia grafica) vs. prestazioni + + Choose your VST plugins directory + Scegli la tua cartella dei plugins VST - Smooth scroll in Song Editor - Scorrimento morbido nel Song-Editor + + Choose your LADSPA plugins directory + Scegli la tua cartella dei plugins LADSPA - Show playback cursor in AudioFileProcessor - Mostra il cursore di riproduzione dentro AudioFileProcessor + + Choose your default SF2 + Scegli il tuo SF2 predefinito - Audio settings - Impostazioni audio + + Choose your theme directory + Scegli la tua cartella dei temi - AUDIO INTERFACE - INTERFACCIA AUDIO + + Choose your background picture + Scegli la tua immagine di sfondo - MIDI settings - Impostazioni MIDI - - - MIDI INTERFACE - INTERFACCIA MIDI + + + Paths + Percorsi + OK OK + Cancel Annulla - Restart LMMS - Riavvia LMMS - - - Please note that most changes won't take effect until you restart LMMS! - Si prega di notare che la maggior parte delle modifiche non avrà effetto fino al riavvio di LMMS! - - + Frames: %1 Latency: %2 ms Frames: %1 Latenza: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Qui è possibile impostare la dimensione del buffer interno usato da LMMS. Valori più piccoli danno come risultato una latenza più bassa ma possono causare una qualità audio inutilizzabile o cattive prestazioni, specialmente su computer datati o sistemi con kernel non-realtime. - - - Choose LMMS working directory - Seleziona la directory di lavoro di LMMS - - - Choose your VST-plugin directory - Seleziona la directory dei plugin VST - - - Choose artwork-theme directory - Seleziona la directory del tema grafico - - - Choose LADSPA plugin directory - Seleziona le directory dei plugin LADSPA - - - Choose STK rawwave directory - Seleziona le directory dei file rawwave STK - - - Choose default SoundFont - Scegliere il SoundFont predefinito - - - Choose background artwork - Scegliere la grafica dello sfondo - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - Qui è possibile selezionare l'interfaccia audio. A seconda della configurazione del tuo sistema in fase di compilazione puoi scegliere tra ALSA, JACK, OSS e altri. Sotto trovi una casella che offre dei controlli per l'interfaccia audio selezionata. - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - Qui è possibile selezionare l'interfaccia MIDI. A seconda della configurazione del tuo sistema in fase di compilazione puoi scegliere tra ALSA, OSS e altri. Sotto si trova una casella che offre dei controlli per l'interfaccia MIDI selezionata. - - - Reopen last project on start - Apri l'ultimo progetto all'avvio - - - Directories - Percorsi cartelle - - - Themes directory - Directory del tema grafico - - - GIG directory - Directory di GIG - - - SF2 directory - Directory dei SoundFont - - - LADSPA plugin directories - Directory dei plugin VST - - - Auto save - Salvataggio automatico - - + Choose your GIG directory Selezione la directory di GIG + Choose your SF2 directory Seleziona la directory dei SoundFont + minutes minuti + minute minuto - Display volume as dBFS - Mostra il volume in dBFS - - - Enable auto-save - Abiita funzione di salvataggio automatico - - - Allow auto-save while playing - Consenti il salvataggio automatico durante la riproduzione - - + Disabled Disabilitato + + + SidInstrument - Auto-save interval: %1 - Intervallo di salvataggio automatico: %1 + + Cutoff frequency + Frequenza di taglio - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Imposta il tempo tra i salvataggi automatici a %1. -Ricorda di salvare i progetti manualmente. Puoi disabilitare il salvataggio automatico durante la riproduzione, in quanto potrebbe pesare troppo su un sistema datato. + + 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 - Project saved - Progeto salvato + + Aborting project load + - The project %1 is now saved. - Il progetto %1 è stato salvato. + + Project file contains local paths to plugins, which could be used to run malicious code. + - 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 - - - Empty project - Progetto vuoto - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Questo progetto è vuoto, pertanto non c'è nulla da esportare. Prima, è necessario inserire alcuni elementi nel Song Editor! - - - Select directory for writing exported tracks... - Seleziona una directory per le tracce esportate... - - - untitled - senza_nome - - - Select file for project-export... - Scegliere il file per l'esportazione del progetto... - - - The following errors occured while loading: - Errori durante il caricamento: - - - MIDI File (*.mid) - File MIDI (*.mid) + + Can't load project: Project file contains local paths to plugins. + + LMMS Error report Informazioni sull'errore di LMMS - Save project - Salva progetto + + (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 write file - Impossibile scrivere 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. - Tempo - Tempo - - - TEMPO/BPM - TEMPO/BPM - - - tempo of song - tempo della canzone - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - Il tempo della canzone è specificato in battiti al minuto (BPM). Per cambiare il tempo della canzone bisogna cambiare questo valore. Ogni marcatore ha 4 battiti, pertanto il tempo in BPM specifica quanti marcatori / 4 verranno riprodotti in un minuto (o quanti marcatori in 4 minuti). - - - High quality mode - Modalità ad alta qualità - - - Master volume - Volume principale - - - master volume - volume principale - - - Master pitch - Altezza principale - - - master pitch - altezza principale - - - Value: %1% - Valore: %1% - - - Value: %1 semitones - Valore: %1 semitoni - - - 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. - Impossibile aprire il file %1 per la scrittura. Probabilmente non disponi dei permessi necessari alla scrittura di questo file. Assicurati di avere tali permessi e prova di nuovo. - - - template - modello - - - project - progetto - - + Version difference Differenza di versione - This %1 was created with LMMS %2. - %1 creato con LMMS %2. + + 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) - Add beat/bassline - Aggiungi beat/bassline - - - Add sample-track - Aggiungi traccia di campione - - - Add automation-track - Aggiungi una traccia di automazione - - - Draw mode - Modalità disegno - - - Edit mode (select and move) - Modalità modifica (seleziona e sposta) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Cliccando qui si riproduce l'intero brano. La riproduzione inizierà alla posizione attuale del segnaposto (verde). È possibile spostarlo anche durante la riproduzione. - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Cliccando qui si ferma la riproduzione del brano. Il cursore verrà portato all'inizio della canzone. - - + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum - Spettro lineare + + Horizontal zooming + Zoom orizzontale - Linear Y axis - Asse Y lineare + + 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 - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - Spettro lineare + + Hint + Suggerimento - Linear Y axis - Asse Y lineare - - - Channel mode - Modalità del canale + + Move recording curser using <Left/Right> arrows + Sposta cursore di registrazione usando le frecce <Sinistra/Destra> SubWindow + Close Chiudi + Maximize Massimizza + Restore Apri @@ -6721,81 +13082,110 @@ Assicurati di avere almeno i permessi di lettura del file e prova di nuovo. TabWidget + + Settings for %1 Impostazioni per %1 + + TemplatesMenu + + + New from template + Nuovo da modello + + TempoSyncKnob + + Tempo Sync Sync del tempo + No Sync Non in Sync + Eight beats Otto battiti + Whole note Un intero + Half note Una metà + Quarter note Quarto + 8th note Ottavo + 16th note Sedicesimo + 32nd note Trentaduesimo + Custom... Personalizzato... + Custom Personalizzato + 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 @@ -6803,30 +13193,37 @@ Assicurati di avere almeno i permessi di lettura del file e prova di nuovo. TimeDisplayWidget - click to change time units - Clicca per cambiare l'unità di tempo visualizzata + + Time units + Unità di tempo + MIN MIN + SEC SEC + MSEC MSEC + BAR BAR + BEAT BATT + TICK TICK @@ -6834,45 +13231,50 @@ Assicurati di avere almeno i permessi di lettura del file e prova di nuovo. TimeLineWidget - Enable/disable auto-scrolling - Abilita/disabilita lo scorrimento automatico + + Auto scrolling + Scorrimento automatico - Enable/disable loop-points - Abilita/disabilita i punti di ripetizione + + Loop points + Punti di ripetizione ciclica - After stopping go back to begin - Una volta fermata la riproduzione, torna all'inizio + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Tieni premuto <Shift> per spostare l'inizio del punto di loop; premi <%1> per disabilitare i punti di loop magnetici. - Track + Mute Muto + Solo Solo @@ -6880,305 +13282,492 @@ Assicurati di avere almeno i permessi di lettura del file e prova di nuovo. 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... - - Loading Track %1 (%2/Total %3) - - - TrackContentObject + Clip + Mute Muto - TrackContentObjectView + ClipView + Current position Posizione attuale - Hint - Suggerimento - - - Press <%1> and drag to make a copy. - Premere <%1>, cliccare e trascinare per copiare. - - + Current length Lunghezza attuale - Press <%1> for free resizing. - Premere <%1> per ridimensionare liberamente. - - + + %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. - Premere <%1> mentre si clicca sulla maniglia per lo spostamento per iniziare una nuova azione di drag'n'drop. + + 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 for this track - Azioni per questa traccia + + Actions + Azioni + + Mute Muto + + Solo Solo - Mute this track - Silezia questa traccia + + 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 - FX %1: %2 + + 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 - Assign to new FX Channel - Assegna ad un nuovo canale FX + + Change color + Cambia colore + + + + Reset color to default + Ripristina colore predefinito + + + + Set random color + + + + + Clear clip colors + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - Usare la modulazione di fase per modulare l'oscillatore 2 con l'oscillatore 1 + + Modulate phase of oscillator 1 by oscillator 2 + Modula la fase dell'oscillatore 1 tramite l'oscillatore 2 - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Usare la modulazione di amplificazione per modulare l'oscillatore 2 con l'oscillatore 1 + + Modulate amplitude of oscillator 1 by oscillator 2 + Modula l'ampiezza dell'oscillatore 1 dall'oscillatore 2 - Mix output of oscillator 1 & 2 - Miscelare gli oscillatori 1 e 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 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Usare la modulazione di frequenza per modulare l'oscillatore 2 con l'oscillatore 1 + + Modulate frequency of oscillator 1 by oscillator 2 + Modula la frequenza dell'oscillatore 1 tramite l'oscillatore 2 - Use phase modulation for modulating oscillator 2 with oscillator 3 - Usare la modulazione di fase per modulare l'oscillatore 3 con l'oscillatore 2 + + Modulate phase of oscillator 2 by oscillator 3 + Modula la fase dell'oscillatore 2 tramite l'oscillatore 3 - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Usare la modulazione di amplificazione per modulare l'oscillatore 3 con l'oscillatore 2 + + Modulate amplitude of oscillator 2 by oscillator 3 + Modula l'ampiezza dell'oscillatore 2 tramite l'oscillatore 3 - Mix output of oscillator 2 & 3 - Miscelare gli oscillatori 2 e 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 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Usare la modulazione di frequenza per modulare l'oscillatore 3 con l'oscillatore 2 + + Modulate frequency of oscillator 2 by oscillator 3 + Modula la frequenza dell'oscillatore 2 tramite l'oscillatore 3 + Osc %1 volume: Volume osc %1: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Questa manopola regola il volume dell'oscillatore %1. Un valore pari a 0 equivale a un oscillatore spento, gli altri valori impostano il volume corrispondente. - - + Osc %1 panning: Panning osc %1: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Questa manopola regola il posizionamento nello spettro stereo dell'oscillatore %1. Un valore pari a -100 significa tutto a sinistra mentre un valore pari a 100 significa tutto a destra. - - + Osc %1 coarse detuning: Intonazione dell'osc %1: + semitones semitoni - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Questa manopola regola l'intonazione, con la precisione di 1 semitono, dell'oscillatore %1. L'intonazione può essere variata di 24 semitoni (due ottave) in positivo e in negativo. Può essere usata per creare suoni con un accordo. - - + Osc %1 fine detuning left: Intonazione precisa osc %1 sinistra: + + cents centesimi - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Questa manopola regola l'intonazione precisa dell'oscillatore %1 per il canale sinistro. La gamma per l'intonazione di precisione va da -100 a +100 centesimi. Può essere usata per creare suoni "grossi". - - + Osc %1 fine detuning right: Intonazione precisa dell'osc %1 - destra: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Questa manopola regola l'intonazione precisa dell'oscillatore %1 per il canale destro. La gamma per l'intonazione di precisione va da -100 a +100 centesimi. Può essere usata per creare suoni "grossi". - - + Osc %1 phase-offset: Scostamento fase dell'osc %1: + + degrees gradi - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Questa manopola regola lo scostamento della fase dell'oscillatore %1. Ciò significa che è possibile spostare il punto in cui inizia l'oscillazione. Per esempio, un'onda sinusoidale e uno scostamento della fase di 180 gradi, fanno iniziare l'onda scendendo. Lo stesso vale per un'onda quadra. - - + Osc %1 stereo phase-detuning: Intonazione fase stereo dell'osc %1: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Questa manopola regola l'intonazione stereo della fase dell'oscillatore %1. L'intonazione stereo della fase specifica la differenza tra lo scostamento della fase del canale sinistro e quello destro. Questo è molto utile per creare suoni con grande ampiezza stereo. + + Sine wave + Onda sinusoidale - Use a sine-wave for current oscillator. - Utilizzare un'onda sinusoidale per questo oscillatore. + + Triangle wave + Onda triangolare - Use a triangle-wave for current oscillator. - Utilizzare un'onda triangolare per questo oscillatore. + + Saw wave + Onda a dente di sega - Use a saw-wave for current oscillator. - Utilizzare un'onda a dente di sega per questo oscillatore. + + Square wave + Onda quadra - Use a square-wave for current oscillator. - Utilizzare un'onda quadra per questo oscillatore. + + Moog-like saw wave + Onda a dente di sega tipo Moog - Use a moog-like saw-wave for current oscillator. - Utilizzare un'onda di tipo moog per questo oscillatore. + + Exponential wave + Onda esponenziale - Use an exponential wave for current oscillator. - Utilizzare un'onda esponenziale per questo oscillatore. + + White noise + Rumore bianco - Use white-noise for current oscillator. - Utilizzare rumore bianco per questo oscillatore. + + User-defined wave + Onda definita dall'utente + + + + VecControls + + + Display persistence amount + Visualizza quantità di persistenza - Use a user-defined waveform for current oscillator. - Utilizzare un'onda personalizzata per questo oscillatore. + + 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? @@ -7186,156 +13775,117 @@ Assicurarsi di avere i permessi in lettura per il file e per la directory che lo VestigeInstrumentView - Open other VST-plugin - Apri un altro plugin VST + + + Open VST plugin + Apri plug-in VST - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Clicca qui per aprire un altro plugin VST. Una volta cliccato questo pulsante, si aprirà una finestra di dialogo dove potrai selezionare il file. + + Control VST plugin from LMMS host + Controlla il plug-in VST dall'host LMMS - Show/hide GUI - Mostra/nascondi l'interfaccia - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Clicca qui per mostrare o nascondere l'interfaccia grafica (GUI) per i plugin VST. - - - Turn off all notes - Disabilita tutte le note - - - Open VST-plugin - Apri plugin VST - - - DLL-files (*.dll) - File DLL (*.dll) - - - EXE-files (*.exe) - File EXE (*.exe) - - - No VST-plugin loaded - Nessun plugin VST caricato - - - Control VST-plugin from LMMS host - Controlla il plugin VST dal terminale LMMS - - - Click here, if you want to control VST-plugin from host. - Cliccando qui, si apre una finestra di LMMS dove è possibile modificare le variabili del plugin VST. - - - Open VST-plugin preset - Apri un preset del plugin VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Cliccando qui, è possibile aprire un altro preset del plugin VST (*fxp, *fxb). + + Open VST plugin preset + Apri lo schema del plug-in VST + Previous (-) Precedente (-) - Click here, if you want to switch to another VST-plugin preset program. - Cliccando qui, viene cambiato il preset del plugin VST. - - + Save preset Salva il preset - Click here, if you want to save current VST-plugin preset program. - Cliccando qui è possibile salvare il preset corrente del plugin VST. - - + Next (+) Successivo (+) - Click here to select presets that are currently loaded in VST. - Cliccando qui, è possibile selezionare i preset che sono caricati nel VST al momento. + + 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 - - VisualizationWidget - - click to enable/disable visualization of master-output - cliccando si abilita/disabilita la visualizzazione dell'uscita principale - - - Click to enable - Clicca per abilitare - - VstEffectControlDialog + Show/hide Mostra/nascondi - Control VST-plugin from LMMS host - Controlla il plugin VST dal terminale LMMS + + Control VST plugin from LMMS host + Controlla il plug-in VST dall'ospite LMMS - Click here, if you want to control VST-plugin from host. - Cliccando qui, si apre una finestra di LMMS dove è possibile modificare le variabili del plugin VST. - - - Open VST-plugin preset - Apri un preset del plugin VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Cliccando qui, è possibile aprire un altro preset del plugin VST (*fxp, *fxb). + + Open VST plugin preset + Apri lo schema del plug-in VST + Previous (-) Precedente (-) - Click here, if you want to switch to another VST-plugin preset program. - Cliccando qui, viene cambiato il preset del plugin VST. - - + Next (+) Successivo (+) - Click here to select presets that are currently loaded in VST. - Cliccando qui, è possibile selezionare i preset che sono caricati nel VST al momento. - - + Save preset Salva il preset - Click here, if you want to save current VST-plugin preset program. - Cliccando qui è possibile salvare il preset corrente del plugin VST. - - + + Effect by: Effetto da: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7343,173 +13893,207 @@ Assicurarsi di avere i permessi in lettura per il file e per la directory che lo VstPlugin - Loading plugin - Caricamento plugin + + + 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 - Please wait while loading VST plugin... - Sto caricando il plugin VST... + + Loading plugin + Caricamento plugin - The VST plugin %1 could not be loaded. - Non è stato possibile caricare il plugin VST %1. + + 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 @@ -7517,2802 +14101,2251 @@ Assicurarsi di avere i permessi in lettura per il file e per la directory che lo WatsynView - 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 with output of A2 - Modula l'amplificzione di A1 con l'output di A2 - - - Ring-modulate A1 and A2 - Modulazione Ring tra A1 e A2 - - - Modulate phase of A1 with output of A2 - Modula la fase di A1 con l'output di A2 - - - Mix output of B2 to B1 - Mescola output di B2 a B1 - - - Modulate amplitude of B1 with output of B2 - Modula l'amplificzione di B1 con l'output di B2 - - - Ring-modulate B1 and B2 - Modulazione Ring tra B1 e B2 - - - Modulate phase of B1 with output of B2 - Modula la fase di B1 con l'output 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 - - - Click to load a waveform from a sample file - Clicca per usare la forma d'onda di un file esterno - - - Phase left - Sposta fase a sinistra - - - Click to shift phase by -15 degrees - Clicca per spostare la fase di -15° - - - Phase right - Sposta fase a destra - - - Click to shift phase by +15 degrees - Clicca per spostare la fase di +15° - - - Normalize - Normalizza - - - Click to normalize - Clicca per normalizzare - - - Invert - Inverti - - - Click to invert - Clicca per invertire - - - Smooth - Ammorbidisci - - - Click to smooth - Clicca per ammorbidire la forma d'onda - - - Sine wave - Onda sinusoidale - - - Click for sine wave - Clicca per rimpiazzare il grafico con una forma d'onda sinusoidale - - - Triangle wave - Onda triangolare - - - Click for triangle wave - Clicca per rimpiazzare il grafico con una forma d'onda triangolare - - - Click for saw wave - Clicca per rimpiazzare il grafico con una forma d'onda a dente si sega - - - Square wave - Onda quadra - - - Click for square wave - Clicca per rimpiazzare il grafico con una forma d'onda quadra - - + + + + Volume Volume + + + + Panning Bilanciamento + + + + Freq. multiplier Moltiplicatore freq. + + + + 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 + + + + Xpressive + + + Selected graph + Grafico selezionato + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + W1 smoothing + + + + W2 smoothing + W2 smoothing + + + + W3 smoothing + W3 smoothing + + + + 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 del filtro + + Filter frequency + Frequenza filtro - Filter Resonance - Risonanza del filtro + + Filter resonance + Risonanza filtro + Bandwidth Larghezza di Banda - FM Gain + + FM gain Guadagno FM - Resonance Center Frequency - Frequenza Centrale di Risonanza + + Resonance center frequency + Frequenza centrale di risonanza - Resonance Bandwidth - Bandwidth di Risonanza + + Resonance bandwidth + Larghezza banda di risonanza - Forward MIDI Control Change Events - Inoltra segnali dai controlli MIDI + + Forward MIDI control change events + Inoltra eventi di modifica controllo MIDI ZynAddSubFxView - Show GUI - Mostra GUI - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Clicca qui per mostrare o nascondere l'interfaccia grafica (GUI) di ZynAddSubFX. - - + Portamento: Portamento: + PORT PORT - Filter Frequency: - Frequenza del Filtro: + + Filter frequency: + Frequenza filtro: + FREQ FREQ - Filter Resonance: - Risonanza del Filtro: + + Filter resonance: + Risonanza filtro: + RES RIS + Bandwidth: Larghezza di banda: + BW Largh: - FM Gain: + + 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 cambiamenti dai controlli MIDI + + Forward MIDI control changes + Inoltra modifiche controllo MIDI + + + + Show GUI + Mostra GUI - audioFileProcessor + AudioFileProcessor + Amplify Amplificazione + Start of sample Inizio del campione + End of sample Fine del campione - Reverse sample - Inverti il campione - - - Stutter - Passaggio - - + Loopback point Punto di LoopBack + + Reverse sample + Inverti il campione + + + Loop mode Modalità ripetizione + + Stutter + Passaggio + + + Interpolation mode Modalità Interpolazione + None Nessuna + Linear Lineare + Sinc Sincronizzata + Sample not found: %1 Campione non trovato: %1 - bitInvader + BitInvader - Samplelength - LunghezzaCampione + + Sample length + Lunghezza campione - bitInvaderView + BitInvaderView - Sample Length - Lunghezza del campione - - - Sine wave - Onda sinusoidale - - - Triangle wave - Onda triangolare - - - Saw wave - Onda a dente di sega - - - Square wave - Onda quadra - - - White noise wave - Rumore bianco - - - User defined wave - Forma d'onda personalizzata - - - Smooth - Ammorbidisci - - - Click here to smooth waveform. - Cliccando qui la forma d'onda viene ammorbidita. - - - Interpolation - Interpolazione - - - Normalize - Normalizza + + Sample length + Lunghezza campione + 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. - Click for a sine-wave. - Cliccando qui si ottiene una forma d'onda sinusoidale. + + + Sine wave + Onda sinusoidale - Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. + + + Triangle wave + Onda triangolare - Click here for a saw-wave. - Cliccando qui si ottiene un'onda a dente di sega. + + + Saw wave + Onda a dente di sega - Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. + + + Square wave + Onda quadra - Click here for white-noise. - Cliccando qui si ottiene rumore bianco. + + + White noise + Rumore bianco - Click here for a user-defined shape. - Cliccando qui è possibile definire una forma d'onda personalizzata. + + + User-defined wave + Onda definita dall'utente + + + + + Smooth waveform + Spiana forma d'onda + + + + Interpolation + Interpolazione + + + + Normalize + Normalizza - dynProcControlDialog + DynProcControlDialog + INPUT INPUT + Input gain: Guadagno in Input: + OUTPUT OUTPUT + Output gain: Guadagno in Output: + ATTACK ATTACCO + Peak attack time: Attacco del picco: + RELEASE RILASCIO + Peak release time: Rilascio del picco: - Reset waveform - Resetta forma d'onda + + + Reset wavegraph + Reimposta la forma d'onda - Click here to reset the wavegraph back to default - Clicca per riportare la forma d'onda allo stato originale + + + Smooth wavegraph + Forma d'onda piana - Smooth waveform - Ammorbidisci forma d'onda + + + Increase wavegraph amplitude by 1 dB + Incrementa l'ampiezza del diagramma d'onda di 1 dB - Click here to apply smoothing to wavegraph - Clicca per ammorbidire la forma d'onda + + + Decrease wavegraph amplitude by 1 dB + Decrementa l'ampiezza del diagramma d'onda di 1 dB - Increase wavegraph amplitude by 1dB - Aumenta l'amplificazione di 1dB - - - Click here to increase wavegraph amplitude by 1dB - Clicca per aumentare l'amplificazione del grafico d'onda di 1dB - - - Decrease wavegraph amplitude by 1dB - Diminuisci l'amplificazione di 1dB - - - Click here to decrease wavegraph amplitude by 1dB - Clicca qui per diminuire l'amplificazione del grafico d'onda di 1dB - - - Stereomode Maximum - Modalità stereo: Massimo + + 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 - Stereomode Average - Modalità stereo: Media + + 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 - Stereomode Unlinked - Modalità stereo: Indipendenti + + Stereo mode: unlinked + Modalità stereo: scollegata + Process each stereo channel independently L'effetto tratta i due canali stereo indipendentemente - dynProcControls + DynProcControls + Input gain Guadagno in input + Output gain Guadagno in output + Attack time Tempo di Attacco + Release time Tempo di Rilascio + Stereo mode Modalità stereo - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - - - - Sine wave - Onda sinusoidale - - - Click for a sine-wave. - Cliccando qui si ottiene una forma d'onda sinusoidale. - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - Onda esponenziale - - - Click for an exponential wave. - - - - Saw wave - Onda a dente di sega - - - Click here for a saw-wave. - Cliccando qui si ottiene un'onda a dente di sega. - - - User defined wave - Forma d'onda personalizzata - - - Click here for a user-defined shape. - Cliccando qui è possibile definire una forma d'onda personalizzata. - - - 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. - - - White noise wave - Rumore bianco - - - Click here for white-noise. - Cliccando qui si ottiene rumore bianco. - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - - - - O2 panning: - - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - Assign to: - Assegna a: - - - New FX Channel - Nuovo canale FX - - graphModel + Graph Grafico - kickerInstrument + KickerInstrument + Start frequency Frequenza iniziale + End frequency Frequenza finale - Gain - Guadagno - - + Length Lunghezza - Distortion Start - Distorsione iniziale + + Start distortion + Inizio distorsione - Distortion End - Distorsione finale + + End distortion + Fine distorsione - Envelope Slope - Inclinazione Inviluppo + + Gain + Guadagno + + Envelope slope + Pendenza inviluppo + + + Noise Rumore + Click Click - Frequency Slope - Inclinazione Frequenza + + Frequency slope + Pendenza frequenza + Start from note Inizia dalla nota + End to note Finisci sulla nota - kickerInstrumentView + KickerInstrumentView + Start frequency: Frequenza iniziale: + End frequency: Frequenza finale: + + Frequency slope: + Pendenza frequenza: + + + Gain: Guadagno: - Frequency Slope: - Inclinazione Frequenza: + + Envelope length: + Lunghezza inviluppo - Envelope Length: - Lunghezza Inviluppo: - - - Envelope Slope: - Inclinazione Inviluppo: + + Envelope slope: + Pendenza inviluppo + Click: Click: + Noise: Rumore: - Distortion Start: - Distorsione iniziale: + + Start distortion: + Inizio distorsione: - Distortion End: - Distorsione finale: + + End distortion: + Fine distorsione: - ladspaBrowserView + LadspaBrowserView + + Available Effects Effetti disponibili + + Unavailable Effects Effetti non disponibili + + Instruments Strumenti + + Analysis Tools Strumenti di analisi + + Don't know Sconosciuto - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Questa finestra mostra le informazioni relative ai plugin LADSPA che LMMS è stato in grado di localizzare. I plugin sono divisi in cinque categorie, in base all'interpretazione dei tipi di porta e ai nomi. - -Gli Effetti Disponibili sono quelli che possono essere usati con LMMS. Perché LMMS possa usare un effetto deve, prima di tutto, essere un effetto, cioè deve avere sia ingressi che uscite. LMMS identifica un ingresso come una porta con una frequenza audio associata e che contiene 'in' nel nome. Le uscite sono identificate dalle lettere 'out'. Inoltre, l'effetto deve avere lo stesso numero di ingressi e di uscite e deve poter funzionare in real time. - -Gli Effetti non Disponibili sono quelli che sono stati identificati come effetti ma che non hanno lo stesso numero di ingressi e uscite oppure non supportano il real time. - -Gli Strumenti sono plugin che hanno solo uscite. - -Gli Strumenti di Analisi sono plugin che hanno solo ingressi. - -Quelli Sconosciuti sono plugin che non hanno né ingressi né uscite. - -Facendo doppio click sui plugin verranno fornite informazioni sulle relative porte. - - + Type: Tipo: - ladspaDescription + LadspaDescription + Plugins Plugin + Description Descrizione - ladspaPortDialog + 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 + 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 + Distortion Distorsione + Waveform Forma d'onda + Slide Decay Decadimento slide + Slide Slide + Accent Accento + Dead Dead + 24dB/oct Filter Filtro 24dB/ottava - lb302SynthView + Lb302SynthView + Cutoff Freq: Freq. di taglio: + Resonance: Risonanza: + Env Mod: Env Mod: + Decay: Decadimento: + 303-es-que, 24dB/octave, 3 pole filter filtro tripolare "tipo 303", 24dB/ottava + Slide Decay: Decadimento slide: + DIST: DIST: + 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. - malletsInstrument + MalletsInstrument + Hardness Durezza + Position Posizione - Vibrato Gain - Guadagno del vibrato + + Vibrato gain + Guadagno del Vibrato - Vibrato Freq - Fequenza del vibrato + + Vibrato frequency + Frequenza del Vibrato - Stick Mix - Stick Mix + + Stick mix + + Modulator Modulatore + Crossfade Crossfade - LFO Speed + + LFO speed Velocità dell'LFO - LFO Depth - Profondità dell'LFO + + LFO depth + Profondità del LFO + ADSR ADSR + Pressure Pressione + Motion Moto + Speed Velocità + Bowed Bowed + Spread Apertura + Marimba Marimba + Vibraphone Vibraphone + Agogo Agogo - Wood1 - Legno1 + + Wood 1 + Legno 1 + Reso Reso - Wood2 - Legno2 + + Wood 2 + Legno 2 + Beats Beats - Two Fixed - Two Fixed + + Two fixed + Due fissi + Clump Clump - Tubular Bells - Tubular Bells + + Tubular bells + Campane tubolari - Uniform Bar - Uniform Bar + + Uniform bar + Barra uniforme - Tuned Bar - Tuned Bar + + Tuned bar + Barra accordata + Glass Glass - Tibetan Bowl - Tibetan Bowl + + Tibetan bowl + Campana tibetana - malletsInstrumentView + MalletsInstrumentView + Instrument Strumento + Spread Apertura + Spread: Apertura: - Hardness - Durezza - - - Hardness: - Durezza: - - - Position - Posizione - - - Position: - Posizione: - - - Vib Gain - Guad Vib - - - Vib Gain: - Guad Vib: - - - Vib Freq - Freq Vib - - - Vib Freq: - Freq Vib: - - - Stick Mix - Stick Mix - - - Stick Mix: - Stick Mix: - - - Modulator - Modulatore - - - Modulator: - Modulatore: - - - Crossfade - Crossfade - - - Crossfade: - Crossfade: - - - LFO Speed - Velocità LFO - - - LFO Speed: - Velocità LFO: - - - LFO Depth - Profondità LFO - - - LFO Depth: - Profondità LFO: - - - ADSR - ADSR - - - ADSR: - ADSR: - - - Pressure - Pressione - - - Pressure: - Pressione: - - - Speed - Velocità - - - Speed: - Velocità: - - + 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 + 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: + + + + Speed + Velocità + + + + Speed: + Velocità: + - manageVSTEffectView + ManageVSTEffectView + - VST parameter control - Controllo parametri VST - VST Sync - Sync VST - - - Click here if you want to synchronize all parameters with VST plugin. - Clicca qui se vuoi sincronizzare tutti i parametri con il plugin VST. + + VST sync + Sincronizzazione VST + + Automated Automatizzati - Click here if you want to display automated parameters only. - Clicca qui se vuoi visualizzare solo i parametri automatizzati. - - + Close Chiudi - - Close VST effect knob-controller window. - Chiudi la finestra delle manopole dell'effetto VST. - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - Controllo del plugin VST + VST Sync Sync VST - Click here if you want to synchronize all parameters with VST plugin. - Clicca qui se vuoi sincronizzare tutti i parametri con il plugin VST. - - + + Automated Automatizzati - Click here if you want to display automated parameters only. - Clicca qui se vuoi visualizzare solo i parametri automatizzati. - - + Close Chiudi - - Close VST plugin knob-controller window. - Chiudi la finestra delle manopole del plugin VST. - - opl2instrument - - Patch - Patch - - - 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 di livello Op 1 - - - Op 1 Frequency Multiple - Moltiplicatore di frequenza Op 1 - - - Op 1 Feedback - Feedback Op 1 - - - Op 1 Key Scaling Rate - Rateo del Key Scaling Op 1 - - - Op 1 Percussive Envelope - Envelope a percussione 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 di livello Op 2 - - - Op 2 Frequency Multiple - Moltiplicatore di frequenza Op 2 - - - Op 2 Key Scaling Rate - Rateo del Key Scaling Op 2 - - - Op 2 Percussive Envelope - Envelope a percussione 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à del Vibrato - - - Tremolo Depth - Profondità del Tremolo - - - - opl2instrumentView - - Attack - Attacco - - - Decay - Decadimento - - - Release - Rilascio - - - Frequency multiplier - Moltiplicatore della frequenza - - - - organicInstrument + OrganicInstrument + Distortion Distorsione + Volume Volume - organicInstrumentView + OrganicInstrumentView + Distortion: Distorsione: + Volume: Volume: + Randomise Rendi casuale + + Osc %1 waveform: Onda osc %1: + Osc %1 volume: Volume osc %1: + Osc %1 panning: Panning osc %1: - cents - centesimi - - - The distortion knob adds distortion to the output of the instrument. - La manopola di distorsione aggiunge distorsione all'ouyput dello strumento. - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - La manopola di volume cntrolla il volume di output dello strumento. Si rapporta al volume della finestra del plugin in modo cumulativo. - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - Il pulsante randomize genera un nuovo suono randomizzando tutte le manopole tranne le Armoniche, il volume principale e la distorsione. - - + Osc %1 stereo detuning Osc %1 intonazione stereo + + cents + centesimi + + + Osc %1 harmonic: Osc %1 armoniche: - FreeBoyInstrument - - Sweep time - Tempo di sweep - - - Sweep direction - Direzione sweep - - - Sweep RtShift amount - Quantità RtShift per lo sweep - - - Wave Pattern Duty - Wave Pattern Duty - - - 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 - - - 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 - - - Shift Register width - Ampiezza spostamento del registro - - - - FreeBoyInstrumentView - - Sweep Time: - Tempo di sweep: - - - Sweep Time - Tempo di sweep - - - Sweep RtShift amount: - Quantità RtShift per lo sweep: - - - Sweep RtShift amount - Quantità RtShift per lo sweep - - - Wave pattern duty: - Wave Pattern Duty: - - - Wave Pattern Duty - Wave Pattern Duty - - - Square Channel 1 Volume: - Volume del canale 1 square: - - - Length of each step in sweep: - Lunghezza di ogni passo nello sweep: - - - Length of each step in sweep - Lunghezza di ogni passo nello sweep - - - Wave pattern duty - Wave Pattern Duty - - - Square Channel 2 Volume: - Volume square del canale 2: - - - Square Channel 2 Volume - Volume square del canale 2 - - - Wave Channel Volume: - Volume wave del canale: - - - Wave Channel Volume - Volume wave del canale - - - Noise Channel Volume: - Volume rumore del canale: - - - Noise Channel Volume - Volume rumore del canale - - - 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 - Ampiezza spostamento del registro - - - Channel1 to SO1 (Right) - Canale 1 a SO1 (destra) - - - Channel2 to SO1 (Right) - Canale 2 a SO1 (destra) - - - Channel3 to SO1 (Right) - Canale 3 a SO1 (destra) - - - Channel4 to SO1 (Right) - Canale 4 a SO1 (destra) - - - Channel1 to SO2 (Left) - Canale 1 a SO2 (sinistra) - - - Channel2 to SO2 (Left) - Canale 1 a SO2 (sinistra) - - - Channel3 to SO2 (Left) - Canale 3 a SO2 (sinistra) - - - Channel4 to SO2 (Left) - Canale 4 a SO2 (sinistra) - - - Wave Pattern - Wave Pattern - - - The amount of increase or decrease in frequency - La quantità di aumento o diminuzione di frequenza - - - The rate at which increase or decrease in frequency occurs - La velocità a cui l'aumento o la diminuzione di frequenza avvengono - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - Il duty cycle è il rapporto tra il tempo in cui il segnale è ON e il periodo completo del segnale. - - - Square Channel 1 Volume - Volume square del canale 1 - - - The delay between step change - Ritardo tra i cambi di step - - - Draw the wave here - Disegnare l'onda qui - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset Qsynth: Preset Canale + Bank selector Selezione banca + Bank Banco + Program selector Selezione programma + Patch Programma + Name Nome + OK OK + Cancel Annulla - pluginBrowser - - no description - nessuna descrizione - - - Incomplete monophonic imitation tb303 - Imitazione monofonica del tb303 incompleta - - - Plugin for freely manipulating stereo output - Plugin per manipolare liberamente un'uscita stereo - - - Plugin for controlling knobs with sound peaks - Plugin per controllare le manopole con picchi di suono - - - Plugin for enhancing stereo separation of a stereo input file - Plugin per migliorare la separazione stereo di un file - - - List installed LADSPA plugins - Elenca i plugin LADSPA installati - - - GUS-compatible patch instrument - strumento compatibile con GUS - - - Additive Synthesizer for organ-like sounds - Sintetizzatore additivo per suoni tipo organo - - - Tuneful things to bang on - Oggetti dotati di intonazione su cui picchiare - - - 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 LADSPA-effects inside LMMS. - Plugin per usare qualsiasi effetto LADSPA in LMMS. - - - Filter for importing MIDI-files into LMMS - Filtro per importare file MIDI in 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. - - - Player for SoundFont files - Riproduttore di file SounFont - - - Emulation of GameBoy (TM) APU - Emulatore di GameBoy™ APU - - - Customizable wavetable synthesizer - Sintetizzatore wavetable configurabile - - - Embedded ZynAddSubFX - ZynAddSubFX incorporato - - - 2-operator FM Synth - Sintetizzatore FM a 2 operatori - - - Filter for importing Hydrogen files into LMMS - Strumento per l'importazione di file Hydrogen dentro LMMS - - - LMMS port of sfxr - Port di sfxr su LMMS - - - Monstrous 3-oscillator synth with modulation matrix - Sintetizzatore mostruoso con 3 oscillatori e matrice di modulazione - - - Three powerful oscillators you can modulate in several ways - Tre potenti oscillatori modulabili in vari modi - - - A native amplifier plugin - Un plugin di amplificazione nativo - - - Carla Rack Instrument - Strutmento Rack Carla - - - 4-oscillator modulatable wavetable synth - Sintetizzatore wavetable con 4 oscillatori modulabili - - - plugin for waveshaping - Plugin per la modifica della forma d'onda - - - Boost your bass the fast and simple way - Potenzia il tuo basso in modo veloce e semplice - - - Versatile drum synthesizer - Sintetizzatore di percussioni versatile - - - 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 - - - plugin for processing dynamics in a flexible way - Un versatile processore di dynamic - - - Carla Patchbay Instrument - Strumento Patchbay Carla - - - plugin for using arbitrary VST effects inside LMMS. - Plugin per usare effetti VST arbitrari dentro LMMS. - - - Graphical spectrum analyzer plugin - Analizzatore di spettro grafico - - - A NES-like synthesizer - Un sintetizzatore che imita i suoni del Nintendo Entertainment System - - - A native delay plugin - Un plugin di ritardi eco nativo - - - Player for GIG files - Riproduttore di file GIG - - - A multitap echo delay plugin - Un plugin di ritardo eco multitap - - - A native flanger plugin - Un plugin di flager nativo - - - An oversampling bitcrusher - Un riduttore di bit con oversampling - - - A native eq plugin - Un plugin di equalizzazione nativo - - - A 4-band Crossover Equalizer - Un equalizzatore Crossover a 4 bande - - - A Dual filter plugin - Un plugin di duplice filtraggio - - - Filter for exporting MIDI-files from LMMS - Filtro per esportare file MIDI da LMMS - - - Reverb algorithm by Sean Costello - Algoritmo di Riverbero di Sean Costello - - - Mathematical expression parser - - - - - sf2Instrument + Sf2Instrument + Bank Banco + Patch Patch + Gain Guadagno + Reverb Riverbero - Reverb Roomsize - Riverbero - dimensione stanza + + Reverb room size + Dimensioni stanza del riverbero - Reverb Damping - Riverbero - attenuazione + + Reverb damping + Smorzamento del riverbero - Reverb Width - Riverbero - ampiezza + + Reverb width + Banda del riverbero - Reverb Level - Riverbero - livello + + Reverb level + Livello di riverbero + Chorus Chorus - Chorus Lines - Chorus - voci + + Chorus voices + Voci del Chorus - Chorus Level - Chorus - livello + + Chorus level + Livello del Chorus - Chorus Speed - Chorus - velocità + + Chorus speed + Velocità del Chorus - Chorus Depth - Chorus - profondità + + Chorus depth + Profondità del Chorus + A soundfont %1 could not be loaded. Non è stato possibile caricare un soundfont %1. - sf2InstrumentView - - Open other SoundFont file - Apri un altro file SoundFont - - - Click here to open another SF2 file - Clicca qui per aprire un altro file SF2 - - - Choose the patch - Seleziona il patch - - - Gain - Guadagno - - - Apply reverb (if supported) - Applica il riverbero (se supportato) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Questo pulsante abilita l'effetto riverbero, che è utile per effetti particolari ma funziona solo su file che lo supportano. - - - Reverb Roomsize: - Riverbero - dimensione stanza: - - - Reverb Damping: - Riverbero - attenuazione: - - - Reverb Width: - Riverbero - ampiezza: - - - Reverb Level: - Riverbero - livello: - - - Apply chorus (if supported) - Applica il chorus (se supportato) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Questo pulsante abilita l'effetto chorus, che è utile per effetti di eco particolari ma funziona solo su file che lo supportano. - - - Chorus Lines: - Chorus - voci: - - - Chorus Level: - Chorus - livello: - - - Chorus Speed: - Chorus - velocità: - - - Chorus Depth: - Chorus - profondità: - + Sf2InstrumentView + + Open SoundFont file Apri un file SoundFont - SoundFont2 Files (*.sf2) - File SoundFont2 (*.sf2) + + 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 + SfxrInstrument - Wave Form - Forma d'onda + + Wave + Onda - sidInstrument + StereoEnhancerControlDialog - Cutoff - 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 - - - Voice3 Off - Voce 3 spenta - - - MOS6581 SID - MOS6581 SID - - - MOS8580 SID - MOS8580 SID - - - Attack: - Attacco: - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Il livello di attacco determina quanto rapidamente l'uscita della voce %1 sale da zero al picco di amplificazione. - - - Decay: - Decadimento: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - Il livello di decadimento determina quanto rapidamente l'uscita ricade dal picco di amplificazione al livello di sostegno impostato. - - - Sustain: - Sostegno: - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - L'uscita della voce %1 rimarrà al livello di sostegno impostato per tutta la durata della nota. - - - Release: - Rilascio: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - L'uscita della voce %1 ricadrà dal livello di sostegno verso il silenzio con la velocità di rilascio impostata. - - - Pulse Width: - Ampiezza pulse: - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - La risoluzione dell'ampiezza del Pulse permette di impostare che l'ampiezza venga variata in modo continuo senza salti udibili. Sull'oscillatore %1 deve essere selezionata la forma d'onda Pulse perché si abbia un effetto udibile. - - - Coarse: - Approssimativo: - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - L'intonazione permette di "stonare" la voce %1 verso l'alto o verso il basso di un'ottava. - - - Pulse Wave - Onda pulse - - - Triangle Wave - Onda triangolare - - - SawTooth - Dente di sega - - - Noise - Rumore - - - Sync - Sincronizzato - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Il Sync sincronizza la frequenza fondamentale dell'oscillatore %1 con quella dell'oscillatore %2 producendo effetti di "Hard Sync". - - - Ring-Mod - Modulazione ring - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Ring-mod rimpiazza l'uscita della forma d'onda triangolare dell'oscillatore %1 con la combinazione "Ring Modulated" degli oscillatori %1 e %2. - - - Filtered - Filtrato - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Quando il filtraggio è attivo, la voce %1 verrà processata dal filtro. Quando il filtraggio è spento, la voce %1 arriva direttamente all'uscita e il filtro non ha effetto su di essa. - - - Test - Test - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Quando Test è attivo, e finché non viene spento, reimposta e blocca l'oscillatore %1 a zero. - - - - stereoEnhancerControlDialog - - WIDE - AMPIO + + WIDTH + AMPIEZZA + Width: Ampiezza: - stereoEnhancerControls + StereoEnhancerControls + Width Ampiezza - stereoMatrixControlDialog + 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 + StereoMatrixControls + Left to Left Da Sinistra a Sinistra + Left to Right Da Sinistra a Destra + Right to Left Da Destra a Sinistra + Right to Right Da Destra a Destra - vestigeInstrument + VestigeInstrument + Loading plugin Caricamento plugin - Please wait while loading VST-plugin... - Prego attendere, caricamento del plugin VST... + + Please wait while loading the VST plugin... + Attendere il caricamento del plug-in VST... - vibed + 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 - Pan %1 - Pan %1 + + String %1 panning + Panning corda %1 - Detune %1 - Intonazione %1 + + String %1 detune + De-intonazione corda %1  - Fuzziness %1 - Fuzziness %1 + + String %1 fuzziness + - Length %1 - Lunghezza %1 + + String %1 length + Lunghezza corda %1 + Impulse %1 Impulso %1 - Octave %1 - Ottava %1 + + String %1 + Corda %1 - vibedView + VibedView - Volume: - Volume: - - - The 'V' knob sets the volume of the selected string. - La manopola 'V' regola il volume della corda selezionata. + + String volume: + Volume corda + String stiffness: Durezza della corda: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - La manopola 'S' regola la durezza della corda selezionata. La durezza della corda influenza la durata della vibrazione. Più basso sarà il valore, più a lungo suonerà la corda. - - + Pick position: Posizione del plettro: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - La manopola 'P' regola il punto in cui verrà 'pizzicata' la corda. Più basso sarà il valore, più vicino al ponte sarà il plettro. - - + Pickup position: Posizione del pickup: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - La manopola 'PU' regola la posizione in cui verranno rilevate le vibrazioni della corda selezionata. Più basso sarà il valore, più vicino al ponte sarà il pickup. + + String panning: + Panning corda - Pan: - Pan: + + String detune: + De-intonazione corda - The Pan knob determines the location of the selected string in the stereo field. - La manopola Pan determina la posizione della corda selezionata nello spettro stereo. + + String fuzziness: + - Detune: - Intonazione: + + String length: + Lunghezza corda: - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - La manopola Intonazione regola l'altezza del suono della corda selezionata. Valori sotto lo zero sposteranno l'intonazione della corda verso il bemolle. Valori sopra lo zero spostarenno l'intonazione della corda verso il diesis. - - - Fuzziness: - Fuzziness: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - La manopola Slap aggiungeun po' di "sporco" al suono della corda selezionata, sensibile soprattutto nell'attacco, anche se può essere usato per rendere il suono più "metallico". - - - Length: - Lunghezza: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - La manopola Lunghezza regola la lunghezza della corda selezionata. Corde più lunghe suonano più a lungo e hanno un suono più brillante. Tuttavia richiedono anche più tempo del processore. - - - Impulse or initial state - Impulso o stato iniziale - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - Il selettore 'Imp' determina se la forma d'onda nel grafico deve essere trattata come l'impulso del plettro sulla corda o come lo stato iniziale della corda. + + Impulse + Impulso + Octave Ottava - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - Il seletore Ottava serve per scegliere a quale armonico della nota risuona la corda. Per esempio, '-2' significa che la corda risuona due ottave sotto la fondamentale, 'F' significa che la corda risuona alla fondamentale e '6' significa che la corda risuona sei ottave sopra la fondamentale. - - + Impulse Editor Editor dell'impulso - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - L'editor della forma d'onda fornisce il controllo sull'impulso iniziale usato per far vibrare la corda. I pulsanti a destra del grafico predispongono una forma d'onda del tipo selezionato. Il pulsante '?' carica la forma d'onda da un file--verranno caricati solo i primi 128 campioni. - -La forma d'onda può anche essere disegnata direttamente sul grafico. - -Il pulsante 'S' ammorbisce la forma d'onda. - -Il pulsante 'N' normalizza la forma d'onda. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Vibed modella fino a nove corde che vibrano indipendentemente. Il selettore 'Corda' permettedi scegliere quale corda modificare. Il selettore 'Imp' sceglie se il grafico sarà l'impulso dato o lo stato iniziale della corda. Il selettore 'Ottava' imposta l'armonico a cui risuonerà la corda. - -Il grafico permette di controllare l'impulso (o lo stato iniziale) per far vibrare la corda. - -La manopola 'V' reogla il volume. La manopola 'S' regola la durezza della corda. La manopola 'P' regola la posiziona del plettro. La manopola 'PU' regola la posizione del pickup. - -'Pan' e 'Detune' non dovrebbero aver bisogno di spiegazioni. La manopola 'Slap' aggiunge un po' di "sporco" al suono della corda. - -La manopola 'Lunghezza' regola la lunghezza della corda. - -Il LED nell'angolo in basso a destra sull'editor della forma d'onda determina se la corda è attiva nello strumento selezionato. - - + Enable waveform Abilita forma d'onda - Click here to enable/disable waveform. - Cliccando qui si abilita/disabilita la forma d'onda. + + Enable/disable string + Abilita/disabilita corda + String Corda - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - Il selettore della Corda serve per scegliere su quale corda hanno effetto i controlli. Uno strumento Vibed può contenere fino a nove corde che indipendenti. Il LED nell'angolo in basso a destra dell'editor della forma d'onda indica se la corda è attiva. - - + + Sine wave Onda sinusoidale + + Triangle wave Onda triangolare + + Saw wave Onda a dente di sega + + Square wave Onda quadra - White noise wave + + + White noise Rumore bianco - User defined wave - Forma d'onda personalizzata + + + User-defined wave + Onda definita dall'utente - Smooth - Ammorbidisci + + + Smooth waveform + Spiana forma d'onda - Click here to smooth waveform. - Cliccando qui la forma d'onda viene ammorbidita. - - - Normalize - Normalizza - - - Click here to normalize waveform. - Cliccando qui la forma d'onda viene normalizzata. - - - Use a sine-wave for current oscillator. - Utilizzare un'onda sinusoidale per questo oscillatore. - - - Use a triangle-wave for current oscillator. - Utilizzare un'onda triangolare per questo oscillatore. - - - Use a saw-wave for current oscillator. - Utilizzare un'onda a dente di sega per questo oscillatore. - - - Use a square-wave for current oscillator. - Utilizzare un'onda quadra per questo oscillatore. - - - Use white-noise for current oscillator. - Utilizzare rumore bianco per questo oscillatore. - - - Use a user-defined waveform for current oscillator. - Utilizzare un'onda personalizzata per questo oscillatore. + + + Normalize waveform + Forma d'onda normale - voiceObject + VoiceObject + 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 + WaveShaperControlDialog + INPUT INPUT + Input gain: Guadagno in Input: + OUTPUT OUTPUT + Output gain: Guadagno in output: - Reset waveform - Resetta forma d'onda + + + Reset wavegraph + Reimposta grafico d'onda - Click here to reset the wavegraph back to default - Clicca qui per resettare il grafico d'onda alla condizione originale + + + Smooth wavegraph + Grafico d'onda piana - Smooth waveform - Spiana forma d'onda + + + Increase wavegraph amplitude by 1 dB + Incrementa ampiezza grafico d'onda di 1 dB - Click here to apply smoothing to wavegraph - Clicca qui per addolcire il grafico d'onda - - - Increase graph amplitude by 1dB - Aumenta l'amplificazione di 1dB - - - Click here to increase wavegraph amplitude by 1dB - Clicca qui per aumentare l'amplificazione del grafico d'onda di 1dB - - - Decrease graph amplitude by 1dB - Diminuisi l'amplificatore di 1dB - - - Click here to decrease wavegraph amplitude by 1dB - Clicca qui per diminuire l'amplificazione del grafico d'onda di 1dB + + + Decrease wavegraph amplitude by 1 dB + Decrementa ampiezza grafico d'onda di 1 dB + Clip input Taglia input - Clip input signal to 0dB - Taglia in segnale di input a 0dB + + Clip input signal to 0 dB + Segnale ingresso clip a 0 dB - waveShaperControls + WaveShaperControls + Input gain Guadagno in input + Output gain Guadagno in output - \ No newline at end of file + diff --git a/data/locale/ja.ts b/data/locale/ja.ts index b7c1a780c..e10ca5118 100644 --- a/data/locale/ja.ts +++ b/data/locale/ja.ts @@ -2,93 +2,112 @@ AboutDialog + About LMMS LMMS について - Version %1 (%2/%3, Qt %4, %5) - バージョン %1 (%2/%3, Qt %4, %5) - - - About - LMMS について - - - LMMS - easy music production for everyone - LMMS - 全ての人のための簡単な音楽制作 - - - Authors - 製作者 - - - Translation - 翻訳 - - - 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 - ライセンス - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + バージョン %1 (%2/%3, Qt %4, %5) + + + + About + LMMS について + + + + LMMS - easy music production for everyone. + LMMS - すべての人のためのDAW + + + + Copyright © %1. + Copyright © %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> + + + + Authors + 製作者 + + + Involved 関係者 + Contributors ordered by number of commits: コミット数順の貢献者一覧: - Copyright © %1 - Copyright © %1 + + Translation + 翻訳 - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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 + VOL 音量 + Volume: 音量: + PAN パン + Panning: パン: + LEFT + Left gain: 左ゲイン: + RIGHT + Right gain: 右ゲイン: @@ -96,18 +115,22 @@ If you're interested in translating LMMS in another language or want to imp AmplifierControls + Volume 音量 + Panning パン + Left gain 左ゲイン + Right gain 右ゲイン @@ -115,10 +138,12 @@ If you're interested in translating LMMS in another language or want to imp AudioAlsaSetupWidget + DEVICE デバイス + CHANNELS チャンネル @@ -126,85 +151,60 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorView - Open other sample - 他のサンプルを開く - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - 他のオーディオファイルを開きたいときは、ここをクリックしてください。ダイアログが表示され、ファイルを選択することができます。ループモード、開始/終了位置、増幅率などの設定はリセットされません。そのため、開いたファイルはオリジナルのサンプルとは異なる音になるかもしれません。 + + Open sample + サンプルを開く + Reverse sample サンプルを反転する - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - このボタンを有効にすると、全体のサンプルがリバースされます。例えばリバースド クラッシュのようなかっこいいエフェクトで役立ちます。 - - - Amplify: - 増幅: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - このつまみでは増幅率を設定することができます。この値を100%にするとサンプルは変化しません。そうでないときは増幅率が上下します。 (実際のサンプルファイルは変更されません!) - - - Startpoint: - 開始位置: - - - Endpoint: - 終了位置: - - - Continue sample playback across notes - 異なるノートへサンプルの再生を引き継ぐ - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - このオプションを有効にすると、異なるノートへサンプルの再生が引き継がれます。ピッチを変更するか、またはノートの長さがサンプルより短い場合は、ノートの終わったところから次のノートが再生されます。サンプルの最初から再生するようリセットするには、鍵盤の低い音階(20Hz未満)にノートを挿入してください。 - - + Disable loop ループを無効にする - This button disables looping. The sample plays only once from start to end. - このボタンはループ再生を無効にします。サンプルは一度だけ通しで再生されます。 - - + Enable loop ループを有効にする - This button enables forwards-looping. The sample loops between the end point and the loop point. - このボタンは正方向のループを有効にします。ループ開始位置から終了位置まで、サンプルが繰り返し再生されます。 + + Enable ping-pong loop + - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - このボタンはピンポンループを有効にします。ループ開始位置から終了位置まで、正方向・逆方向に交互にサンプルが繰り返し再生されます。 + + Continue sample playback across notes + 異なるノートへサンプルの再生を引き継ぐ - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - このノブで、サンプルの再生を開始する位置を設定することができます。 + + Amplify: + 増幅: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - このノブで、サンプルの再生を停止する位置を設定することができます。 + + Start point: + 開始点: + + End point: + 終了点: + + + Loopback point: ループバック位置: - - With this knob you can set the point where the loop starts. - このノブで、ループ再生の開始位置を設定することができます。 - AudioFileProcessorWaveView + Sample length: サンプルの長さ: @@ -212,447 +212,469 @@ If you're interested in translating LMMS in another language or want to imp 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 を再起動する必要があります。 + ごめんなさい…JACK サーバーがシャットダウンして、新しいインスタンスの開始に失敗したようです。そのために、LMMS が続行できません。今すぐプロジェクトを保存してJACK と LMMS を再起動してください。 - CLIENT-NAME - クライアント名 + + Client name + - CHANNELS - チャンネル + + Channels + - AudioOss::setupWidget + AudioOss - DEVICE - デバイス + + Device + - CHANNELS - チャンネル + + Channels + AudioPortAudio::setupWidget - BACKEND - バックエンド + + Backend + - DEVICE - デバイス + + Device + - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - デバイス + + Device + - CHANNELS - チャンネル + + Channels + AudioSdl::setupWidget - DEVICE - デバイス + + Device + - AudioSndio::setupWidget + AudioSndio - DEVICE - デバイス + + Device + - CHANNELS - チャンネル + + Channels + AudioSoundIo::setupWidget - BACKEND - バックエンド + + Backend + - DEVICE - デバイス + + 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 曲全体のオートメーションを編集 - Connected to %1 - %1 に接続済み - - - Connected to controller - コントローラーに接続済み - - - Edit connection... - 接続を編集... - - - Remove connection - 接続を削除 - - - Connect to controller... - コントローラーに接続... - - + Remove song-global automation 曲全体のオートメーションを削除 + Remove all linked controls リンクされたコントロールを全て削除 + + + Connected to %1 + %1 に接続済み + + + + Connected to controller + コントローラーに接続済み + + + + Edit connection... + 接続を編集... + + + + Remove connection + 接続を削除 + + + + Connect to controller... + コントローラーに接続... + AutomationEditor - Please open an automation pattern with the context menu of a control! + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip with the context menu of a control! コントロールのコンテキストメニューでオートメーションパターンを開いてください! - - Values copied - 値をコピーしました - - - All selected values were copied to the clipboard. - 選択された値はすべてクリップボードにコピーされました。 - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) 現在のパターンの再生/一時停止 (Space) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - クリックすると現在のパターンを再生します。これはパターン編集中に便利です。終了位置にくるとパターンは自動的にループされます。 - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) 現在のパターンの再生を停止 (Space) - Click here if you want to stop playing of the current pattern. - 現在のパターンの再生を停止するときは、ここをクリックしてください、 - - - Draw mode (Shift+D) - 描画モード (shift+D) - - - Erase mode (Shift+E) - 消去モード (shift+E) - - - Flip vertically - 左右反転 - - - Flip horizontally - 上下反転 - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - ここをクリックすると、パターンが反転されます。y 方向に反転されます。 - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - ここをクリックすると、パターンが反転されます。x 方向に反転されます。 - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - ここをクリックすると描画モードになります。このモードでは、ひとつずつ追加・移動することができます。これがデフォルトのモードですし、一番多く使うモードです。ショートカットキーは 'Shift+D' です。 - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - ここをクリックすると消去モードになります。このモードでは、ひとつずつ消去することができます。ショートカットキーは 'Shift+E' です。 - - - Discrete progression - - - - Linear progression - - - - Cubic Hermite progression - - - - Tension value for spline - - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - Cut selected values (%1+X) - 選択した値を切り取り (Shift+M) - - - Copy selected values (%1+C) - 選択した値をコピー (%1+C) - - - Paste values from clipboard (%1+V) - クリップボードから値を貼り付け (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - クリックすると選択した値をクリップボードにカットします。その値はペーストボタンを押すと任意のパターンの任意の場所にペーストできます。 - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - クリックすると選択した値をクリップボードにコピーします。その値はペーストボタンを押すと任意のパターンの任意の場所にペーストできます。 - - - Click here and the values from the clipboard will be pasted at the first visible measure. - クリックするとクリップボードの値が、最初の可視小節にペーストされます。 - - - Tension: - - - - Automation Editor - no pattern - オートメーション エディター - パターンなし - - - Automation Editor - %1 - オートメーション エディター - %1 - - + 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 補間コントロール - Timeline controls - タイムライン コントロール + + Discrete progression + 離散 + + Linear progression + 線形補間 + + + + Cubic Hermite progression + エルミート曲線 + + + + Tension value for spline + スプラインのテンション値 + + + + Tension: + テンション: + + + Zoom controls ズーム コントロール + + Horizontal zooming + 水平方向にズーム + + + + Vertical zooming + 垂直方向にズーム + + + Quantization controls クオンタイゼーション コントロール - Model is already connected to this pattern. - モデルは、すでにこのパターンに接続されています。 - - + Quantization クオンタイズ - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - + + + Automation Editor - no clip + オートメーション エディター - パターンなし + + + + + Automation Editor - %1 + オートメーション エディター - %1 + + + + Model is already connected to this clip. + モデルは、すでにこのパターンに接続されています。 - AutomationPattern + AutomationClip + Drag a control while pressing <%1> <%1>を押しながらコントロールをドラッグしてください - AutomationPatternView + AutomationClipView + Open in Automation editor オートメーション エディターで開く + Clear クリア + Reset name 名前をリセット + Change name 名前を変更 - %1 Connections - %1 個の接続 - - - Disconnect "%1" - "%1" を切断 - - + Set/clear record 録音をセット/クリア + Flip Vertically (Visible) 左右反転 + Flip Horizontally (Visible) 上下反転 - Model is already connected to this pattern. + + %1 Connections + %1 個の接続 + + + + Disconnect "%1" + "%1" を切断 + + + + Model is already connected to this clip. モデルは、すでにこのパターンに接続されています。 AutomationTrack + Automation track オートメーション トラック - BBEditor + PatternEditor + Beat+Bassline Editor ビート+ベースライン エディター + Play/pause current beat/bassline (Space) 現在のビート/ベースラインの再生/一時停止 (Space) + Stop playback of current beat/bassline (Space) 現在のビート/ベースラインの再生を停止 (Space) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - 現在のビート/ベースラインを再生するには、ここをクリックしてください。終了位置にくるとビート/ベースラインは自動的にループされます。 - - - Click here to stop playing of current beat/bassline. - 現在のビート/ベースラインの再生を停止するには、ここをクリックしてください。 - - - Add beat/bassline - ビート/ベースラインを追加 - - - Add automation-track - オートメーション トラックを追加 - - - Remove steps - ステップを削除 - - - Add steps - ステップを追加 - - + Beat selector ビート セレクター + Track and step actions + トラックとステップアクション + + + + Add beat/bassline + ビート/ベースラインを追加 + + + + Clone beat/bassline clip - Clone Steps - ステップを複製 - - + Add sample-track サンプルトラックを追加 + + + Add automation-track + オートメーション トラックを追加 + + + + Remove steps + ステップを削除 + + + + Add steps + ステップを追加 + + + + Clone Steps + ステップを複製 + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor ビート+ベースライン エディターで開く + Reset name 名前をリセット + Change name 名前を変更 - - Change color - 色を変更 - - - Reset color to default - 色をデフォルトにリセット - - BBTrack + PatternTrack + Beat/Bassline %1 ビート/ベースライン %1 + Clone of %1 %1の複製 @@ -660,26 +682,32 @@ If you're interested in translating LMMS in another language or want to imp BassBoosterControlDialog + FREQ 周波数 + Frequency: 周波数: + GAIN ゲイン + Gain: ゲイン: + RATIO レシオ + Ratio: レシオ: @@ -687,14 +715,17 @@ If you're interested in translating LMMS in another language or want to imp BassBoosterControls + Frequency 周波数 + Gain ゲイン + Ratio レシオ @@ -702,107 +733,2344 @@ If you're interested in translating LMMS in another language or want to imp BitcrushControlDialog + IN IN + OUT OUT + + GAIN ゲイン - Input Gain: + + Input gain: 入力ゲイン: - Input Noise: + + NOISE + ノイズ + + + + Input noise: 入力ノイズ: - Output Gain: + + Output gain: 出力ゲイン: + CLIP クリップ - Output Clip: + + Output clip: 出力クリップ - Rate Enabled + + Rate enabled Rateが有効です - Enable samplerate-crushing - + + Enable sample-rate crushing + サンプルレートクラシングを有効にする - Depth Enabled - Depthが有効です + + Depth enabled + 有効な深度 - Enable bitdepth-crushing - - - - Sample rate: - サンプルレート: - - - Stereo difference: - 位相 - - - Levels: - レベル: - - - NOISE - + + 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 + + + About Carla - QUANT + + About + LMMS について + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) - CaptionMenu + CarlaHostW + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + ファイル(&F) + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help ヘルプ(&H) - Help (not available) - ヘルプ (利用できません) + + toolBar + + + + + 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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - CarlaのGUIを表示/非表示するにはここをクリックしてください。 + + Settings + 設定 + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + パス + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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: + 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 @@ -810,58 +3078,73 @@ If you're interested in translating LMMS in another language or want to imp 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. 循環が検出されました。 @@ -869,18 +3152,22 @@ If you're interested in translating LMMS in another language or want to imp ControllerRackView + Controller Rack コントローラー ラック + Add 追加 + Confirm Delete 削除の確認 + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. 削除してもよいですか? このコントローラーに関連付けられた接続があります。削除すると元に戻す方法はありません。 @@ -888,116 +3175,158 @@ If you're interested in translating LMMS in another language or want to imp ControllerView + Controls コントロール - Controllers are able to automate the value of a knob, slider, and other controls. - コントローラーでは、つまみやスライダー、その他のコントロールの値を自動化することができます。 - - + Rename controller コントローラー名の変更 + Enter the new name for this controller コントローラーの新しい名前を入力してください + + LFO + LFO + + + &Remove this controller このコントローラーを取り外す (&R) + Re&name this controller このコントローラー名を変更 (&n) - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: - + + Band 1/2 crossover: + バンド1/2クロスオーバー: - Band 2/3 Crossover: - + + Band 2/3 crossover: + バンド 2/3 クロスオーバー: - Band 3/4 Crossover: - + + Band 3/4 crossover: + バンド 3/4 クロスオーバー: - Band 1 Gain: - バンド1 + + Band 1 gain + バンド 1 ゲイン - Band 2 Gain: - バンド2 + + Band 1 gain: + バンド 1 ゲイン: - Band 3 Gain: - バンド3 + + Band 2 gain + バンド 2 ゲイン - Band 4 Gain: - バンド4 + + Band 2 gain: + バンド 2 ゲイン: - Band 1 Mute - + + Band 3 gain + バンド 3 ゲイン - Mute Band 1 - + + Band 3 gain: + バンド 3 ゲイン: - Band 2 Mute - + + Band 4 gain + バンド 4 ゲイン - Mute Band 2 - + + Band 4 gain: + バンド 4 ゲイン - Band 3 Mute - + + Band 1 mute + バンド1ミュート - Mute Band 3 - + + Mute band 1 + バンド1をミュート - Band 4 Mute - + + Band 2 mute + バンド2 ミュート - Mute Band 4 - + + Mute band 2 + バンド2をミュート + + + + Band 3 mute + バンド3 ミュート + + + + Mute band 3 + バンド3をミュート + + + + Band 4 mute + バンド4 ミュート + + + + Mute band 4 + バンド4をミュート DelayControls - Delay Samples - + + Delay samples + ディレイサンプル + Feedback フィードバック - Lfo Frequency - LFO 周波数 + + LFO frequency + LFO周波数 - Lfo Amount - LFO 量 + + LFO amount + LFOの量 + Output gain 出力ゲイン @@ -1005,229 +3334,528 @@ If you're interested in translating LMMS in another language or want to imp DelayControlsDialog - Lfo Amt - LFO 量 + + DELAY + ディレイ - Delay Time + + Delay time ディレイ タイム - Feedback Amount + + FDBK + フィードバック + + + + Feedback amount フィードバック量 - Lfo - LFO + + RATE + モジュレーションスピード - Out Gain + + LFO frequency + LFO周波数 + + + + AMNT + AMNT + + + + LFO amount + LFOの量 + + + + Out gain 出力ゲイン + Gain ゲイン + + + Dialog - DELAY + + Add JACK Application - FDBK + + Note: Features not implemented yet are greyed out - RATE + + Application - AMNT - AMNT + + 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 - Filter 1 enabled - フィルタ1が有効です - - - Filter 2 enabled - フィルタ2が有効です - - - Click to enable/disable Filter 1 - クリックでフィルタ1を有効/無効 - - - Click to enable/disable Filter 2 - クリックでフィルタ2を有効/無効 - - + + 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 1 frequency - フィルタ1の周波数 + + Cutoff frequency 1 + カットオフ周波数 1 + Q/Resonance 1 - + Q/Resonance 1 + Gain 1 - + ゲイン 1 + Mix ミックス + Filter 2 enabled フィルタ2は有効 + Filter 2 type フィルタ2の種類 - Cutoff 2 frequency - + + Cutoff frequency 2 + カットオフ周波数 2 + Q/Resonance 2 - + Q/Resonance 2 + Gain 2 - + ゲイン 2 - LowPass - LowPass + + + Low-pass + ローパス - HiPass - HiPass + + + Hi-pass + ハイパス - BandPass csg - BandPass csg + + + Band-pass csg + バンドパス csg - BandPass czpg - BandPass cspg + + + Band-pass czpg + バンドパス czpg + + Notch Notch - Allpass - Allpass + + + All-pass + オールパス + + Moog Moog - 2x LowPass - 2x LowPass + + + 2x Low-pass + 2x ローパス - RC LowPass 12dB - RC LowPass 12dB + + + RC Low-pass 12 dB/oct + RC ローパス 12dB/オクターブ - RC BandPass 12dB - RC BandPass 12dB + + + RC Band-pass 12 dB/oct + RC バンドパス 12dB/オクターブ - RC HighPass 12dB - RC HighPass 12dB + + + RC High-pass 12 dB/oct + RC ハイパス 12dB/オクターブ - RC LowPass 24dB - RC LowPass 24dB + + + RC Low-pass 24 dB/oct + RC ローパス 24dB/オクターブ - RC BandPass 24dB - RC BandPass 24dB + + + RC Band-pass 24 dB/oct + RC バンドパス 24dB/オクターブ - RC HighPass 24dB - RC HighPass 24dB + + + RC High-pass 24 dB/oct + RC ハイパス 24dB/オクターブ - Vocal Formant Filter - Vocal Formant Filter - + + + Vocal Formant + ボーカル フォルマント + + 2x Moog 2x Moog - SV LowPass - SV LowPass + + + SV Low-pass + SV ローパス - SV BandPass - SV BandPass + + + SV Band-pass + SV バンドパス - SV HighPass - SV HighPass + + + SV High-pass + SV ハイパス + + SV Notch SV Notch + + Fast Formant Fast Formant + + Tripole Tripole @@ -1235,41 +3863,55 @@ If you're interested in translating LMMS in another language or want to imp Editor + + Transport controls + トランスポートコントロール + + + Play (Space) 再生 (Space) + Stop (Space) 停止 (Space) + Record 録音 + Record while playing - 再生しながら録音 + 再生&録音 - Transport controls + + Toggle Step Recording Effect + Effect enabled エフェクト有効 + Wet/Dry mix - + ウェット/ドライミックス + Gate - + ゲート + Decay ディケイ @@ -1277,6 +3919,7 @@ If you're interested in translating LMMS in another language or want to imp EffectChain + Effects enabled エフェクト有効 @@ -1284,10 +3927,12 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView + EFFECTS CHAIN エフェクトチェイン + Add effect エフェクトを追加 @@ -1295,22 +3940,28 @@ If you're interested in translating LMMS in another language or want to imp EffectSelectDialog + Add effect エフェクトを追加 + + Name 名前 + Type 種類 + Description 説明 + Author 製作者 @@ -1318,78 +3969,57 @@ If you're interested in translating LMMS in another language or want to imp EffectView - Toggles the effect on or off. - エフェクトのオン/オフを切り替えます。 - - + On/Off オン/オフ + W/D W/D + Wet Level: - - - - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - + ウェット + DECAY - + ディケイ + Time: 時間: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - - - + GATE ゲート + Gate: ゲート: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - - - + Controls コントロール - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - - - + Move &up 一つ上へ(&u) + Move &down 一つ下へ(&d) + &Remove this plugin このプラグインを削除(&R) @@ -1397,748 +4027,791 @@ Right clicking will bring up a context menu where you can change the order in wh EnvelopeAndLfoParameters - Predelay - + + Env pre-delay + Env プリディレイ - Attack - + + Env attack + Env アタック - Hold - Hold + + Env hold + Env ホールド - Decay - ディケイ + + Env decay + Env ディケイ - Sustain - Decay + + Env sustain + Env サステイン - Release - Release + + Env release + Env リリース - Modulation - + + Env mod amount + エンベロープモッド量 - LFO Predelay - LFO Predelay + + LFO pre-delay + LFOプレディレイ - LFO Attack - LFO speed + + LFO attack + LFOアタック - LFO speed - LFO speed + + LFO frequency + LFO周波数 - LFO Modulation - LFO Modulation + + LFO mod amount + LFOモッド量 - LFO Wave Shape - LFO Wave Shape + + LFO wave shape + LFO 波形 - Freq x 100 - Freq x 100 + + LFO frequency x 100 + LFO周波数 100倍 - Modulate Env-Amount - + + Modulate env amount + モデュレート エンベローブ 量 EnvelopeAndLfoView + + DEL ATT - Predelay: - - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - + + + Pre-delay: + プレディレイ: + + ATT ATT + + Attack: アタック: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - - - + HOLD HOLD + Hold: Hold: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - - - + DEC DEC + Decay: ディケイ: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - - - + SUST SUST + Sustain: サスティン: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - - - + REL - + REL + Release: リリース: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - - - + + AMT Hold: + + Modulation amount: Modulation amount: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - - - - LFO predelay: - LFO predelay: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - - - - LFO- attack: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - - - + SPD SPD - LFO speed: - LFO speed: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - - - - Click here for a sine-wave. - クリックしてサイン波を使用します。 - - - Click here for a triangle-wave. - クリックして三角波を使用します。 - - - Click here for a saw-wave for current. - クリックしてのこぎり波を使用します。 - - - Click here for a square-wave. - クリックして矩形波を使用します。 - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - クリックしてユーザー定義波形を使用します。その後サンプルファイルをLFOグラフ上へドラッグ&ドロップしてください。 + + Frequency: + 周波数: + FREQ x 100 FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. + + Multiply LFO frequency by 100 - multiply LFO-frequency by 100 - + + MODULATE ENV AMOUNT + モデュレートエンベロープ 量 - MODULATE ENV-AMOUNT - - - - Click here to make the envelope-amount controlled by this LFO. - - - - control envelope-amount by this LFO - + + Control envelope amount by this LFO + このLFOによるエンベローブ量を調節 + ms/LFO: ms/LFO: + Hint ヒント - Drag a sample from somewhere and drop it in this window. - - - - Click here for random wave. - クリックしてホワイトノイズを使用します。 + + Drag and drop a sample into this window. + サンプルをこのウィンドウにドラッグ & ドロップしてください。 EqControls + Input gain 入力ゲイン + Output gain 出力ゲイン - Low shelf gain - + + Low-shelf gain + ローシェルフ ゲイン + Peak 1 gain - + ピーク 1 ゲイン + Peak 2 gain - + ピーク 2 ゲイン + Peak 3 gain - + ピーク 3 ゲイン + Peak 4 gain - + ピーク 4 ゲイン - High Shelf gain - + + High-shelf gain + ハイシェルフ ゲイン + HP res - + HP res - Low Shelf 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 - + + High-shelf res + ハイシェルフ レゾナンス + LP res - + LP レゾナンス + HP freq - + HP 周波数 - Low Shelf freq - + + Low-shelf freq + ローシェルフ 周波数 + Peak 1 freq - + ピーク 1 周波数 + Peak 2 freq - + ピーク 2 周波数 + Peak 3 freq - + ピーク 3 周波数 + Peak 4 freq - + ピーク 4 周波数 - High shelf freq - + + High-shelf freq + ハイシェルフ 周波数 + LP freq - + LP 周波数 + HP active - + HP オン - Low shelf active - + + 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 - + + 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 - Low Passフィルターの種類 + + Low-pass type + ローパス 種類 - high pass type - High Passフィルターの種類 + + High-pass type + ハイパス 種類 + Analyse IN - + 分析 IN + Analyse OUT - + 分析 OUT EqControlsDialog + HP - + HP - Low Shelf - + + Low-shelf + ローシェルフ + Peak 1 - + ピーク 1 + Peak 2 - + ピーク 2 + Peak 3 - + ピーク 3 + Peak 4 - + ピーク 4 - High Shelf - + + High-shelf + ハイシェルフ + LP - + LP - In Gain - + + Input gain + 入力ゲイン + + + Gain ゲイン - Out Gain + + Output gain 出力ゲイン + Bandwidth: - + 帯域幅 + + Octave + オクターブ + + + Resonance : - + レゾナンス : + Frequency: 周波数: - lp grp - + + LP group + ローパスグループ - hp grp - - - - Octave - + + HP group + ハイパスグループ EqHandle + Reso: - + Reso + BW: - + BW : + + Freq: - + Freq : ExportProjectDialog + Export project プロジェクトをエクスポート - Output - 出力 - - - File format: - ファイルの形式: - - - Samplerate: - サンプルレート: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - ビットレート: - - - 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 - - - Depth: - ビット深度: - - - 16 Bit Integer - 16bit 整数 - - - 32 Bit Float - 32bit 浮動小数点数 - - - Quality settings - - - - Interpolation: - - - - Zero Order Hold - - - - Sinc Fastest - - - - Sinc Medium (recommended) - - - - Sinc Best (very slow!) - - - - Oversampling (use with care!): - - - - 1x (None) - - - - 2x - - - - 4x - - - - 8x - - - - Start - 開始 - - - Cancel - キャンセル - - - Export as loop (remove end silence) - ループとしてエクスポートする(最後の無音部分は除去) + + Export as loop (remove extra bar) + ループとしてエクスポート (余分なところは除去) + Export between loop markers ループのマーカー区間をエクスポートする - Could not open file - ファイルを開けません - - - Export project to %1 + + Render Looped Section: - Error - エラー - - - Error while determining file-encoder device. Please try to choose a different output format. + + time(s) - Rendering: %1% - + + File format settings + ファイルフォーマット設定 - 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! - + + File format: + ファイルの形式: - 24 Bit Integer - 24bit 整数 + + Sampling rate: + サンプルレート : - Use variable bitrate - 可変ビットレートを使用する + + 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 + 16 ビット + + + + 24 Bit integer + 24 ビット + + + + 32 Bit float + 32 ビット + + + Stereo mode: ステレオモード: - Stereo - ステレオ - - - Joint Stereo - ジョイントステレオ - - + Mono モノラル + + Stereo + ステレオ + + + + Joint stereo + ジョイントステレオ + + + Compression level: 圧縮レベル: - (fastest) - (最速) + + Bitrate: + ビットレート: - (default) - (デフォルト) + + 64 KBit/s + 64 KBit/s - (smallest) - (最小) - - - - Expressive - - Selected graph - 選択されたグラフ + + 128 KBit/s + 128 KBit/s - A1 - + + 160 KBit/s + 160 KBit/s - A2 - + + 192 KBit/s + 192 KBit/s - A3 - + + 256 KBit/s + 256 KBit/s - W1 smoothing - + + 320 KBit/s + 320 KBit/s - W2 smoothing - + + Use variable bitrate + 可変ビットレートを使用する - W3 smoothing - + + Quality settings + 品質設定 - PAN1 - + + Interpolation: + 補間 : - PAN2 - + + Zero order hold + ゼロ次ホールド - REL TRANS - + + Sinc worst (fastest) + 低品質 (最速) + + + + Sinc medium (recommended) + 中品質 (おすすめ) + + + + Sinc best (slowest) + 最高品質 (最低速) + + + + 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 の間の新しい値を入力してください: @@ -2146,14 +4819,27 @@ Please make sure you have write permission to the file and the directory contain FileBrowser + + User content + + + + + Factory content + + + + Browser ブラウザ + Search 検索 + Refresh list リストの更新 @@ -2161,206 +4847,622 @@ Please make sure you have write permission to the file and the directory contain FileBrowserTreeWidget + Send to active instrument-track + 現在開いているインストゥルメントトラックに上書きする + + + + Open containing folder - Open in new instrument-track/B+B 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 サンプルを読み込み中 + Please wait, loading sample for preview... - - - - --- Factory files --- - - - - Open in new instrument-track/Song Editor - + プレビュー用のサンプルを読み込んでいます... + Error エラー - does not appear to be a valid + + %1 does not appear to be a valid %2 file - file - + + --- Factory files --- + --- ファクトリーファイル --- FlangerControls - Delay Samples - + + Delay samples + ディレイサンプル - Lfo Frequency - LFO 周波数 + + LFO frequency + LFO周波数 + Seconds + + + + + Stereo phase + Regen + Noise ノイズ + Invert - + 反転 FlangerControlsDialog - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - + 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 - Period: + + + 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 - FxLine + MixerLine + Channel send amount - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - + 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 + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + Master - FX %1 + + + + Channel %1 FX %1 + Volume 音量 + Mute ミュート + Solo ソロ - FxMixerView + MixerView - FX-Mixer + + Mixer エフェクトミキサー - FX Fader %1 + + Fader %1 + Mute ミュート - Mute this FX channel + + Mute this mixer channel このFXチャンネルをミュート + Solo ソロ - Solo FX channel + + Solo mixer channel - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 @@ -2368,14 +5470,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument + Bank - + バンク + Patch パッチ + Gain ゲイン @@ -2383,46 +5488,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - Open other GIG file - 他のGIGファイルを開く - - - Click here to open another GIG file - ここをクリックして他のGIGファイルを開きます。 - - - Choose the patch - パッチを選択 - - - Click here to change which patch of the GIG file to use - ここをクリックして使用するGIGファイルのパッチを変更 - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - 現在使用されているGIGファイルのパッチ - - - Gain - ゲイン - - - Factor to multiply samples by - - - + + Open GIG file GIG ファイルを開く + + Choose patch + パッチを選択してください + + + + Gain: + ゲイン: + + + GIG Files (*.gig) GIG ファイル (*.gig) @@ -2430,42 +5512,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 オートメーション エディター の準備中 @@ -2473,650 +5565,798 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio + Arpeggio + Arpeggio type + Arpeggio range - Arpeggio time + + Note repeats - Arpeggio gate - - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - ランダム - - - Free - - - - Sort - ソート - - - Sync - 同期 - - - Down and up + + Cycle steps + Skip rate Skip rate + Miss rate Miss rate - Cycle steps + + Arpeggio time + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + ランダム + + + + Free + + + + + Sort + ソート + + + + Sync + 同期 + InstrumentFunctionArpeggioView + ARPEGGIO アルペジオ - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - + RANGE RANGE + Arpeggio range: + octave(s) オクターブ - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. + + REP - TIME + + Note repeats: - Arpeggio time: - - - - ms - ms - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - - - - GATE - ゲート - - - Arpeggio gate: - - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - Chord: - コード: - - - Direction: - - - - Mode: - モード: - - - SKIP - スキップ - - - Skip rate: - - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - MISS - - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. + + time(s) + CYCLE + Cycle notes: + note(s) ノート - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + 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 - + ドリア旋法 - Phrygolydian - + + Phrygian + フリギア旋法 + Lydian - + 教会旋法 + Mixolydian - + ミクソリディア旋法 + Aeolian - + エオリア旋法 + Locrian - - - - Chords - - - - Chord type - - - - Chord range - + ロクリアン旋法 + Minor Minor + Chromatic - + クロマティック + Half-Whole Diminished + 5 5 + Phrygian dominant + Persian + + + Chords + + + + + Chord type + + + + + Chord range + + InstrumentFunctionNoteStackingView - RANGE - RANGE - - - Chord range: - - - - octave(s) - オクターブ - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - - + STACKING + Chord: コード: + + + RANGE + RANGE + + + + Chord range: + + + + + octave(s) + オクターブ + InstrumentMidiIOView + ENABLE MIDI INPUT MIDI入力を有効にする - CHANNEL - チャンネル - - - VELOCITY - 速度 - - + ENABLE MIDI OUTPUT MIDI出力を有効にする - PROGRAM - プログラム + + + 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 - NOTE - - - + CUSTOM BASE VELOCITY - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + BASE VELOCITY @@ -3124,137 +6364,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView + MASTER PITCH - Enables the use of 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 - LowPass - LowPass + + Low-pass + ローパス - HiPass - HiPass + + Hi-pass + ハイパス - BandPass csg - BandPass csg + + Band-pass csg + バンドパス csg - BandPass czpg - BandPass cspg + + Band-pass czpg + バンドパス czpg + Notch Notch - Allpass - Allpass + + All-pass + オールパス + Moog Moog - 2x LowPass - 2x LowPass + + 2x Low-pass + 2x ローパス - RC LowPass 12dB - RC LowPass 12dB + + RC Low-pass 12 dB/oct + RC ローパス 12dB/オクターブ - RC BandPass 12dB - RC BandPass 12dB + + RC Band-pass 12 dB/oct + RC バンドパス 12dB/オクターブ - RC HighPass 12dB - RC HighPass 12dB + + RC High-pass 12 dB/oct + RC ハイパス 12dB/オクターブ - RC LowPass 24dB - RC LowPass 24dB + + RC Low-pass 24 dB/oct + RC ローパス 24dB/オクターブ - RC BandPass 24dB - RC BandPass 24dB + + RC Band-pass 24 dB/oct + RC バンドパス 24dB/オクターブ - RC HighPass 24dB - RC HighPass 24dB + + RC High-pass 24 dB/oct + RC ハイパス 24dB/オクターブ - Vocal Formant Filter - Vocal Formant Filter + + Vocal Formant + ボーカル フォルマント + 2x Moog 2x Moog - SV LowPass - SV LowPass + + SV Low-pass + SV ローパス - SV BandPass - SV BandPass + + SV Band-pass + SV バンドパス - SV HighPass - SV HighPass + + SV High-pass + SV ハイパス + SV Notch SV Notch + Fast Formant Fast Formant + Tripole Tripole @@ -3262,50 +6536,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView + TARGET 対象 - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - + FILTER フィルタ - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - - - - RESO - レゾナンス - - - Resonance: - レゾナンス: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - + FREQ 周波数 - cutoff frequency: - Cutoff周波数: + + Cutoff frequency: + カットオフ周波数: + + Hz + Hz + + + + Q/RESO + レゾナンス + + + + Q/Resonance: + レゾナンス + + + Envelopes, LFOs and filters are not supported by the current instrument. エンベロープ、LFOやフィルターなどの操作は現在の楽器プラグインではサポートされていません。 @@ -3313,222 +6579,345 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack + + unnamed_track 新規トラック - Volume - 音量 - - - Panning - パニング - - - Pitch - ピッチ - - - FX channel - FXチャンネル - - - Default preset - Default preset - - - With this knob you can set the volume of the opened channel. - - - + Base note + + First note + + + + + Last note + 最後に使用したノート + + + + Volume + 音量 + + + + Panning + パニング + + + + Pitch + ピッチ + + + Pitch range ピッチ範囲 - Master Pitch - マスターピッチ + + Mixer channel + FXチャンネル + + + + Master pitch + 主ピッチ + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + Default preset InstrumentTrackView + Volume 音量 + Volume: 音量: + VOL 音量 + Panning パニング + Panning: パニング: + PAN - PAN + パニング + MIDI MIDI + Input 入力 + Output 出力 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS 一般設定 - Instrument volume - 楽器の音量 + + Volume + 音量 + Volume: 音量: + VOL 音量 + Panning パニング + Panning: パニング: + PAN パニング + Pitch ピッチ + Pitch: ピッチ: + cents cent + PITCH ピッチ - FX channel - FXチャンネル - - - FX - FX - - - Save preset - プリセットを保存 - - - XML preset file (*.xpf) - XML プリセット ファイル (*.xpf) - - + Pitch range (semitones) ピッチ範囲 (半音) + RANGE RANGE + + Mixer channel + FXチャンネル + + + + CHANNEL + FX + + + Save current instrument track settings in a preset file - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - - - - Use these controls to view and edit the next/previous track in the song editor. - - - + SAVE 保存 + Envelope, filter & LFO + Chord stacking & arpeggio + Effects - + エフェクト - MIDI settings - MIDI 設定 + + 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 + + + + + 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 - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: + + + 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 チャンネルをリンクする @@ -3536,10 +6925,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlDialog + Link Channels チャンネルをリンクする + Channel チャンネル @@ -3547,28 +6938,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView + Link channels チャンネルをリンクする + Value: - - Sorry, no help available. - 申し訳ありませんがヘルプはありません。 - 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 の間の新しい値を入力してください: @@ -3576,49 +6985,64 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 @@ -3626,115 +7050,131 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoControllerDialog + LFO LFO - LFO Controller - LFOコントローラ - - + BASE BASE - Base amount: - Base amount: - - - todo + + Base: - SPD - LFO predelay: + + FREQ + 周波数 - LFO-speed: + + LFO frequency: - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - + + AMNT + AMNT + Modulation amount: Modulation amount: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - + PHS - + PHS + Phase offset: - degrees + + degrees - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. + + Sine wave + サイン波 + + + + Triangle wave + 三角波 + + + + Saw wave + のこぎり波 + + + + Square wave + 矩形波 + + + + Moog saw wave - Click here for a sine-wave. - クリックしてサイン波を使用します。 - - - Click here for a triangle-wave. - クリックして三角波を使用します。 - - - Click here for a saw-wave. + + Exponential wave - Click here for a square-wave. - クリックして矩形波を使用します。 - - - Click here for an exponential wave. + + White noise - Click here for white-noise. - - - - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - ユーザー定義波形については、ここをクリックしてください。 -ダブルクリックしてファイルを選択します。 - - - Click here for a moog saw-wave. - AMNT - AMNT + + Mutliply modulation frequency by 1 + + + + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + - LmmsCore + Engine + Generating wavetables + Initializing data structures + Opening audio and midi devices - + オーディオ・MIDIデバイスを開いています + Launching mixer threads @@ -3742,396 +7182,510 @@ Double click to pick a file. 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 ヘルプ - What's this? - これは何? - - + 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 ソング エディター - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - このボタンを押すとソング エディターの表示/非表示を切り替えます。ソング エディターの利用によってプレイリストとどのトラックをいつ演奏するかを編集することができます。プレイリストの中で直接サンプルを挿入したり移動(例:ラップサンプル)したりすることもできます。 - - + + Beat+Bassline Editor ビート+ベースライン エディター - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - このボタンでを押すとビート+ベースライン エディターの表示/非表示を切り替えます。ビート+ベースライン エディターで、ビートをつくったり、チャンネルを開いたり追加したり削除したり、ベースラインパターンを切り取り・コピー・貼り付けたり色々できます。 - - + + Piano Roll ピアノロール - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - ここをクリックしてピアノロールの表示/非表示を切り替えます。ピアノロールを使うとメロディを簡単に編集できます。 - - + + Automation Editor オートメーション エディター - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - ここをクリックしてオートメーション エディターの表示/非表示を切り替えます。オートメーション エディターで動的な値を簡単に編集できます。 - - - FX Mixer + + + Mixer エフェクトミキサー - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - ここをクリックしてエフェクトミキサーの表示/非表示を切り替えます。エフェクトミキサーは曲のエフェクトを管理する強力なツールです。エフェクトを異なったエフェクトチャンネルに挿入することができます。 + + Show/hide controller rack + コントローラー ラック の表示/非表示 - Project Notes - プロジェクトノート - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - ここをクリックしてノートウインドウの表示/非表示を切り替えます。ノートウインドウにプロジェクトノートを記入します。 - - - 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のドキュメントがあります。 - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) + + Controller Rack + コントローラー ラック - Version %1 - バージョン %1 + + Project Notes + プロジェクトノート - Configuration file - 設定ファイル - - - Error while parsing configuration file at line %1:%2: %3 - 設定ファイルの%1行目%2列目でパースエラー: %3 - - - Volumes - 音量 - - - Undo - 元に戻す - - - Redo - やり直し - - - My Projects - マイ プロジェクト - - - My Samples - マイ サンプル - - - My Presets - マイ プリセット - - - My Home - マイ ホーム - - - My Computer - マイ コンピュータ - - - &File - ファイル(&F) - - - &Recently Opened Projects - 最近開いたプロジェクト (&R) - - - Save as New &Version - 新規保存 (&V) - - - E&xport Tracks... - トラックをエクスポート (&x)... - - - Online Help - オンラインヘルプ - - - What's This? - これは何? - - - Open Project - プロジェクトを開く - - - Save Project - プロジェクトを保存 - - - 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. - - - - Preparing plugin browser - - - - Preparing file browsers - - - - Root directory - - - - Loading background artwork - - - - New from template - テンプレートから新規プロジェクト作成 - - - Save as default template - デフォルトのテンプレートとして保存 - - - &View - - - - Toggle metronome - - - - Show/hide Song-Editor - ソング エディター の表示/非表示 - - - Show/hide Beat+Bassline Editor - ビート+ベースライン エディター の表示/非表示 - - - Show/hide Piano-Roll - ピアノロールの表示/非表示 - - - Show/hide Automation Editor - オートメーション エディター の表示/非表示 - - - Show/hide FX Mixer - エフェクトミキサーの表示/非表示 - - - Show/hide project notes - プロジェクトノートの表示/非表示 - - - Show/hide controller rack - コントローラー ラック の表示/非表示 - - - Recover session. Please save your work! - - - - 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? - - - - LMMS Project - - - - LMMS Project Template - - - - Overwrite default template? - デフォルトのテンプレートに上書きしますか? - - - This will overwrite your current default template. - - - - Smooth scroll - - - - Enable note labels in piano roll - ピアノロールに音階を表示 - - - Save project template + + Fullscreen + Volume as dBFS 音量を dBFS で表示 - Could not open file - ファイルを開くことができませんでした + + Smooth scroll + 滑らかにスクロール - 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! - + + Enable note labels in piano roll + ピアノロールに音階を表示 - Export &MIDI... - + + 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 拍子 @@ -4139,21 +7693,44 @@ Please make sure you have write permission to the file and the directory contain MeterModel + Numerator + Denominator + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController + MIDI Controller MIDIコントローラ + unnamed_midi_controller 名称未設定_MIDI_コントローラ @@ -4161,560 +7738,955 @@ Please make sure you have write permission to the file and the directory contain MidiImport + + Setup incomplete セットアップの未完了 - You do not have 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 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. - Track + + 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 + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + ファイル(&F) + + + + &Edit + 編集(&E) + + + + &Quit + 終了(&Q) + + + + &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イベントを送信 - - Fixed output note - - - - Base velocity - - MidiSetupWidget - DEVICE - デバイス + + Device + MonstroInstrument - Osc 1 Volume - Osc 1 の音量 + + Osc 1 volume + オシレーター 1 の音量 - Osc 1 Panning + + Osc 1 panning + オシレーター 1 のパン + + + + Osc 1 coarse detune - Osc 1 Coarse detune + + Osc 1 fine detune left - Osc 1 Fine detune left + + Osc 1 fine detune right - Osc 1 Fine detune right + + Osc 1 stereo phase offset - Osc 1 Stereo phase offset + + Osc 1 pulse width - Osc 1 Pulse width + + Osc 1 sync send on rise - Osc 1 Sync send on rise + + Osc 1 sync send on fall - Osc 1 Sync send on fall + + Osc 2 volume + オシレーター 2 の音量 + + + + Osc 2 panning + オシレーター 2 のパン + + + + Osc 2 coarse detune - Osc 2 Volume - Osc 2 の音量 - - - Osc 2 Panning + + Osc 2 fine detune left - Osc 2 Coarse detune + + Osc 2 fine detune right - Osc 2 Fine detune left + + Osc 2 stereo phase offset - Osc 2 Fine detune right + + Osc 2 waveform + オシレーター 2 の波形 + + + + Osc 2 sync hard - Osc 2 Stereo phase offset + + Osc 2 sync reverse - Osc 2 Waveform - Osc 2 の波形 + + Osc 3 volume + オシレーター 3 の音量 - Osc 2 Sync Hard - - - - Osc 2 Sync Reverse - - - - Osc 3 Volume - Osc 3 の音量 - - - Osc 3 Panning - - - - Osc 3 Coarse detune + + Osc 3 panning + オシレーター 3 のパン + + + + Osc 3 coarse detune + Osc 3 Stereo phase offset - Osc 3 Sub-oscillator mix + + Osc 3 sub-oscillator mix - Osc 3 Waveform 1 - Osc 3 の波形 1 + + Osc 3 waveform 1 + オシレーター 3 の波形 1 - Osc 3 Waveform 2 - Osc 3 の波形 2 + + Osc 3 waveform 2 + オシレーター 3 の波形 2 - Osc 3 Sync Hard + + Osc 3 sync hard - Osc 3 Sync Reverse + + Osc 3 Sync reverse - LFO 1 Waveform + + LFO 1 waveform LFO 1 の波形 - LFO 1 Attack + + LFO 1 attack + LFO 1 のアタック + + + + LFO 1 rate - LFO 1 Rate + + LFO 1 phase - LFO 1 Phase - - - - LFO 2 Waveform + + LFO 2 waveform LFO 2 の波形 - LFO 2 Attack + + LFO 2 attack + LFO 2 のアタック + + + + LFO 2 rate - LFO 2 Rate + + LFO 2 phase - LFO 2 Phase + + 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 - - - - Osc2-3 modulation + + Osc 2+3 modulation + Selected view + 選択された表示 + + + + Osc 1 - Vol env 1 - Vol1-Env1 + + Osc 1 - Vol env 2 - Vol1-Env2 + + Osc 1 - Vol LFO 1 - Vol1-LFO1 + + Osc 1 - Vol LFO 2 - Vol1-LFO2 + + Osc 2 - Vol env 1 - Vol2-Env1 + + Osc 2 - Vol env 2 - Vol2-Env2 + + Osc 2 - Vol LFO 1 - Vol2-LFO1 + + Osc 2 - Vol LFO 2 - Vol2-LFO2 + + Osc 3 - Vol env 1 - Vol3-Env1 + + Osc 3 - Vol env 2 - Vol3-Env2 + + Osc 3 - Vol LFO 1 - Vol3-LFO1 + + Osc 3 - Vol LFO 2 - Vol3-LFO2 + + Osc 1 - Phs env 1 - Phs1-Env1 + + Osc 1 - Phs env 2 - Phs1-Env2 + + Osc 1 - Phs LFO 1 - Phs1-LFO1 + + Osc 1 - Phs LFO 2 - Phs1-LFO2 + + Osc 2 - Phs env 1 - Phs2-Env1 + + Osc 2 - Phs env 2 - Phs2-Env2 + + Osc 2 - Phs LFO 1 - Phs2-LFO1 + + Osc 2 - Phs LFO 2 - Phs2-LFO2 + + Osc 3 - Phs env 1 - Phs3-Env1 + + Osc 3 - Phs env 2 - Phs3-Env2 + + Osc 3 - Phs LFO 1 - Phs3-LFO1 + + Osc 3 - Phs LFO 2 - Phs3-LFO2 + + Osc 1 - Pit env 1 - Pit1-Env1 + + Osc 1 - Pit env 2 - Pit1-Env2 + + Osc 1 - Pit LFO 1 - Pit1-LFO1 + + Osc 1 - Pit LFO 2 - Pit1-LFO2 + + Osc 2 - Pit env 1 - Pit2-Env1 + + Osc 2 - Pit env 2 - Pit2-Env2 + + Osc 2 - Pit LFO 1 - Pit2-LFO1 + + Osc 2 - Pit LFO 2 - Pit2-LFO2 + + Osc 3 - Pit env 1 - Pit3-Env1 + + Osc 3 - Pit env 2 - Pit3-Env2 + + Osc 3 - Pit LFO 1 - Pit3-LFO1 + + Osc 3 - Pit LFO 2 - Pit3-LFO2 + + Osc 1 - PW env 1 - PW1-Env1 + + Osc 1 - PW env 2 - PW1-Env2 + + Osc 1 - PW LFO 1 - PW1-LFO1 + + Osc 1 - PW LFO 2 - PW1-LFO2 + + Osc 3 - Sub env 1 - Sub3-Env1 + + Osc 3 - Sub env 2 - Sub3-Env2 + + Osc 3 - Sub LFO 1 - Sub3-LFO1 - - - - Sub3-LFO2 + + 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 @@ -4722,278 +8694,240 @@ Please make sure you have write permission to the file and the directory contain MonstroView + Operators view - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - + Matrix view - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - オシレーター2 の波形を選択してください。 - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - + + + Volume 音量 + + + Panning パニング + + + Coarse detune - + Coarse デチューン + + + semitones - Finetune left + + + Fine tune left + + + + cents + セント + + + + + Fine tune right - Finetune 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 @@ -5001,314 +8935,593 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator MultitapEchoControlDialog + Length Length + Step length: Step length: + Dry Dry - Dry Gain: - Dry Gain: + + Dry gain: + + Stages + ステージ + + + + Low-pass stages: - Lowpass stages: - - - + Swap inputs - Swap left and right input channel for reflections + + Swap left and right input channels for reflections NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune - Channel 1 Volume - チャンネル 1 の音量 + + Channel 1 volume + チャンネル1の音量 - Channel 1 Envelope length + + Channel 1 envelope length - Channel 1 Duty cycle + + Channel 1 duty cycle - Channel 1 Sweep amount + + Channel 1 sweep amount - Channel 1 Sweep rate + + Channel 1 sweep rate + Channel 2 Coarse detune + Channel 2 Volume チャンネル 2 の音量 - Channel 2 Envelope length + + Channel 2 envelope length - Channel 2 Duty cycle + + Channel 2 duty cycle - Channel 2 Sweep amount + + Channel 2 sweep amount - Channel 2 Sweep rate + + Channel 2 sweep rate - Channel 3 Coarse detune + + Channel 3 coarse detune - Channel 3 Volume - チャンネル 3 の音量 + + Channel 3 volume + チャンネル3の音量 - Channel 4 Volume - チャンネル 4 の音量 + + Channel 4 volume + チャンネル4の音量 - Channel 4 Envelope length + + Channel 4 envelope length - Channel 4 Noise frequency + + Channel 4 noise frequency - Channel 4 Noise frequency sweep + + 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 + + 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 volume - Osc %1 の音量 - - - Osc %1 panning - - - - 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 - - - + 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 キャンセル @@ -5316,77 +9529,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - 他のパッチを開く - - - Click here to open another patch-file. Loop and Tune settings are not reset. + + Open patch + Loop + Loop mode - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - - - + Tune + Tune mode - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - - - + No file selected ファイルが選択されてません + Open patch file パッチファイルを開く + Patch-Files (*.pat) パッチファイル (*.pat) - PatternView + MidiClipView + Open in piano-roll ピアノロールで開く + + Set as ghost in piano-roll + + + + Clear all notes すべてのノートをクリア + Reset name 名前をリセット + Change name 名前を変更 + Add steps ステップを追加 + Remove steps ステップを削除 + Clone Steps ステップを複製 @@ -5394,14 +9615,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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. @@ -5409,10 +9633,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK PEAK + LFO Controller LFOコントローラー @@ -5420,327 +9646,519 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog + BASE BASE - Base amount: - Base amount: - - - Modulation amount: - Modulation amount: - - - Attack: - アタック: - - - Release: - リリース: + + Base: + + AMNT AMNT + + Modulation amount: + Modulation amount: + + + MULT MULT - Amount Multiplicator: + + Amount multiplicator: + ATCK ATCK + + Attack: + アタック: + + + DCAY ATCK + + Release: + リリース: + + + + TRSH + TRSH + + + Treshold: スレショルド: - TRSH - TRSH + + Mute output + + + + + Absolute value + PeakControllerEffectControls + Base value + Modulation amount Modulation amount - Mute output - - - + Attack - + アタック + Release Release - Abs Value - - - - Amount Multiplicator - - - + Treshold + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - パターン上でダブルクリックして、パターンを開いてください! - - - Last note - 最後に使用したノート - - - Note lock - ノートロック - - + Note Velocity - + ノートのベロシティー + Note Panning - + ノートのパン + Mark/unmark current semitone - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - - Velocity: %1% - 音量: %1% - - - Panning: %1% left - パニング: %1%左 - - - Panning: %1% right - パニング: %1%右 - - - Panning: center - パニング: 中央 - - - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: - - + 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 pattern (Space) + + 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 pattern (Space) + + Stop playing of current clip (Space) 現在のパターンの再生を停止 (Space) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - 現在のパターンを再生するには、ここをクリックしてください。これはパターン編集中に便利です。終了位置にくるとパターンは自動的にループされます。 - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - - - - Draw mode (Shift+D) - 描画モード (shift+D) - - - Erase mode (Shift+E) - 消去モード (shift+E) - - - Select mode (Shift+S) - 選択モード (Shift+S) - - - Detune mode (Shift+T) - - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - - - - Copy selected notes (%1+C) - - - - Paste notes from clipboard (%1+V) - - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - - - + Edit actions 編集機能 - Copy paste controls + + 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 pattern + + + Piano-Roll - no clip ピアノロール - パターン無し - Quantize - クオンタイズ + + + 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" の読み込みに失敗しました! @@ -5748,221 +10166,1292 @@ Reason: "%2" PluginBrowser + + Instrument Plugins + 楽器プラグイン + + + Instrument browser 楽器ブラウザ + Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. 楽器をソング エディターやビート+ベースライン エディターまたは存在する楽器トラックにドラッグしてください。 - Instrument Plugins + + 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 + + + + + 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 + + + + + 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 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 - LMMS plugin %1 does not have a plugin descriptor named %2! + + 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 + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: ProjectNotes - 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)... - - + 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-File (*.wav) - WAV ファイル (*.wav) + + WAV (*.wav) + WAV (*.wav) - Compressed OGG-File (*.ogg) - 圧縮 OGG ファイル (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin - Compressed MP3-File (*.mp3) - + + Show GUI + GUI を表示 + + + + Help + ヘルプ 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 - File: %1 - ファイル: %1 + + &Recently Opened Projects + 最近開いたプロジェクト (&R) RenameDialog + Rename... 名前の変更... @@ -5970,795 +11459,1717 @@ Reason: "%2" ReverbSCControlDialog + Input 入力 - Input Gain: + + Input gain: 入力ゲイン: + Size + Size: + Color + Color: + Output 出力 - Output Gain: + + Output gain: 出力ゲイン: ReverbSCControls - Input Gain - + + Input gain + 入力ゲイン + Size + Color - Output Gain + + 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 - Open audio file - オーディオファイルを開く - - - 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) - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - すべてのオーディオファイル (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - + 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) - SampleTCOView + SampleClipView - double-click to select sample - ダブルクリックでサンプル選択 + + 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 - Sample track - サンプルトラック - - + Volume 音量 + Panning パニング + + + Mixer channel + FXチャンネル + + + + + Sample track + サンプルトラック + SampleTrackView + Track volume トラック音量 + Channel volume: チャンネル音量: + VOL 音量 + Panning パニング + Panning: パニング: + PAN - 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 - Setup LMMS - LMMS 設定 + + Reset to default value + 規定値にリセット - General settings - 一般設定 - - - BUFFER SIZE - バッファ サイズ - - - Reset to default-value - デフォルト値にリセット - - - MISC - その他 - - - Enable tooltips - ツールチップを有効にする - - - Show restart warning after changing settings - 設定変更後に再起動の警告を表示する - - - Compress project files per default - プロジェクトファイルの圧縮をデフォルトにする - - - One instrument track window mode + + Use built-in NaN handler - HQ-mode for output audio-device + + Settings + 設定 + + + + + General - Compact track buttons - トラックのボタンをコンパクトに表示する - - - Sync VST plugins to host playback - - - - Enable note labels in piano roll - ピアノロールに音階を表示 - - - Enable waveform display by default - デフォルトで波形表示を有効にする - - - Keep effects running even without input - - - - Create backup file when saving a project - プロジェクトを保存したときバックアップファイルを作成する - - - LANGUAGE - 言語 - - - Paths - パス - - - LMMS working directory - LMMSの作業ディレクトリ - - - VST-plugin directory - VSTプラグインのディレクトリ - - - Background artwork - - - - STK rawwave directory - STK rawwaveのディレクトリ - - - Default Soundfont File - デフォルトのサウンドフォントファイル - - - Performance settings - パフォーマンス設定 - - - UI effects vs. performance - - - - Smooth scroll in Song Editor - ソング エディターでスムーススクロールする - - - Show playback cursor in AudioFileProcessor - - - - Audio settings - オーディオ設定 - - - AUDIO INTERFACE - オーディオインターフェース - - - MIDI settings - MIDI 設定 - - - MIDI INTERFACE - MIDI インターフェース - - - OK - OK - - - Cancel - キャンセル - - - Restart LMMS - LMMSを再起動 - - - Please note that most changes won't take effect until you restart LMMS! - - - - Frames: %1 -Latency: %2 ms - - - - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - LMMS の作業ディレクトリを選択してください - - - Choose your VST-plugin directory - VST プラグインのディレクトリを選択してください - - - Choose artwork-theme directory - アートワークテーマのディレクトリを選択してください - - - Choose LADSPA plugin directory - LADSPA プラグインのディレクトリを選択してください - - - Choose STK rawwave directory - STK rawwaveのディレクトリを選択してください - - - Choose default SoundFont - デフォルトのサウンドフォントを選択してください - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - 起動時に前回のプロジェクトを開く - - - Directories - - - - Themes directory - - - - GIG directory - - - - SF2 directory - - - - LADSPA plugin directories - LADSPA プラグイン ディレクトリ - - - Auto save - 自動保存 - - - Choose your GIG directory - - - - Choose your SF2 directory - - - - minutes - - - - minute + + Graphical user interface (GUI) + Display volume as dBFS 音量を dBFS で表示する - Enable auto-save - 自動保存を有効にする + + Enable tooltips + ツールチップを有効にする - Allow auto-save while playing - 再生中の自動保存を許可する + + 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 + + + Cutoff frequency + カットオフ周波数 + + + + Resonance + レゾナンス + + + + Filter type + フィルターの種類 + + + + Voice 3 off - Auto-save interval: %1 - 自動保存の間隔: %1 + + Volume + 音量 - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + 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 + + + Close + 閉じる + Song + Tempo テンポ + Master volume マスター音量 + Master pitch 主ピッチ - 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 - すべてのファイル - - - Empty project - 空のプロジェクト - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! + + Aborting project load - Select directory for writing exported tracks... - エクスポートされたトラックの書き込み先のディレクトリを選択... - - - untitled - 無題 - - - Select file for project-export... - プロジェクトをエクスポートするファイルを選択してください... - - - The following errors occured while loading: - 読み込み中に以下のエラーが発生しました: - - - MIDI File (*.mid) + + 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) - Save project - プロジェクトを保存 + + 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. + ファイルを読み込む権限がないため %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 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. + + 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. - - - - Tempo - テンポ - - - TEMPO/BPM - テンポ/BPM - - - tempo of song - 曲のテンポ - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - High quality mode - 高品質モード - - - Master volume - マスター音量 - - - master volume - マスター音量 - - - Master pitch - 主ピッチ - - - master pitch - 主 ピッチ - - - Value: %1% - - - - Value: %1 semitones - - - - 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. - - - - template - テンプレート - - - project - プロジェクト + ファイル %1 はエラーを含んでいるようで、読み込めません。 + Version difference バージョンの相違 - This %1 was created with LMMS %2. - %1 は LMMS %2 で作成されたものです。 + + template + テンプレート + + + + project + プロジェクト + + + + Tempo + テンポ + + + + TEMPO + テンポ + + + + Tempo in BPM + + + + + High quality mode + 高品質モード + + + + + + Master volume + マスター音量 + + + + + + Master pitch + 主ピッチ + + + + Value: %1% + 値: %1% + + + + Value: %1 semitones + SongEditorWindow + Song-Editor ソング エディター + Play song (Space) 曲を再生 (Space) + Record samples from Audio-device - + オーディオデバイスからサンプルを録音 + Record samples from Audio-device while playing song or BB track + Stop song (Space) 曲を停止 (Space) - Add beat/bassline - ビート/ベースラインを追加 - - - Add sample-track - サンプルトラックを追加 - - - Add automation-track - オートメーション トラックを追加 - - - Draw mode - 描画モード - - - Edit mode (select and move) - 編集モード (選択と移動) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - + 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 ズームコントロール - - - SpectrumAnalyzerControlDialog - Linear spectrum + + Horizontal zooming + 水平方向にズーム + + + + Snap controls - Linear Y axis + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - + + Hint + ヒント - Linear Y axis - - - - Channel mode + + Move recording curser using <Left/Right> arrows SubWindow + Close - + 閉じる + Maximize - + 最大化 + Restore - + 復元 TabWidget + + Settings for %1 %1の設定 + + TemplatesMenu + + + New from template + テンプレートから新規プロジェクト作成 + + TempoSyncKnob + + Tempo Sync テンポの同期 + 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 8ビートに同期 + Synced to Whole Note 全音符に同期 + Synced to Half Note 2分音符に同期 + Synced to Quarter Note 4分音符に同期 + Synced to 8th Note 8分音符に同期 + Synced to 16th Note 16分音符に同期 + Synced to 32nd Note 32分音符に同期 @@ -6766,76 +13177,88 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units - 時間単位を変更するにはクリック + + Time units + + MIN - + + SEC - + + MSEC - + ミリ秒 + BAR - + 小節 + BEAT - + + TICK - + ティック TimeLineWidget - Enable/disable auto-scrolling - 自動スクロールを有効/無効 + + Auto scrolling + 自動でスクロール - Enable/disable loop-points - - - - After stopping go back to begin + + 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. - - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - + <%1> を押してマグネチックループポイントを無効にします。 Track + Mute ミュート + Solo ソロ @@ -6843,305 +13266,492 @@ Remember to also save your project manually. You can choose to disable saving wh 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... お待ちください... - Importing MIDI-file... - MIDIファイルをインポートしています... + + Loading cancelled + 読み込みがキャンセルされました + + Project loading was cancelled. + プロジェクトの読み込みはキャンセルされました。 + + + Loading Track %1 (%2/Total %3) トラックの読み込み中 %1 (%2/Total %3) + + + Importing MIDI-file... + MIDIファイルをインポートしています... + - TrackContentObject + Clip + Mute ミュート - TrackContentObjectView + ClipView + Current position 現在位置 - Hint - ヒント - - - Press <%1> and drag to make a copy. - コピーするには<%1>を押しながらドラッグしてください。 - - + Current length 現在の長さ - Press <%1> for free resizing. - フリーズ解除には<%1>を押してください。 - - + + %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> + 中ボタンクリック) + ミュート/ミュート解除 (<%1> + 中ボタンクリック) + + + + 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. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Actions for this track + + Actions + + Mute ミュート + + Solo ソロ - Mute this track - このトラックをミュート + + 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 このトラックをクリア - FX %1: %2 + + Channel %1: %2 FX %1: %2 - Turn all recording on - - - - Turn all recording off - - - - Assign to new FX Channel + + 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 + + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - オシレーター1をオシレーター2で変調するために位相変調を使用します - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - オシレーター1をオシレーター2で変調するために振幅変調を使用します - - - Mix output of oscillator 1 & 2 + + 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 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - オシレーター1をオシレーター2で変調するために周波数変調を使用します - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - オシレーター2をオシレーター3で変調するために位相変調を使用します - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - オシレーター2をオシレーター3で変調するために振幅変調を使用します - - - Mix output of oscillator 2 & 3 + + 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 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - オシレーター2をオシレーター3で変調するために周波数変調を使用します - - + Osc %1 volume: Osc %1 の音量: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - - - + Osc %1 panning: - - - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - + オシレーター %1 パニング: + Osc %1 coarse detuning: - + オシレータ―の %1 コースデチューン: + semitones - - - - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - + 半音 + Osc %1 fine detuning left: - + オシレーター %1 のファインデチューン 左: + + cents cent - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 fine detuning right: - - - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - + オシレーター %1 のファインデチューン 右: + Osc %1 phase-offset: - + オシレーター %1 のオフセットフェーズ : + + degrees - - - - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - + 度数 + Osc %1 stereo phase-detuning: + オシレーター %1 のステレオ フェーズデチューン : + + + + Sine wave + サイン波 + + + + Triangle wave + 三角波 + + + + Saw wave + のこぎり波 + + + + Square wave + 矩形波 + + + + Moog-like saw wave - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. + + Exponential wave - Use a sine-wave for current oscillator. - サイン波を現在のオシレータで使用します。 + + White noise + - Use a triangle-wave for current oscillator. - 三角波を現在のオシレータで使用します。 + + User-defined wave + ユーザー定義波形 + + + + VecControls + + + Display persistence amount + - Use a saw-wave for current oscillator. - のこぎり波を現在のオシレータで使用します。 + + Logarithmic scale + - Use a square-wave for current oscillator. - 矩形波を現在のオシレータで使用します。 + + High quality + + + + + VecControlsDialog + + + HQ + - Use a moog-like saw-wave for current oscillator. - Moogライクなのこぎり波を現在のオシレータで使用します。 + + Double the resolution and simulate continuous analog-like trace. + - Use an exponential wave for current oscillator. - 指数関数的な波形を現在のオシレータで使用します。 + + Log. scale + - Use white-noise for current oscillator. - ホワイトノイズを現在のオシレータで使用します。 + + Display amplitude on logarithmic scale to better see small values. + - Use a user-defined waveform for current oscillator. - ユーザー定義波形を現在のオシレータで使用します。 + + 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? すでに存在しています。置き換えますか? @@ -7149,156 +13759,117 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - Open other VST-plugin - 他のVSTプラグインを開く + + + Open VST plugin + VSTプラグインを開く - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. + + Control VST plugin from LMMS host - Show/hide GUI - GUIを表示/非表示 - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - ここをクリックしてVSTプラグインのグラフィカルユーザーインターフェース(GUI)の表示/非表示を切り替えます。 - - - Turn off all notes - - - - Open VST-plugin - VST プラグインを開く - - - DLL-files (*.dll) - DLL ファイル (*.dll) - - - EXE-files (*.exe) - EXE ファイル (*.exe) - - - No VST-plugin loaded - VSTプラグインは読み込まれていません - - - Control VST-plugin from LMMS host - LMMSホストからVSTプラグインをコントロール - - - Click here, if you want to control VST-plugin from host. - ホストからVSTプラグインをコントロールしたいときは、ここをクリックしてください。 - - - Open VST-plugin preset - VST プラグイン プリセットを開く - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - VSTプラグインの他のプリセット(ファイル形式 *.fxp, *.fxb)を開きたいときは、ここをクリックしてください。 + + Open VST plugin preset + VSTプラグインのプリセットを開く + Previous (-) 前 (-) - Click here, if you want to switch to another VST-plugin preset program. - VSTプラグインの他のプリセットプログラムに変更したいときは、ここをクリックしてください。 - - + Save preset プリセットを保存 - Click here, if you want to save current VST-plugin preset program. - VSTプラグインの現在のプリセットプログラムを保存したいときは、ここをクリックしてください。 - - + Next (+) 次 (+) - Click here to select presets that are currently loaded in VST. - VSTに現在 読み込まれているプリセットを選択するには、ここをクリックしてください。 + + Show/hide GUI + GUIを表示/非表示 + + Turn off all notes + すべてのノートをオフ + + + + DLL-files (*.dll) + DLL ファイル (*.dll) + + + + EXE-files (*.exe) + EXE ファイル (*.exe) + + + + No VST plugin loaded + VSTプラグインは読み込まれていません + + + Preset プリセット + by + - VST plugin control - VST プラグイン コントロール - - VisualizationWidget - - click to enable/disable visualization of master-output - - - - Click to enable - 有効にするにはここをクリック - - VstEffectControlDialog + Show/hide 表示/非表示 - Control VST-plugin from LMMS host - LMMSホストからVSTプラグインをコントロール + + Control VST plugin from LMMS host + - Click here, if you want to control VST-plugin from host. - ホストからVSTプラグインをコントロールしたいときは、ここをクリックしてください。 - - - Open VST-plugin preset - VST プラグイン プリセットを開く - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - VSTプラグインの他のプリセット(ファイル形式 *.fxp, *.fxb)を開きたいときは、ここをクリックしてください。 + + Open VST plugin preset + VSTプラグインのプリセットを開く + Previous (-) 前 (-) - Click here, if you want to switch to another VST-plugin preset program. - VSTプラグインの他のプリセットプログラムに変更したいときは、ここをクリックしてください。 - - + Next (+) 次 (+) - Click here to select presets that are currently loaded in VST. - VSTに現在 読み込まれているプリセットを選択するには、ここをクリックしてください。 - - + Save preset プリセットを保存 - Click here, if you want to save current VST-plugin preset program. - VSTプラグインの現在のプリセットプログラムを保存したいときは、ここをクリックしてください。 - - + + Effect by: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7306,173 +13877,207 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - Loading plugin - プラグインを読み込み中 + + + 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 - Please wait while loading VST plugin... - VSTプラグインの読み込みの間お待ちください... + + Loading plugin + プラグインを読み込み中 - The VST plugin %1 could not be loaded. - VSTプラグイン %1 は読み込めません。 + + 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 選択されたグラフ @@ -7480,2773 +14085,2251 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - Select oscillator A1 - - - - Select oscillator A2 - - - - Select oscillator B1 - - - - Select oscillator B2 - - - - Mix output of A2 to A1 - - - - Modulate amplitude of A1 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with output of B2 - - - - Draw your own waveform here by dragging your mouse on this graph. - グラフの上でマウスをドラッグして波形を描きます。 - - - Load waveform - 波形の読み込み - - - Click to load a waveform from a sample file - サンプル ファイルから波形を読み込むにはクリックしてください。 - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - ノーマライズ - - - Click to normalize - ノーマライズするにはここをクリック - - - Invert - - - - Click to invert - - - - Smooth - - - - Click to smooth - - - - Sine wave - サイン波 - - - Click for sine wave - - - - Triangle wave - 三角波 - - - Click for triangle wave - - - - Click for saw wave - - - - Square wave - 矩形波 - - - Click for square wave - - - + + + + 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 + 矩形波 + + + + Xpressive + + + Selected graph + 選択されたグラフ + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + パン 1 + + + + Panning 2 + パン 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: + オシレーター 1 のパン: + + + + O2 panning: + オシレーター 2 のパン + + + + Release transition: + + + + + Smoothness + + ZynAddSubFxInstrument + Portamento - Filter Frequency + + Filter frequency - Filter Resonance + + Filter resonance + Bandwidth - FM Gain + + FM gain - Resonance Center Frequency + + Resonance center frequency - Resonance Bandwidth + + Resonance bandwidth - Forward MIDI Control Change Events + + Forward MIDI control change events ZynAddSubFxView - Show GUI - GUI を表示 - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - ここをクリックしてZynAddSubFXのグラフィカルユーザーインターフェース(GUI)の表示/非表示を切り替えます。 - - + Portamento: + PORT - Filter Frequency: + + Filter frequency: + FREQ 周波数 - Filter Resonance: + + Filter resonance: + RES + Bandwidth: + BW - FM Gain: + + FM gain: + FM GAIN + Resonance center frequency: + RES CF + Resonance bandwidth: + RES BW - Forward MIDI Control Changes + + Forward MIDI control changes + + + Show GUI + GUI を表示 + - audioFileProcessor + AudioFileProcessor + Amplify + Start of sample - + サンプルの開始位置 + End of sample - - - - Reverse sample - サンプルをリバース - - - Stutter - + サンプルの終了位置 + Loopback point + + Reverse sample + サンプルをリバース + + + Loop mode + + Stutter + + + + Interpolation mode + None + Linear + Sinc + Sample not found: %1 - + サンプルが見つかりませんでした: %1 - bitInvader + BitInvader - Samplelength + + Sample length サンプルの長さ - bitInvaderView + BitInvaderView - Sample Length + + Sample length サンプルの長さ - Sine wave - サイン波 - - - Triangle wave - 三角波 - - - Saw wave - のこぎり波 - - - Square wave - 矩形波 - - - White noise wave - ホワイトノイズ波 - - - User defined wave - ユーザー定義波形 - - - Smooth - - - - Click here to smooth waveform. - - - - Interpolation - - - - Normalize - ノーマライズ - - + Draw your own waveform here by dragging your mouse on this graph. グラフの上でマウスをドラッグして波形を描きます。 - Click for a sine-wave. + + + Sine wave + サイン波 + + + + + Triangle wave + 三角波 + + + + + Saw wave + のこぎり波 + + + + + Square wave + 矩形波 + + + + + White noise - Click here for a triangle-wave. - クリックして三角波を使用します。 - - - Click here for a saw-wave. - - - - Click here for a square-wave. - クリックして矩形波を使用します。 - - - Click here for white-noise. - - - - Click here for a user-defined shape. - ユーザー定義波形については、ここをクリックしてください。 - - - - dynProcControlDialog - - INPUT - 入力 - - - Input gain: - 入力ゲイン: - - - OUTPUT - 出力 - - - Output gain: - 出力ゲイン: - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Reset waveform - 波形をリセット - - - Click here to reset the wavegraph back to default - + + + User-defined wave + ユーザー定義波形 + + Smooth waveform - Click here to apply smoothing to wavegraph + + Interpolation - Increase wavegraph amplitude by 1dB + + Normalize + ノーマライズ + + + + DynProcControlDialog + + + INPUT + 入力 + + + + Input gain: + 入力ゲイン: + + + + OUTPUT + 出力 + + + + Output gain: + 出力ゲイン: + + + + ATTACK - Click here to increase wavegraph amplitude by 1dB + + Peak attack time: - Decrease wavegraph amplitude by 1dB + + RELEASE - Click here to decrease wavegraph amplitude by 1dB + + Peak release time: - Stereomode Maximum + + + 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 - Stereomode Average + + Stereo mode: average + Process based on the average of both stereo channels - Stereomode Unlinked + + Stereo mode: unlinked + Process each stereo channel independently - dynProcControls + DynProcControls + Input gain 入力ゲイン + Output gain 出力ゲイン + Attack time + Release time + Stereo mode ステレオモード - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - - - - Sine wave - サイン波 - - - Click for a sine-wave. - - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - - - - Click for an exponential wave. - - - - Saw wave - のこぎり波 - - - Click here for a saw-wave. - - - - User defined wave - ユーザー定義波形 - - - Click here for a user-defined shape. - ユーザー定義波形については、ここをクリックしてください。 - - - Triangle wave - 三角波 - - - Click here for a triangle-wave. - クリックして三角波を使用します。 - - - Square wave - 矩形波 - - - Click here for a square-wave. - クリックして矩形波を使用します。 - - - White noise wave - ホワイトノイズ波 - - - Click here for white-noise. - - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - - - - O2 panning: - - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - Assign to: - - - - New FX Channel - - - graphModel + Graph グラフ - kickerInstrument + KickerInstrument + Start frequency + End frequency - Gain - ゲイン - - + Length 長さ - Distortion Start + + Start distortion - Distortion End + + End distortion - Envelope Slope + + Gain + ゲイン + + + + Envelope slope + Noise ノイズ + Click - Frequency Slope + + Frequency slope + Start from note + End to note - kickerInstrumentView + KickerInstrumentView + Start frequency: + End frequency: + + Frequency slope: + + + + Gain: ゲイン: - Frequency Slope: + + Envelope length: - Envelope Length: - - - - Envelope Slope: + + Envelope slope: + Click: + Noise: ノイズ: - Distortion Start: + + Start distortion: - Distortion End: + + End distortion: - ladspaBrowserView + LadspaBrowserView + + Available Effects 利用可能なエフェクト + + Unavailable Effects 利用不可なエフェクト + + Instruments 楽器 + + Analysis Tools 解析ツール + + Don't know 不明なツール - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - - - + Type: 種類: - ladspaDescription + LadspaDescription + Plugins プラグイン + Description 説明 - ladspaPortDialog + LadspaPortDialog + Ports + Name 名前 + Rate レート + Direction 向き + Type 種類 + Min < Default < Max 最小 < デフォルト < 最大 + Logarithmic + SR Dependent + Audio オーディオ + Control コントロール + Input 入力 + Output 出力 + Toggled + Integer 整数 + Float - + フロート + + Yes はい - lb302Synth + 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 + 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 + MalletsInstrument + Hardness + Position 位置 - Vibrato Gain + + Vibrato gain - Vibrato Freq + + Vibrato frequency - Stick Mix + + Stick mix + Modulator + Crossfade - LFO Speed - - - - LFO Depth + + LFO speed + LFO speed + + + + LFO depth + ADSR - + ADSR + Pressure + Motion + Speed 速さ + Bowed + Spread + Marimba マリンバ + Vibraphone ビブラフォン + Agogo アゴゴ - Wood1 + + Wood 1 + Reso - Wood2 + + Wood 2 + Beats - Two Fixed + + Two fixed + Clump - Tubular Bells + + Tubular bells - Uniform Bar + + Uniform bar - Tuned Bar + + Tuned bar + Glass - Tibetan Bowl + + Tibetan bowl - malletsInstrumentView + 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: 位置: - Vib Gain + + Vibrato gain - Vib Gain: + + Vibrato gain: - Vib Freq + + Vibrato frequency - Vib Freq: + + Vibrato frequency: - Stick Mix + + Stick mix - Stick Mix: + + Stick mix: + Modulator + Modulator: + Crossfade + Crossfade: - LFO Speed + + LFO speed + LFO speed + + + + LFO speed: + LFO speed: + + + + LFO depth - LFO Speed: - - - - LFO Depth - - - - LFO Depth: + + LFO depth: + ADSR - + ADSR + ADSR: - + ADSR: + Pressure + Pressure: + Speed 速さ + Speed: 速さ: - - Missing files - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Stkのインストールが未完了のようです。Stkパッケージがすべてインストールされていることを確認してください! - - manageVSTEffectView + ManageVSTEffectView + - VST parameter control - VST パラメータ コントロール - VST Sync - VST同期 - - - Click here if you want to synchronize all parameters with VST plugin. - すべてのパラメータをVSTプラグインと同期したいときは、ここをクリックしてください。 + + VST sync + VSTを同期 + + Automated オートメーション済 - Click here if you want to display automated parameters only. - オートメーション適用済のパラメータだけを表示したいときは、ここをクリックしてください。 - - + Close 閉じる - - Close VST effect knob-controller window. - VSTエフェクトの、ノブ コントローラー ウインドウ を閉じます。 - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - VST プラグイン コントロール + VST Sync VST同期 - Click here if you want to synchronize all parameters with VST plugin. - すべてのパラメータをVSTプラグインと同期したいときは、ここをクリックしてください。 - - + + Automated オートメーション済 - Click here if you want to display automated parameters only. - オートメーション適用済のパラメータだけを表示したいときは、ここをクリックしてください。 - - + Close 閉じる - - Close VST plugin knob-controller window. - VSTプラグインの、ノブ コントローラー ウインドウ を閉じます。 - - opl2instrument - - Patch - パッチ - - - Op 1 Attack - - - - Op 1 Decay - - - - Op 1 Sustain - - - - Op 1 Release - - - - Op 1 Level - - - - Op 1 Level Scaling - - - - Op 1 Frequency Multiple - - - - Op 1 Feedback - - - - Op 1 Key Scaling Rate - - - - Op 1 Percussive Envelope - - - - Op 1 Tremolo - - - - Op 1 Vibrato - - - - Op 1 Waveform - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - - - - Vibrato Depth - - - - Tremolo Depth - - - - - opl2instrumentView - - Attack - - - - Decay - ディケイ - - - Release - Release - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion - + ディストーション + Volume 音量 - organicInstrumentView + OrganicInstrumentView + Distortion: + Volume: 音量: + Randomise + + Osc %1 waveform: Osc %1 の波形: + Osc %1 volume: Osc %1 の音量: + Osc %1 panning: - - - - cents - cent - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - + オシレーター %1 パニング: + Osc %1 stereo detuning + + cents + cent + + + Osc %1 harmonic: - FreeBoyInstrument - - Sweep time - - - - Sweep direction - - - - Sweep RtShift amount - - - - Wave Pattern Duty - - - - 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の音量 - - - 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 - ベース - - - Shift Register width - - - - - FreeBoyInstrumentView - - Sweep Time: - - - - Sweep Time - - - - Sweep RtShift amount: - - - - Sweep RtShift amount - - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - - - - Length of each step in sweep: - - - - Length of each step in sweep - - - - Wave pattern duty - - - - Square Channel 2 Volume: - - - - Square Channel 2 Volume - - - - Wave Channel Volume: - - - - Wave 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 - - - - Channel1 to SO1 (Right) - - - - Channel2 to SO1 (Right) - - - - Channel3 to SO1 (Right) - - - - Channel4 to SO1 (Right) - - - - Channel1 to SO2 (Left) - - - - Channel2 to SO2 (Left) - - - - Channel3 to SO2 (Left) - - - - Channel4 to SO2 (Left) - - - - Wave Pattern - 波のパターン - - - The amount of increase or decrease in frequency - - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - - - - Draw the wave here - ここに波形を描きます - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank - + バンク + Program selector + Patch パッチ + Name 名前 + OK OK + Cancel キャンセル - pluginBrowser - - no description - 説明なし - - - Incomplete monophonic imitation tb303 - - - - Plugin for freely manipulating stereo output - ステレオ出力を自由に操作するプラグイン - - - Plugin for controlling knobs with sound peaks - サウンドのピークをつまみでコントロールするプラグイン - - - Plugin for enhancing stereo separation of a stereo input file - - - - List installed LADSPA plugins - インストールされている LADSPA プラグインの一覧 - - - GUS-compatible patch instrument - - - - Additive Synthesizer for organ-like sounds - - - - Tuneful things to bang on - - - - VST-host for using VST(i)-plugins within LMMS - - - - Vibrating string modeler - - - - plugin for using arbitrary LADSPA-effects inside LMMS. - 任意の LADSPA エフェクトを LMMS で使用するためのプラグイン。 - - - Filter for importing MIDI-files into LMMS - - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - - - - Player for SoundFont files - サウンドフォント ファイル用プレイヤー - - - Emulation of GameBoy (TM) APU - - - - Customizable wavetable synthesizer - - - - Embedded ZynAddSubFX - - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - - - - LMMS port of sfxr - - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - - - - Carla Rack Instrument - - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - - - - plugin for using arbitrary VST effects inside LMMS. - - - - Graphical spectrum analyzer plugin - - - - A NES-like synthesizer - - - - A native delay plugin - - - - Player for GIG files - GIG ファイル用プレイヤー - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - - - - Reverb algorithm by Sean Costello - - - - Mathematical expression parser - - - - - sf2Instrument + Sf2Instrument + Bank - + バンク + Patch パッチ + Gain ゲイン + Reverb リバーブ - Reverb Roomsize + + Reverb room size + ルームサイズ + + + + Reverb damping + 残響 + + + + Reverb width - Reverb Damping - - - - Reverb Width - - - - Reverb Level - + + Reverb level + リバーブのレベル + Chorus コーラス - Chorus Lines + + Chorus voices - Chorus Level + + Chorus level - Chorus Speed + + Chorus speed - Chorus Depth + + Chorus depth + A soundfont %1 could not be loaded. - + サウンドフォント %1 を読み込めませんでした。 - sf2InstrumentView - - Open other SoundFont file - 他のサウンドフォント ファイルを開く - - - Click here to open another SF2 file - ここをクリックすると他のSF2 ファイルを開きます。 - - - Choose the patch - パッチを選択 - - - Gain - ゲイン - - - Apply reverb (if supported) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - このボタンでリバーブを有効にします。クールなエフェクトには有効ですが、リバーブをサポートしたSF2にしか効果がありません。 - - - Reverb Roomsize: - - - - Reverb Damping: - - - - Reverb Width: - - - - Reverb Level: - - - - Apply chorus (if supported) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - このボタンでコーラスを有効にします。クールなエフェクトには有効ですが、リバーブをサポートしたSF2にしか効果がありません。 - - - Chorus Lines: - - - - Chorus Level: - - - - Chorus Speed: - - - - Chorus Depth: - - + Sf2InstrumentView + + Open SoundFont file サウンドフォント ファイルを開く - SoundFont2 Files (*.sf2) + + 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 - sfxrInstrument + StereoEnhancerControlDialog - Wave Form - 波形 - - - - sidInstrument - - Cutoff - カットオフ - - - Resonance - レゾナンス - - - Filter type - フィルターの種類 - - - Voice 3 off - - - - Volume - 音量 - - - Chip model - - - - - sidInstrumentView - - Volume: - 音量: - - - Resonance: - レゾナンス: - - - Cutoff frequency: - - - - High-Pass filter - High-Passフィルター - - - Band-Pass filter - Band-Passフィルター - - - Low-Pass filter - Low-Passフィルター - - - Voice3 Off - - - - MOS6581 SID - MOS6581 SID - - - MOS8580 SID - MOS8580 SID - - - Attack: - アタック: - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - - - - Decay: - ディケイ: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - Sustain: - サスティン: - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - Release: - リリース: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - Pulse Width: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - Coarse: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - Pulse Wave - パルス波 - - - Triangle Wave - 三角波 - - - SawTooth - のこぎり波 - - - Noise - ノイズ - - - Sync - 同期 - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - Ring-Mod - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - Filtered - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - フィルタがONなら、ボイス %1 はフィルタを通って処理されます。フィルタがオフならボイス %1 は直接出力に送られてフィルタは出力に適用されません。 - - - Test - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - - - - - stereoEnhancerControlDialog - - WIDE + + WIDTH + Width: - stereoEnhancerControls + StereoEnhancerControls + Width - stereoMatrixControlDialog + StereoMatrixControlDialog + Left to Left Vol: 左から左の音量: + Left to Right Vol: 左から右の音量: + Right to Left Vol: 右から左の音量: + Right to Right Vol: 右から右の音量: - stereoMatrixControls + StereoMatrixControls + Left to Left 左から左 + Left to Right 左から右 + Right to Left 右から左 + Right to Right 右から右 - vestigeInstrument + VestigeInstrument + Loading plugin プラグインを読み込んでいます - Please wait while loading VST-plugin... - VSTプラグインを読み込む間お待ちください... + + Please wait while loading the VST plugin... + VSTプラグインの読み込みの間はお待ちください... - vibed + Vibed + String %1 volume ストリング %1 の音量 + String %1 stiffness + Pick %1 position + Pickup %1 position - Pan %1 - パニング %1 - - - Detune %1 + + String %1 panning - Fuzziness %1 + + String %1 detune - Length %1 - 長さ %1 + + String %1 fuzziness + + + String %1 length + + + + Impulse %1 - + インパルス %1 - Octave %1 - オクターブ %1 + + String %1 + - vibedView + VibedView - Volume: - 音量: - - - The 'V' knob sets the volume of the selected string. + + String volume: + String stiffness: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - - - + Pick position: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - - - + Pickup position: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. + + String panning: - Pan: - パニング: - - - The Pan knob determines the location of the selected string in the stereo field. + + String detune: - Detune: + + String fuzziness: - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. + + String length: - Fuzziness: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - - - - Length: - 長さ: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - Impulse or initial state - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. + + Impulse + Octave オクターブ - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - - - + Impulse Editor - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - - - + Enable waveform 波形を有効 - Click here to enable/disable waveform. + + Enable/disable string + String - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - - - + + Sine wave サイン波 + + Triangle wave 三角波 + + Saw wave のこぎり波 + + Square wave 矩形波 - White noise wave - ホワイトノイズ波 + + + White noise + - User defined wave + + + User-defined wave ユーザー定義波形 - Smooth + + + Smooth waveform - Click here to smooth waveform. - - - - Normalize - ノーマライズ - - - Click here to normalize waveform. - ここをクリックすると波形をノーマライズします。 - - - Use a sine-wave for current oscillator. - サイン波を現在のオシレータで使用します。 - - - Use a triangle-wave for current oscillator. - 三角波を現在のオシレータで使用します。 - - - Use a saw-wave for current oscillator. - のこぎり波を現在のオシレータで使用します。 - - - Use a square-wave for current oscillator. - 矩形波を現在のオシレータで使用します。 - - - Use white-noise for current oscillator. - ホワイトノイズを現在のオシレータで使用します。 - - - Use a user-defined waveform for current oscillator. - ユーザー定義波形を現在のオシレータで使用します。 + + + Normalize waveform + 波形をノーマライズ - voiceObject + 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 + WaveShaperControlDialog + INPUT 入力 + Input gain: 入力ゲイン: + OUTPUT 出力 + Output gain: 出力ゲイン: - Reset waveform + + + Reset wavegraph 波形をリセット - Click here to reset the wavegraph back to default + + + Smooth wavegraph - Smooth waveform + + + Increase wavegraph amplitude by 1 dB - Click here to apply smoothing to wavegraph - - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB + Clip input - + 入力信号をクリップ - Clip input signal to 0dB - + + Clip input signal to 0 dB + 入力信号を0 dBでクリップさせる - waveShaperControls + WaveShaperControls + Input gain 入力ゲイン + Output gain 出力ゲイン - \ No newline at end of file + diff --git a/data/locale/ka.ts b/data/locale/ka.ts new file mode 100644 index 000000000..1956d8d04 --- /dev/null +++ b/data/locale/ka.ts @@ -0,0 +1,16326 @@ + + + AboutDialog + + + About LMMS + + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + + + + + About + + + + + LMMS - easy music production for everyone. + + + + + Copyright © %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> + + + + + Authors + + + + + Involved + + + + + Contributors ordered by number of commits: + + + + + Translation + + + + + 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! + + + + + License + + + + + AmplifierControlDialog + + + 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 + + + + + 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 + + + + + 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 + + + + + CarlaAboutW + + + About Carla + + + + + About + + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + + + + + toolBar + + + + + 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 + + + + + Ctrl+N + + + + + &Open... + + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + + + + + 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. + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + 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 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: + + + + + 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 + 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! + + + + + 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% + + + + + Fader + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + 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 + + + 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 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 + + + + + + Major + + + + + Majb5 + + + + + minor + + + + + minb5 + + + + + sus2 + + + + + sus4 + + + + + aug + + + + + augsus4 + + + + + tri + + + + + 6 + 6 + + + + 6sus4 + + + + + 6add9 + + + + + m6 + + + + + m6add9 + + + + + 7 + 7 + + + + 7sus4 + + + + + 7#5 + 7#5 + + + + 7b5 + + + + + 7#9 + 7#9 + + + + 7b9 + + + + + 7#5#9 + 7#5#9 + + + + 7#5b9 + + + + + 7b5b9 + + + + + 7add11 + + + + + 7add13 + + + + + 7#11 + 7#11 + + + + Maj7 + + + + + Maj7b5 + + + + + Maj7#5 + + + + + Maj7#11 + + + + + Maj7add13 + + + + + m7 + + + + + m7b5 + + + + + m7b9 + + + + + m7add11 + + + + + m7add13 + + + + + m-Maj7 + + + + + m-Maj7add11 + + + + + m-Maj7add13 + + + + + 9 + 9 + + + + 9sus4 + + + + + add9 + + + + + 9#5 + 9#5 + + + + 9b5 + + + + + 9#11 + 9#11 + + + + 9b13 + + + + + Maj9 + + + + + Maj9sus4 + + + + + Maj9#5 + + + + + Maj9#11 + + + + + m9 + + + + + madd9 + + + + + m9b5 + + + + + m9-Maj7 + + + + + 11 + 11 + + + + 11b9 + + + + + Maj11 + + + + + m11 + + + + + m-Maj11 + + + + + 13 + 13 + + + + 13#9 + 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 + 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 + + + + + InstrumentMiscView + + + 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 + + + + 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 + + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + 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 + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + 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... + + + + + &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) + + + + + 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 + + + + + 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 + + + + 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) + + + + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 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 + + + 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 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 + + + + + OK + + + + + Cancel + გაუქმება + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.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 + + + + + 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 + + + + + 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: + + + + + 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 + + + + + + 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 + + + + + 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 + + + + + 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 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 + + + 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 + + + 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 + + + + + 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 + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Channel %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 + + + 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 + + + + + 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 + + + + + Cancel + გაუქმება + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + + + + + minute + + + + + Disabled + + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + 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 + + + + + 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 + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + Maximize + + + + + Restore + + + + + 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 + + + + + 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. + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + + + + + + 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 + + + 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: + + + + + + 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 + + + + diff --git a/data/locale/ko.ts b/data/locale/ko.ts index a6b450a9e..7373b5ca9 100644 --- a/data/locale/ko.ts +++ b/data/locale/ko.ts @@ -1,57 +1,63 @@ - - - + AboutDialog + About LMMS LMMS에 대하여 + LMMS LMMS - About - 정보 - - - Authors - 개발자 - - - Involved - 기여자 - - - Contributors ordered by number of commits: - 기여자 (기여 순으로 정렬): - - - Translation - 번역 - - - License - 라이선스 - - + Version %1 (%2/%3, Qt %4, %5). 버전 %1 (%2/%3, Qt %4, %5). + + About + 정보 + + + LMMS - easy music production for everyone. LMMS - 누구나 쉽게 할 수 있는 음악 제작. + Copyright © %1. Copyright © %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> + + Authors + 개발자 + + + + Involved + 기여자 + + + + Contributors ordered by number of commits: + 기여자 (기여 순으로 정렬): + + + + Translation + 번역 + + + 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! 송현진 (Hyunjin Song) <tteu.ingog@gmail.com> @@ -59,38 +65,51 @@ If you're interested in translating LMMS in another language or want to imp LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 싶다면 저희를 도와주세요! LMMS 관리자와의 연락을 통해 참여하실 수 있습니다. + + + License + 라이선스 + AmplifierControlDialog + VOL 음량 + Volume: 음량: + PAN 패닝 + Panning: 패닝: + LEFT 왼쪽 + Left gain: 왼쪽 이득: + RIGHT 오른쪽 + Right gain: 오른쪽 이득: @@ -98,18 +117,22 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 AmplifierControls + Volume 음량 + Panning 패닝 + Left gain 왼쪽 이득 + Right gain 오른쪽 이득 @@ -117,10 +140,12 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 AudioAlsaSetupWidget + DEVICE 장치 + CHANNELS 채널 @@ -128,49 +153,60 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 AudioFileProcessorView + + Open sample + 샘플 파일 열기 + + + Reverse sample 샘플 역으로 + Disable loop 반복 비활성화 + Enable loop 반복 활성화 + + Enable ping-pong loop + + + + Continue sample playback across notes 샘플을 여러 음표에 걸쳐 계속 재생 + Amplify: 증폭: - Loopback point: - 루프 시작점: - - - Open sample - 샘플 열기 - - - Enable ping-pong loop - 양방향 반복 활성화 - - + Start point: 시작점: + End point: 끝점: + + + Loopback point: + 루프 시작점: + AudioFileProcessorWaveView + Sample length: 샘플 길이: @@ -178,391 +214,469 @@ 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 서버가 종료된 것 같습니다. 더 이상 작업을 진행할 수 없습니다. 프로젝트를 저장한 뒤 JACK과 LMMS를 다시 시작하세요. - CLIENT-NAME - 클라이언트 이름 + + Client name + - CHANNELS - 채널 + + Channels + AudioOss - DEVICE - 장치 + + Device + - CHANNELS - 채널 + + Channels + AudioPortAudio::setupWidget - BACKEND - 드라이버 + + Backend + - DEVICE - 장치 + + Device + AudioPulseAudio - DEVICE - 장치 + + Device + - CHANNELS - 채널 + + Channels + AudioSdl::setupWidget - DEVICE - 장치 + + Device + AudioSndio - DEVICE - 장치 + + Device + - CHANNELS - 채널 + + Channels + AudioSoundIo::setupWidget - BACKEND - 드라이버 + + Backend + - DEVICE - 장치 + + 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... 컨트롤러에 연결... - - &Paste value - 값 붙여넣기(&P) - AutomationEditor - Please open an automation pattern with the context menu of a control! + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip with the context menu of a control! 컨트롤의 컨텍스트 메뉴에서 오토메이션 패턴을 여시기 바랍니다! - - Values copied - 값 복사됨 - - - All selected values were copied to the clipboard. - 선택한 모든 값이 클립보드에 복사되었습니다. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) 현재 패턴 재생/일시정지 (Space) - Stop playing of current pattern (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: - 장력: - - - Cut selected values (%1+X) - 선택된 값 잘라내기 (%1+X) - - - Copy selected values (%1+C) - 선택된 값 복사 (%1+C) - - - Paste values from clipboard (%1+V) - 선택된 값 붙여넣기 (%1+V) + + Zoom controls - + + + Horizontal zooming + 수평 줌 + + + + Vertical zooming + 수직 줌 + + + Quantization controls - + + Quantization - + - Automation Editor - no pattern + + + Automation Editor - no clip 오토메이션 편집기 - 패턴 없음 + + Automation Editor - %1 오토메이션 편집기 - %1 - Model is already connected to this pattern. + + Model is already connected to this clip. 대상이 이미 패턴에 연결되어 있습니다. - - Horizontal zooming - - - - Vertical zooming - - - AutomationPattern + AutomationClip + Drag a control while pressing <%1> <%1> 키를 누른 채로 드래그 - AutomationPatternView + 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 pattern. + + Model is already connected to this clip. 대상이 이미 패턴과 연결되어 있습니다. AutomationTrack + Automation track 오토메이션 트랙 - BBEditor + 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 - + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor 비트/베이스 라인 편집기에서 열기 + Reset name 이름 초기화 + Change name 이름 바꾸기 - - Change color - 색상 바꾸기 - - - Reset color to default - 색상을 기본값으로 되돌리기 - - BBTrack + PatternTrack + Beat/Bassline %1 비트/베이스 라인 %1 + Clone of %1 %1의 복제 @@ -570,26 +684,32 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 BassBoosterControlDialog + FREQ 주파수 + Frequency: 주파수: + GAIN 이득 + Gain: 이득: + RATIO 비율 + Ratio: 비율: @@ -597,14 +717,17 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 BassBoosterControls + Frequency 주파수 + Gain 이득 + Ratio 비율 @@ -612,131 +735,2344 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 BitcrushControlDialog + IN 입력 + OUT 출력 + + GAIN 이득 - NOISE - 잡음 - - - CLIP - 클리핑 - - - FREQ - 주파수 - - - Sample rate: - 샘플 레이트: - - - STEREO - 스테레오 - - - Stereo difference: - 좌우 차이: - - - QUANT - - - - Levels: - - - + Input gain: 입력 이득: - Input noise: - + + 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 + + + + + About + 정보 + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + 파일(&F) + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + 도움말(&H) + + + + toolBar + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + 설정 + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + 경로 + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 @@ -744,58 +3080,73 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 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. 순환 연결이 감지되었습니다. @@ -803,18 +3154,22 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 ControllerRackView + Controller Rack 컨트롤러 랙 + Add 추가 + Confirm Delete 삭제 확인 + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. 정말 삭제하시겠습니까? 이 컨트롤러와의 연결이 존재합니다. 이 동작은 취소할 수 없습니다. @@ -822,26 +3177,32 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 ControllerView + Controls 컨트롤 + Rename controller 컨트롤러 이름 바꾸기 + Enter the new name for this controller 컨트롤러의 새 이름을 입력하세요 + LFO LFO + &Remove this controller 컨트롤러 제거(&R) + Re&name this controller 컨트롤러 이름 바꾸기(&N) @@ -849,383 +3210,718 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 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 피드백 - Output gain - 출력 이득 - - - Delay samples - - - + 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 - Delay time - + + Add JACK Application + - Feedback amount - + + Note: Features not implemented yet are greyed out + - LFO frequency - + + Application + - LFO amount - + + Name: + - Out gain - 출력 이득 + + 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 차단 주파수 + + 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 - - - - Cutoff frequency 1 - - - - Cutoff frequency 2 - - - - Low-pass - - - - Hi-pass - - - - Band-pass csg - - - - Band-pass czpg - - - - All-pass - - - - 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 - - - - SV Low-pass - - - - SV Band-pass - - - - SV High-pass - + 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 효과 활성화됨 @@ -1233,10 +3929,12 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 EffectRackView + EFFECTS CHAIN 효과 체인 + Add effect 효과 추가 @@ -1244,22 +3942,28 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 EffectSelectDialog + Add effect 효과 추가 + + Name 이름 + Type 형태 + Description 요약 + Author 개발자 @@ -1267,46 +3971,57 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 EffectView + On/Off 켬/끔 + W/D - + + Wet Level: - + + DECAY - + + Time: - + + GATE 게이트 + Gate: 게이트: + Controls 컨트롤 + Move &up 위로 이동(&U) + Move &down 아래로 이동(&D) + &Remove this plugin 플러그인 제거(&R) @@ -1314,410 +4029,518 @@ 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 주파수 + 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 속도 - FREQ x 100 - 주파수 x 100 - - - ms/LFO: - ms/LFO: - - - Hint - - - - Pre-delay: - - - + 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 활성화 - LP active - + + 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 출력 신호 분석 - - Low-shelf gain - - - - High-shelf gain - - - - Low-shelf res - - - - High-shelf res - - - - Low-shelf freq - - - - High-shelf freq - - - - Low-shelf active - - - - High-shelf active - - - - Low-pass type - - - - High-pass type - - EqControlsDialog + HP - + + + Low-shelf + + + + Peak 1 피크 1 + Peak 2 피크 2 + Peak 3 피크 3 + Peak 4 피크 4 - LP - + + High-shelf + + + LP + + + + + Input gain + 입력 이득 + + + + + Gain 이득 + + Output gain + 출력 이득 + + + Bandwidth: 대역폭: + Octave 옥타브 + Resonance : 공명 : + Frequency: 주파수: - Low-shelf - - - - High-shelf - - - - Input gain - 입력 이득 - - - Output gain - 출력 이득 - - + LP group - + + HP group - + EqHandle + Reso: 공명: + BW: 대역폭: + + Freq: 주파수: @@ -1725,234 +4548,300 @@ LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 ExportProjectDialog + Export project 프로젝트 내보내기 - File format: - 파일 형식: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Stereo mode: - 스테레오 모드: - - - Stereo - 스테레오 - - - Mono - 모노 - - - Bitrate: - 비트 레이트: - - - 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 - 가변 비트레이트 사용 - - - Quality settings - 품질 설정 - - - Interpolation: - 보간법: - - - 1x (None) - 1x (사용하지 않음) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x + + 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 + 16비트 정수 + + + + 24 Bit integer + 24비트 정수 + + + + 32 Bit float + 32비트 실수 + + + + Stereo mode: + 스테레오 모드: + + + + Mono + 모노 + + + + Stereo + 스테레오 + + + + Joint stereo + 통합 스테레오 + + + + Compression level: + 압축률: + + + + Bitrate: + 비트 레이트: + + + + 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 + 가변 비트레이트 사용 + + + + Quality settings + 품질 설정 + + + + Interpolation: + 보간법: + + + + Zero order hold + + + + + Sinc worst (fastest) + 최저 품질 sinc (가장 빠름) + + + + Sinc medium (recommended) + 보통 품질 sinc (추천) + + + + Sinc best (slowest) + 최고 품질 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% - - Compression level: - - - - Export as loop (remove extra bar) - 루프 곡처럼 내보내기 (후반부 여백 제거) - - - Render Looped Section: - - - - time(s) - - - - File format settings - - - - Sampling rate: - - - - Bit depth: - - - - 16 Bit integer - 16비트 정수 - - - 24 Bit integer - 24비트 정수 - - - 32 Bit float - 32비트 실수 - - - Joint stereo - - - - Zero order hold - - - - Sinc worst (fastest) - - - - Sinc medium (recommended) - - - - Sinc best (slowest) - - - - Oversampling: - - - - ( Fastest - biggest ) - - - - ( Slowest - smallest ) - - Fader - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: - - + Set value 값 설정 + + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: + FileBrowser + + User content + + + + + Factory content + + + + Browser 탐색기 + Search 검색 + Refresh list 목록 새로고침 @@ -1960,449 +4849,622 @@ Please make sure you have write permission to the file and the directory contain FileBrowserTreeWidget + Send to active instrument-track 활성화된 악기 트랙에서 열기 - Open in new instrument-track/Song Editor - 새로운 악기 트랙이나 노래 편집기에서 열기 + + Open containing folder + - Open in new instrument-track/B+B 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 샘플을 로딩하는 중 + Please wait, loading sample for preview... 미리보기를 위하여 샘플을 로딩하는 중입니다. 잠시 기다려 주세요... + Error 오류 - does not appear to be a valid - - - - file - 파일 + + %1 does not appear to be a valid %2 file + + --- Factory files --- - + FlangerControls + + Delay samples + + + + + LFO frequency + LFO 주파수 + + + Seconds - Regen - + + Stereo phase + + + Regen + + + + Noise 잡음 + Invert 파형 반전 - - Delay samples - - - - LFO frequency - LFO 주파수 - FlangerControlsDialog + DELAY 지연 + + Delay time: + 지연 시간: + + + RATE - + + Period: - + + AMNT - + + Amount: - + + + PHASE + + + + + Phase: + + + + FDBK 피드백 + + Feedback amount: + + + + NOISE 잡음 + + White noise amount: + + + + Invert 파형 반전 - - Delay time: - - - - Feedback amount: - - - - White noise amount: - - FreeBoyInstrument + Sweep time - + + Sweep direction - - - - Channel 1 volume - - - - Volume sweep direction - - - - Length of each step in sweep - - - - Channel 2 volume - - - - Channel 3 volume - - - - Channel 4 volume - - - - Shift Register width - - - - 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 - + + 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 - Length of each step in sweep: - - - - Length of each step in sweep - - - - Treble: - - - - Treble - - - - Bass: - - - - Bass - - - + 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 - + - FxLine + MixerLine + 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 + + - FxLineLcdSpinBox + MixerLineLcdSpinBox + Assign to: 채널 할당: - New FX Channel + + New mixer Channel 새 FX 채널 - FxMixer + Mixer + Master 마스터 - FX %1 + + + + Channel %1 FX %1 + Volume 음량 + Mute 음소거 + Solo 독주 - FxMixerView + MixerView - FX-Mixer + + Mixer FX-믹서 - FX Fader %1 + + Fader %1 FX 페이더 %1 + Mute 음소거 - Mute this FX channel + + Mute this mixer channel 이 채널 음소거 + Solo 독주 - Solo FX channel + + Solo mixer channel 이 채널 독주 - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 채널 %1에서 채널 %2(으)로 보낼 양 @@ -2410,14 +5472,17 @@ Please make sure you have write permission to the file and the directory contain GigInstrument + Bank 뱅크 + Patch 패치 + Gain 이득 @@ -2425,61 +5490,76 @@ Please make sure you have write permission to the file and the directory contain GigInstrumentView + + Open GIG file GIG 파일 열기 - GIG Files (*.gig) - GIG 파일 (*.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 오토메이션 편집기 준비 @@ -2487,74 +5567,97 @@ Please make sure you have write permission to the file and the directory contain 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 동기화 @@ -2562,82 +5665,119 @@ Please make sure you have write permission to the file and the directory contain 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: 모드: @@ -2645,390 +5785,488 @@ Please make sure you have write permission to the file and the directory contain InstrumentFunctionNoteStacking + octave 옥타브 + + Major - + + Majb5 - + + minor - + + minb5 - + + sus2 - + + sus4 - + + aug - + + augsus4 - + + tri - + + 6 6 + 6sus4 6sus4 + 6add9 6add9 + m6 - + + 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 - + + m7add11 - + + m7add13 - + + m-Maj7 - + + m-Maj7add11 - + + 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 - + + 11 11 + 11b9 11b9 + Maj11 - + + m11 - + + m-Maj11 - + + 13 13 + 13#9 13#9 + 13b9 13b9 + 13b5b9 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 5 + Phrygian dominant - + + Persian - + + Chords 코드 + Chord type 코드 종류 + Chord range 코드 범위 @@ -3036,22 +6274,27 @@ Please make sure you have write permission to the file and the directory contain InstrumentFunctionNoteStackingView + STACKING 코드 쌓기 + Chord: 코드: + RANGE 범위 + Chord range: 코드 범위: + octave(s) 옥타브 @@ -3059,57 +6302,76 @@ Please make sure you have write permission to the file and the directory contain InstrumentMidiIOView + ENABLE MIDI INPUT MIDI 입력 활성화 - CHANNEL - 채널 - - - VELOCITY - 벨로시티 - - + ENABLE MIDI OUTPUT MIDI 출력 활성화 - PROGRAM - 프로그램 + + + 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 사용자 지정 기준 벨로시티 - BASE VELOCITY - 기준 벨로시티 + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + 100% 음표 벨로시티에 해당하는 MIDI 벨로시티를 지정합니다. - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - + + BASE VELOCITY + 기준 벨로시티 InstrumentMiscView + MASTER PITCH 마스터 피치 + Enables the use of master pitch 마스터 피치 사용 @@ -3117,380 +6379,547 @@ Please make sure you have write permission to the file and the directory contain 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 - - - - Low-pass - - - - Hi-pass - - - - Band-pass csg - - - - Band-pass czpg - - - - All-pass - - - - 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 - - - - SV Low-pass - - - - SV Band-pass - - - - SV High-pass - + InstrumentSoundShapingView + TARGET 대상 + FILTER 필터 + FREQ 주파수 - Hz - Hz - - - Envelopes, LFOs and filters are not supported by the current instrument. - 이 악기는 엔벨로프, LFO, 필터를 지원하지 않습니다. - - + Cutoff frequency: 차단 주파수: + + Hz + Hz + + + Q/RESO Q/공명 + Q/Resonance: Q/공명: + + + Envelopes, LFOs and filters are not supported by the current instrument. + 이 악기는 엔벨로프, LFO, 필터를 지원하지 않습니다. + InstrumentTrack - With this knob you can set the volume of the opened channel. - 이 노브를 이용하여 트랙의 음량을 조절할 수 있습니다. - - + + unnamed_track 이름 없는 트랙 + Base note 기준 음 + + First note + + + + + Last note + 마지막 박자 + + + Volume 음량 + Panning 패닝 + Pitch 피치 + Pitch range 피치 범위 - FX channel + + Mixer channel FX 채널 - Default preset - 기본 프리셋 - - + Master pitch 마스터 피치 + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + 기본 프리셋 + InstrumentTrackView + Volume 음량 + Volume: 음량: + VOL 음량 + Panning 패닝 + Panning: 패닝: + PAN 패닝 + MIDI MIDI + Input 입력 + Output 출력 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS 일반 설정 - Volume: - 음량: - - - VOL - 음량 - - - Panning - 패닝 - - - Panning: - 패닝: - - - PAN - 패닝 - - - Pitch - 피치 - - - Pitch: - 피치: - - - cents - 센트 - - - PITCH - 피치 - - - Pitch range (semitones) - 피치 범위(반음) - - - RANGE - 범위 - - - FX channel - FX 채널 - - - FX - FX - - - Save current instrument track settings in a preset file - 프리셋 파일에 현재 악기 트랙의 설정 저장 - - - SAVE - 저장 - - - Envelope, filter & LFO - 엔벨로프, 필터 & LFO - - - Chord stacking & arpeggio - 코드 쌓기 & 아르페지오 - - - Effects - 효과 - - - Miscellaneous - 기타 - - - Save preset - 프리셋 저장 - - - XML preset file (*.xpf) - XML 프리셋 파일 (*.xpf) - - - Plugin - 플러그인 - - + Volume 음량 + + Volume: + 음량: + + + + VOL + 음량 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + Pitch + 피치 + + + + Pitch: + 피치: + + + + cents + 센트 + + + + PITCH + 피치 + + + + Pitch range (semitones) + 피치 범위(반음) + + + + RANGE + 범위 + + + + Mixer channel + FX 채널 + + + + CHANNEL + FX + + + + Save current instrument track settings in a preset file + 프리셋 파일에 현재 악기 트랙의 설정 저장 + + + + SAVE + 저장 + + + + 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 + + + + + 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까지의 값을 입력하세요: - - Set value - 값 설정 - LadspaControl + Link channels 채널 링크 @@ -3498,10 +6927,12 @@ Please make sure you have write permission to the file and the directory contain LadspaControlDialog + Link Channels 채널 링크 + Channel 채널 @@ -3509,10 +6940,12 @@ Please make sure you have write permission to the file and the directory contain LadspaControlView + Link channels 채널 링크 + Value: 값: @@ -3520,36 +6953,60 @@ Please make sure you have write permission to the file and the directory contain LadspaEffect + Unknown LADSPA plugin %1 requested. 알 수 없는 LADSPA 플러그인 %1이(가) 요청되었습니다. - LcdSpinBox + 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) @@ -3557,137 +7014,170 @@ Please make sure you have write permission to the file and the directory contain LfoController + LFO Controller LFO 컨트롤러 + Base value 기준 값 + Oscillator speed - + + Oscillator amount - + + Oscillator phase 오실레이터 위상 + Oscillator waveform 오실레이터 파형 + Frequency Multiplier - + LfoControllerDialog + LFO LFO + BASE 기준 - AMNT - - - - Modulation amount: - - - - PHS - 위상 - - - Phase offset: - 위상: - - + 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 - + - LmmsCore + Engine + Generating wavetables - + + Initializing data structures 자료 구조 초기화 중 + Opening audio and midi devices 오디오 장치와 MIDI 장치를 여는 중 + Launching mixer threads 믹서 스레드를 시작하는 중 @@ -3695,381 +7185,479 @@ Double click to pick a file. 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 artwork - 배경 아트워크를 불러오는 중 - - + &File 파일(&F) + &New 새로 만들기(&N) - New from template - 템플릿에서 새 프로젝트 생성 - - + &Open... 열기(&O)... - &Recently Opened Projects - 최근에 사용한 프로젝트(&R) + + 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 현재 프로젝트 내보내기 - Show/hide project notes - 프로젝트 노트 보이기/숨기기 - - - Show/hide controller rack - 컨트롤러 랙 보이기/숨기기 - - - 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. - - - - Song Editor - 노래 편집기 - - - Beat+Bassline Editor - 비트/베이스 라인 편집기 - - - Piano Roll - 피아노 롤 - - - Automation Editor - 오토메이션 편집기 - - - FX Mixer - FX 믹서 - - - Project Notes - 프로젝트 노트 - - - Controller Rack - 컨트롤러 랙 - - - Volume as dBFS - 음량을 dBFS 단위로 표시 - - - Smooth scroll - 부드러운 스크롤 - - - Enable note labels in piano roll - 피아노 롤에 음표 라벨 표시 - - + 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 모든 파일 @@ -4077,44 +7665,74 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MeterDialog + + Meter Numerator 박자표 분자 - Meter Denominator - 박자표 분모 - - - TIME SIG - 박자 - - + 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 컨트롤러 @@ -4122,78 +7740,351 @@ Please visit http://lmms.sf.net/wiki for documentation on 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. LMMS가 SoundFont2 플레이어 지원 없이 컴파일되었습니다. MIDI 파일에서 가져온 트랙은 기본적으로 SoundFont2 플레이어로 재생되므로 MIDI 파일을 가져온 뒤 재생하면 아무 소리도 재생되지 않을 것입니다. - Track - 트랙 + + MIDI Time Signature Numerator + - 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 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 서버가 종료된 것 같습니다. + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + 파일(&F) + + + + &Edit + 편집(&E) + + + + &Quit + 끝내기(&Q) + + + + &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 이벤트 보내기 @@ -4201,1073 +8092,1438 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiSetupWidget - DEVICE - 장치 + + Device + MonstroInstrument - Osc 3 Stereo phase offset - - - - Selected view - - - - 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 - - - + 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 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 센트 - Stereo phase offset - + + + 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 - - - - Modulation amount - - - - Fine tune left - - - - Fine tune right - + + 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 좌우 입력 바꾸기 - Dry gain: - - - - Low-pass stages: - - - + 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 4 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 비브라토 - - 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 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 - - 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 - - - - Vibrato - 비브라토 + + 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 + 클릭하여 활성화 + + PatchesDialog + Qsynth: Channel Preset - + + Bank selector - + + Bank 뱅크 + Program selector - + + Patch 패치 + Name 이름 + OK 확인 + Cancel 취소 @@ -5275,84 +9531,103 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. PatmanView + + Open patch + + + + Loop 루프 + Loop mode 루프 모드 + Tune - + + Tune mode - + + No file selected 파일이 선택되지 않음 + Open patch file 패치 파일 열기 + Patch-Files (*.pat) 패치 파일 (*.pat) - - Open patch - - - PatternView + MidiClipView + Open in piano-roll 피아노-롤에서 열기 + + Set as ghost in piano-roll + + + + Clear all notes 전체 음표 지우기 + Reset name 이름 초기화 + Change name 이름 바꾸기 + Add steps - + + Remove steps - + + Clone Steps - - - - Set as ghost in piano-roll - + 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의 버그로 인해 피크 컨트롤러가 제대로 연결되지 않았을 수 있습니다. 피크 컨트롤러가 제대로 연결되었는지 확인 후 파일을 다시 저장해 주시기 바랍니다. 불편을 드려 죄송합니다. @@ -5360,10 +9635,12 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. PeakControllerDialog + PEAK - + + LFO Controller LFO 컨트롤러 @@ -5371,168 +9648,234 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. PeakControllerEffectControlDialog + BASE 기준 - AMNT - - - - Modulation amount: - - - - MULT - - - - ATCK - - - - Attack: - - - - DCAY - - - - Release: - - - - TRSH - - - - Treshold: - - - + 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 패닝: 가운데 - Please open a pattern by double-clicking on it! + + 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까지의 값을 입력하세요: @@ -5540,130 +9883,284 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. PianoRollWindow - Play/pause current pattern (Space) + + 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 - + - Stop playing of current pattern (Space) + + 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 복사/붙여넣기 컨트롤 - Timeline controls - - - - Zoom and note controls - - - - Piano-Roll - %1 - 피아노-롤 - %1 - - - Piano-Roll - no pattern - 피아노-롤 - 패턴 없음 - - - Record notes from MIDI-device/channel-piano, one step at the time - - - + 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! + + 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"을(를) 로딩할 수 없습니다! @@ -5671,221 +10168,1292 @@ Reason: "%2" 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 + 내장 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 + 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 + MIDI 파일을 LMMS에서 내보내기 위한 필터 + + + + 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 + + + + + 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 + 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 + + + + + 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 + + + + + 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 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! LMMS 플러그인 %1은(는) 이름이 %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 + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - 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)... - - + 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) + + QObject + + + Reload Plugin + + + + + Show GUI + GUI 표시 + + + + Help + 도움말 + + 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 + + + &Recently Opened Projects + 최근에 사용한 프로젝트(&R) + + RenameDialog + Rename... 이름 바꾸기... @@ -5893,34 +11461,42 @@ Reason: "%2" ReverbSCControlDialog + Input 입력 - Size - 크기 - - - Size: - 크기: - - - Color - 음색 - - - Color: - 음색: - - - Output - 출력 - - + Input gain: 입력 이득: + + Size + 크기 + + + + Size: + + + + + Color + 음색 + + + + Color: + + + + + Output + 출력 + + + Output gain: 출력 이득: @@ -5928,591 +11504,1562 @@ Reason: "%2" ReverbSCControls - Size - 크기 - - - Color - 음색 - - + 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 오디오 파일은 %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) - SampleTCOView + 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> + 마우스 가운데 버튼) - Double-click to open sample - 더블클릭하여 샘플 열기 + + Mute/unmute selection (<%1> + middle click) + + + + + Reverse sample + 샘플 역으로 + + + + Set clip color + + + + + Use track color + SampleTrack + Volume 음량 + Panning 패닝 - Sample track - 샘플 트랙 + + Mixer channel + FX 채널 - FX channel - FX 채널 + + + Sample track + 샘플 트랙 SampleTrackView + Track volume 트랙 음량 + Channel volume: 채널 음량: + VOL 음량 + Panning 패닝 + Panning: 패닝: + PAN 패닝 - FX %1: %2 + + Channel %1: %2 FX %1: %2 SampleTrackWindow + GENERAL SETTINGS 일반 설정 + Sample volume - 샘플 음량 + + Volume: 음량: + VOL 음량 + Panning 패닝 + Panning: 패닝: + PAN 패닝 - FX channel + + Mixer channel FX 채널 - FX + + CHANNEL FX SaveOptionsWidget + Discard MIDI connections - MIDI 연결 제거 + + + + + Save As Project Bundle (with resources) + SetupDialog - Setup LMMS - LMMS 설정 - - - General settings - 일반 설정 - - - BUFFER SIZE - 버퍼 크기 - - - MISC - 기타 + + Reset to default value + 기본값으로 초기화 + Use built-in NaN handler - + - PLUGIN EMBEDDING - + + 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 - + - LANGUAGE - 언어 + + 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 경로 - Directories - 경로 - - - Performance settings - 성능 설정 - - - Auto save - 자동 저장 - - - Enable auto-save - 자동 저장 활성화 - - - Allow auto-save while playing - 재생 중 자동 저장 허용 - - - UI effects vs. performance - UI 효과 vs. 성능 - - - Smooth scroll in Song Editor - 노래 편집기에서 부드러운 스크롤 사용 - - - Show playback cursor in AudioFileProcessor - - - - Audio settings - 오디오 설정 - - - AUDIO INTERFACE - 오디오 인터페이스 - - - MIDI settings - MIDI 설정 - - - MIDI INTERFACE - MIDI 인터페이스 - - + OK 확인 + Cancel 취소 - Restart LMMS - LMMS 다시 시작 - - - Please note that most changes won't take effect until you restart LMMS! - - - + Frames: %1 Latency: %2 ms 프레임: %1 시간 지연: %2 ms - Choose LMMS working directory - LMMS 작업 경로 선택 - - + Choose your GIG directory GIG 경로 선택 + Choose your SF2 directory SF2 경로 선택 - Choose your VST-plugin directory - VST 플러그인 경로 선택 - - - Choose artwork-theme directory - 아트워크 경로 선택 - - - Choose LADSPA plugin directory - LADSPA 플러그인 경로 선택 - - - Choose STK rawwave directory - - - - Choose default SoundFont - 기본 사운드폰트 설정 - - - Choose background artwork - 배경 아트워크 선택 - - + minutes + minute + Disabled 비활성화됨 + + + SidInstrument - Auto-save interval: %1 - 자동 저장 간격: %1 + + Cutoff frequency + 차단 주파수 - Reset to default value - + + Resonance + 공명 - Keep plugin windows on top when not embedded - + + 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 + 소리 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 + + + 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 LMMS 오류 보고 - The following errors occured while loading: - 로딩 중 다음과 같은 오류가 발생하였습니다: + + (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. 파일 %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 to write to this file. Please make sure you have write-access to the file and try again. - 파일 %1을(를) 쓰기 위하여 열 수 없습니다. 파일을 쓸 수 있는 권한이 없기 때문일 수 있습니다. 파일에 쓸 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다. + + 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 버전 차이 - This %1 was created with LMMS %2. - 이 %1은(는) LMMS %2에서 만들어졌습니다. - - + template 템플릿 + project 프로젝트 + Tempo 템포 - High quality mode - 고음질 모드 - - - Master volume - 마스터 음량 - - - Master pitch - 마스터 피치 - - - Value: %1% - 값: %1% - - - Value: %1 semitones - 값: %1반음 - - + TEMPO 템포 + Tempo in BPM - BPM 단위의 템포 + 템포 (BPM 단위) + + + + High quality mode + 고음질 모드 + + + + + + Master volume + 마스터 음량 + + + + + + Master pitch + 마스터 피치 + + + + Value: %1% + 값: %1% + + + + Value: %1 semitones + 값: %1반음 SongEditorWindow + Song-Editor 노래 편집기 + Play song (Space) 노래 재생 (Space) + Record samples from Audio-device 오디오 장치로부터 샘플 녹음 + Record samples from Audio-device while playing song or BB track 노래 또는 비트/베이스 라인 트랙을 재생하는 동안 오디오 장치로부터 샘플 녹음 + Stop song (Space) 노래 정지 (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 - - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - 선형 스펙트럼 + 수평 줌 - Linear Y axis - 선형 Y축 - - - - SpectrumAnalyzerControls - - Linear spectrum - 선형 스펙트럼 + + Snap controls + - Linear Y axis - 선형 Y축 + + + Clip snapping size + - Channel mode - 채널 모드 + + Toggle proportional snap on/off + + + + + Base snapping size + StepRecorderWidget + Hint + Move recording curser using <Left/Right> arrows - + SubWindow + Close 닫기 + Maximize 최대화 + Restore 복원 @@ -6520,81 +13067,110 @@ Latency: %2 ms TabWidget + + Settings for %1 %1에 대한 설정 + + TemplatesMenu + + + New from template + 템플릿에서 새 프로젝트 생성 + + TempoSyncKnob + + Tempo Sync 템포 동기화 + No Sync 동기화 없음 + Eight beats 여덟 박자 + 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 Half Note 2분음표에 동기화됨 + Synced to Quarter Note 4분음표에 동기화됨 + Synced to 8th Note 8분음표에 동기화됨 + Synced to 16th Note 16분음표에 동기화됨 + Synced to 32nd Note 32분음표에 동기화됨 @@ -6602,76 +13178,88 @@ Latency: %2 ms TimeDisplayWidget + + Time units + 시간 단위 + + + MIN + SEC + MSEC 밀리초 + BAR 마디 + BEAT + TICK - - Time units - 시간 단위 - TimeLineWidget - After stopping go back to begin - 정지한 뒤 시작점으로 이동 - - - After stopping go back to position at which playing was started - 정지한 뒤 재생을 시작한 점으로 이동 - - - After stopping keep position - 정지한 후 위치 유지 - - - Hint - - - - Press <%1> to disable magnetic loop points. - <%1> 키를 눌러 반복 지점을 자유롭게 이동할 수 있습니다. - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - <Shift> 키를 누르면 반복 시작점을 움직일 수 있습니다; <%1> 키를 눌러 반복 지점을 자유롭게 움직일 수 있습니다. - - + 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 독주 @@ -6679,444 +13267,669 @@ Latency: %2 ms TrackContainer + Couldn't import file 파일을 가져올 수 없음 - Couldn't find a filter for importing file %1. + + 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. + + 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 파일을 가져오는중... - TrackContentObject + Clip + Mute 음소거 - TrackContentObjectView + ClipView + Current position 현재 위치 - Hint - - - - Press <%1> and drag to make a copy. - <%1> 키를 누른 채 드래그하여 복사합니다. - - + Current length 현재 길이 - Press <%1> for free resizing. - <%1> 키를 눌러 크기를 자유롭게 조절할 수 있습니다. - - + + %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 + + + Paste + 붙여넣기 + 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 트랙 초기화 - FX %1: %2 + + Channel %1: %2 FX %1: %2 - Assign to new FX Channel + + Assign to new mixer Channel 새 FX 채널 할당 + Turn all recording on - + + Turn all recording off - + - Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - + + Change color + 색상 바꾸기 - Actions - + + 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: 오실레이터 %1 음량: + Osc %1 panning: 오실레이터 %1 패닝: + 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: - - - - Modulate phase of oscillator 1 by oscillator 2 - - - - Modulate amplitude of oscillator 1 by oscillator 2 - - - - Mix output of oscillators 1 & 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 - - - - Modulate frequency of oscillator 2 by oscillator 3 - + + Sine wave 사인파 + Triangle wave 삼각파 + Saw wave 톱니파 + Square wave 사각파 + Moog-like saw wave Moog 톱니파 + 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 버전 감소 - already exists. Do you want to replace it? - 이(가) 이미 존재합니다. 덮어쓰시겠습니까? + + Save Options + - Save Options - 저장 옵션 + + already exists. Do you want to replace it? + 이(가) 이미 존재합니다. 덮어쓰시겠습니까? 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 GUI 보이기/숨기기 + Turn off all notes 모든 음 끄기 + DLL-files (*.dll) DLL 파일 (*.dll) + EXE-files (*.exe) EXE 파일 (*.exe) + + No VST plugin loaded + VST 플러그인이 로딩되지 않음 + + + Preset 프리셋 + by - + + - VST plugin control - - - - Open VST plugin - - - - Control VST plugin from LMMS host - - - - Open VST plugin preset - - - - No VST plugin loaded - - - - - VisualizationWidget - - Click to enable - 클릭하여 활성화 - - - Oscilloscope - 오실로스코프 + 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 /> - - Control VST plugin from LMMS host - - - - Open VST plugin preset - - 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 플러그인을 읽을 동안 잠시 기다려 주세요... @@ -7124,118 +13937,147 @@ Please make sure you have read-permission to the file and the directory containi 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 선택된 그래프 @@ -7243,601 +14085,795 @@ Please make sure you have read-permission to the file and the directory containi 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 + 위상을 -15도만큼 바꾸기 + + + Phase right 오른쪽 위상 + + Shift phase by +15 degrees + 위상을 +15도만큼 바꾸기 + + + + Normalize 일반화 + + Invert 파형 반전 + + Smooth 부드럽게 + + Sine wave 사인파 + + + Triangle wave 삼각파 - Square wave - 사각파 - - - Modulate amplitude of A1 by output of A2 - - - - Ring modulate A1 and A2 - - - - Modulate phase of A1 by output of A2 - - - - Modulate amplitude of B1 by output of B2 - - - - Ring modulate B1 and B2 - - - - Modulate phase of B1 by output of B2 - - - - Load a waveform from a sample file - - - - Shift phase by -15 degrees - - - - Shift phase by +15 degrees - - - + Saw wave 톱니파 + + + + Square wave + 사각파 + Xpressive + Selected graph - 선택된 그래프 + 선택된 그래프 + A1 - + A1 + A2 - + A2 + A3 - + A3 + W1 smoothing - + + W2 smoothing - + + W3 smoothing - + + 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 - + 출력 O1 선택 + Select output 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: - + + Release transition: - + + Smoothness - + ZynAddSubFxInstrument + Portamento 포르타멘토 + + Filter frequency + 필터 주파수 + + + + Filter resonance + 필터 공명 + + + Bandwidth 대역폭 - Filter frequency - - - - Filter resonance - - - + FM gain - + FM 이득 + Resonance center frequency - + 공명 중심 주파수 + Resonance bandwidth - + 공명 대역폭 + Forward MIDI control change events - + MIDI CC 이벤트 전달 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 CC 이벤트 전달 + + + Show GUI GUI 표시 - - Filter frequency: - - - - Filter resonance: - - - - FM gain: - - - - Forward MIDI control changes - - - audioFileProcessor + 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 + BitInvader + Sample length 샘플 길이 - bitInvaderView + BitInvaderView + + Sample length + 샘플 길이 + + + Draw your own waveform here by dragging your mouse on this graph. 드래그하여 원하는 파형을 그리세요. + + Sine wave 사인파 + + Triangle wave 삼각파 + + Saw wave 톱니파 + + Square wave 사각파 - Interpolation - 보간 - - - Normalize - 규격화 - - - Sample length - 샘플 길이 - - + + White noise 화이트 노이즈 + + User-defined wave - 사용자 지정 파형 + 사용자 정의 파형 + + Smooth waveform 파형을 부드럽게 + + + Interpolation + 보간 + + + + Normalize + 규격화 + - dynProcControlDialog + 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 각각의 채널에 독립적으로 효과 적용 - - Reset wavegraph - - - - Smooth wavegraph - - - - Increase wavegraph amplitude by 1 dB - - - - Decrease wavegraph amplitude by 1 dB - - - - Stereo mode: maximum - - - - Stereo mode: average - - - - Stereo mode: unlinked - - - dynProcControls + DynProcControls + Input gain 입력 이득 + Output gain 출력 이득 + Attack time - + + Release time - + + Stereo mode 스테레오 모드 @@ -7845,1486 +14881,1453 @@ Please make sure you have read-permission to the file and the directory containi graphModel + Graph 그래프 - kickerInstrument + KickerInstrument + Start frequency 시작 주파수 + End frequency 끝 주파수 + Length 길이 + + Start distortion + + + + + End distortion + + + + Gain 이득 + + Envelope slope + + + + Noise 잡음 + Click - + + + Frequency slope + + + + Start from note 음표 주파수에서 시작 + End to note 음표 주파수에서 마침 - - Start distortion - - - - End distortion - - - - Envelope slope - - - - Frequency slope - - - kickerInstrumentView + KickerInstrumentView + Start frequency: 시작 주파수: + End frequency: 끝 주파수: + + Frequency slope: + + + + Gain: 이득: - Click: - + + Envelope length: + + + Envelope slope: + + + + + Click: + + + + Noise: 잡음: - Frequency slope: - - - - Envelope length: - 엔벨로프 길이: - - - Envelope slope: - - - + Start distortion: - 디스토션 시작 값: + + End distortion: - 디스토션 끝 값: + - ladspaBrowserView + LadspaBrowserView + + Available Effects 사용 가능한 효과 + + Unavailable Effects 사용 불가능한 효과 + + Instruments 악기 + + Analysis Tools 분석 도구 + + Don't know 알 수 없음 + Type: 형태: - ladspaDescription + LadspaDescription + Plugins 플러그인 + Description 요약 - ladspaPortDialog + LadspaPortDialog + Ports 포트 + Name 이름 + Rate 종류 + Direction 방향 + Type 형태 + Min < Default < Max 최소 < 기본 < 최대 + Logarithmic 로그 + SR Dependent SR 의존 + Audio 오디오 + Control 컨트롤 + Input 입력 + Output 출력 + Toggled 토글 + Integer 정수 + Float 실수 + + Yes - lb302Synth + 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 + 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 + 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 유리 - Vibrato gain - - - - Vibrato frequency - - - - Stick mix - - - - LFO speed - LFO 속도 - - - LFO depth - - - - Wood 1 - - - - Wood 2 - - - - Two fixed - - - - Tubular bells - - - - Uniform bar - - - - Tuned bar - - - + Tibetan bowl - + - malletsInstrumentView + 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: 크로스페이드: - ADSR - ADSR - - - ADSR: - ADSR: - - - Pressure - 압력 - - - Pressure: - 압력: - - - Speed - 속도 - - - Speed: - 속도: - - - Vibrato gain - - - - Vibrato gain: - - - - Vibrato frequency - - - - Vibrato frequency: - - - - Stick mix - - - - Stick mix: - - - + LFO speed LFO 속도 + LFO speed: LFO 속도: + LFO depth - + LFO 깊이 + LFO depth: - + LFO 깊이: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + 압력 + + + + Pressure: + 압력: + + + + Speed + 속도 + + + + Speed: + 속도: - manageVSTEffectView + ManageVSTEffectView + - VST parameter control - - - - Automated - - - - Close - 닫기 + + VST sync VST와 동기화 - - - manageVestigeInstrumentView - - VST plugin control - + + + Automated + + + Close + 닫기 + + + + ManageVestigeInstrumentView + + + + - VST plugin control + + + + VST Sync VST와 동기화 + + Automated - + + Close 닫기 - organicInstrument + OrganicInstrument + Distortion 디스토션 + Volume 음량 - organicInstrumentView + 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 + 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 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 - 내장 플랜저 플러그인 - - - 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 tb303 - - - - 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 - - - - A multitap echo delay plugin - - - - A NES-like synthesizer - - - - 2-operator FM Synth - - - - Additive Synthesizer for organ-like sounds - - - - Emulation of GameBoy (TM) APU - GameBoy (TM) APU 에뮬레이션 - - - 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. - - - - Graphical spectrum analyzer plugin - 그래픽 스펙트럼 분석 플러그인 - - - 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 - - - - 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 - - - - Embedded ZynAddSubFX - 내장 ZynAddSubFX 플러그인 - - - Mathematical expression parser - - - - - sf2Instrument + Sf2Instrument + Bank 뱅크 + Patch 패치 + Gain 이득 + Reverb 리버브 - Chorus - 코러스 - - - A soundfont %1 could not be loaded. - 사운드폰트 %1을 불러올 수 없습니다. - - + 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 - - Apply reverb (if supported) - 리버브 적용(지원시) - - - Apply chorus (if supported) - 코러스 적용 (지원될 경우) - + 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 + SfxrInstrument + Wave 파형 - sidInstrument - - Resonance - 공명 - - - Filter type - 필터 종류 - - - Voice 3 off - - - - Volume - 음량 - - - Chip model - 칩 모델 - - - Cutoff frequency - 차단 주파수 - - - - sidInstrumentView - - Volume: - 음량: - - - Resonance: - 공명: - - - Cutoff frequency: - 차단 주파수: - - - MOS6581 SID - MOS6581 SID - - - MOS8580 SID - MOS8580 SID - - - Attack: - - - - Decay: - 감쇠: - - - Sustain: - - - - Release: - - - - Pulse Width: - 펄스 폭: - - - Coarse: - - - - Noise - 잡음 - - - Sync - 동기화 - - - Filtered - 필터 - - - Test - 테스트 - - - High-pass filter - - - - Band-pass filter - - - - Low-pass filter - - - - Voice 3 off - - - - Pulse wave - 펄스파 - - - Triangle wave - 삼각파 - - - Saw wave - 톱니파 - - - Ring modulation - - - - Pulse width: - 펄스 폭: - - - - stereoEnhancerControlDialog - - Width: - 너비: - + StereoEnhancerControlDialog + WIDTH 너비 + + + Width: + 너비: + - stereoEnhancerControls + StereoEnhancerControls + Width 너비 - stereoMatrixControlDialog + StereoMatrixControlDialog + Left to Left Vol: 왼쪽에서 왼쪽 음량: + Left to Right Vol: 왼쪽에서 오른쪽 음량: + Right to Left Vol: 오른쪽에서 왼쪽 음량: + Right to Right Vol: 오른쪽에서 오른쪽 음량: - stereoMatrixControls + StereoMatrixControls + Left to Left 왼쪽에서 왼쪽 + Left to Right 왼쪽에서 오른쪽 + Right to Left 오른쪽에서 왼쪽 + Right to Right 오른쪽에서 오른쪽 - testcontext - - test string - - - - test plural %n - - - - - - - vestigeInstrument + VestigeInstrument + Loading plugin 플러그인 읽는 중 + Please wait while loading the VST plugin... - VST 플러그인을 읽을 동안 잠시 기다려 주세요... + VST 플러그인을 불러올 동안 잠시 기다려 주세요... - vibed + Vibed + String %1 volume %1번 현 음량 + String %1 stiffness - + + Pick %1 position - + + Pickup %1 position 픽업 %1 위치 - Impulse %1 - - - + String %1 panning - String %1 패닝 + %1번 현 패닝 + String %1 detune - + + String %1 fuzziness - + + String %1 length - %1번 현 길이 + + + Impulse %1 + + + + String %1 %1번 현 - vibedView + VibedView + + String volume: + + + + String stiffness: - + + Pick position: - + + Pickup position: 픽업 위치: + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse + + + + Octave 옥타브 + Impulse Editor Impulse 편집기 + Enable waveform 파형 활성화 - String - + + Enable/disable string + 현 활성화/비활성화 + + String + + + + + Sine wave 사인파 + + Triangle wave 삼각파 + + Saw wave 톱니파 + + Square wave 사각파 - String volume: - - - - String panning: - - - - String detune: - - - - String fuzziness: - - - - String length: - - - - Impulse - - - - Enable/disable string - - - + + White noise 화이트 노이즈 + + User-defined wave - 사용자 지정 파형 + 사용자 정의 파형 + + Smooth waveform 파형을 부드럽게 + + Normalize waveform - + 파형 정규화 - voiceObject + 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파 + 소리 %1 파형 + Voice %1 sync 소리 %1 동기화 + Voice %1 ring modulate 소리 %1 링 모듈레이션 + Voice %1 filtered 소리 %1 필터됨 + Voice %1 test 소리 %1 테스트 - waveShaperControlDialog + WaveShaperControlDialog + INPUT 입력 + Input gain: 입력 이득: + OUTPUT 출력 + Output gain: 출력 이득: - Clip input - 입력 신호 클리핑 - - + + 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 + WaveShaperControls + Input gain 입력 이득 + Output gain 출력 이득 diff --git a/data/locale/ms_MY.ts b/data/locale/ms_MY.ts new file mode 100644 index 000000000..209d51d10 --- /dev/null +++ b/data/locale/ms_MY.ts @@ -0,0 +1,16326 @@ + + + AboutDialog + + + About LMMS + Tentang LMMS + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + + + + + About + Tentang + + + + LMMS - easy music production for everyone. + + + + + Copyright © %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> + + + + + Authors + Pengarang + + + + Involved + Terlibat + + + + Contributors ordered by number of commits: + Penyumbang diperintah oleh beberapa komit: + + + + Translation + Translasi + + + + 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! + + + + + License + Lesen + + + + AmplifierControlDialog + + + VOL + VOL + + + + Volume: + Kekuatan suara: + + + + PAN + PAN + + + + Panning: + Panning: + + + + LEFT + KIRI + + + + Left gain: + Kekuatan Kiri: + + + + RIGHT + Kanan + + + + Right gain: + Kekuatan kanan: + + + + AmplifierControls + + + Volume + Kekuatan suara + + + + Panning + Panning + + + + Left gain + Kekuatan kiri + + + + Right gain + Kekuatan kanan + + + + AudioAlsaSetupWidget + + + DEVICE + PERANTI + + + + CHANNELS + SALURAN + + + + AudioFileProcessorView + + + Open sample + + + + + Reverse sample + Sample terbalik + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + Kekuatan: + + + + 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) + + + + + &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 + + + + + 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 + Kekuatan masuk + + + + Input noise + + + + + Output gain + Kekuatan keluar + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + Tentang + + + + About text here + + + + + Extended licensing here + + + + + 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 + Lesen + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + + + + + toolBar + + + + + 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 + + + + + Ctrl+N + + + + + &Open... + + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + Kekuatan keluar + + + + + Gain + + + + + Output volume + + + + + Input gain + Kekuatan masuk + + + + 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 + + + + + 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. + + + + + 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 + Kekuatan keluar + + + + 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 + + + + + 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 + + + + + + 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 + + + + + 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 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 + Kekuatan masuk + + + + Output gain + Kekuatan keluar + + + + 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 + Kekuatan masuk + + + + + + Gain + + + + + Output gain + Kekuatan keluar + + + + Bandwidth: + + + + + Octave + + + + + Resonance : + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + 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 + + + + + 48000 Hz + + + + + 88200 Hz + + + + + 96000 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! + + + + + 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% + + + + + Fader + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + Kekuatan suara + + + + 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 + + + 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 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 + + + + + + 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 + + + + + InstrumentMiscView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + + + + + Volume + Kekuatan suara + + + + 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 + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + Kekuatan suara + + + + Panning + Panning + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + InstrumentTrackView + + + Volume + Kekuatan suara + + + + Volume: + Kekuatan suara: + + + + VOL + VOL + + + + Panning + Panning + + + + Panning: + Panning: + + + + PAN + PAN + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 + + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + Volume + Kekuatan suara + + + + Volume: + Kekuatan suara: + + + + VOL + VOL + + + + Panning + Panning + + + + Panning: + Panning: + + + + PAN + 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 + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + 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... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + Tentang + + + + 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 + + + + + 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 + + + + 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) + + + + + 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 + + + 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 + Kekuatan suara + + + + + + Panning + 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 + Kekuatan suara + + + + + + 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 + + + + + OK + + + + + Cancel + + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.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 + + + + + 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 + + + + + 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: + + + + + 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 + + + + + + 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 + + + + + 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 + + + + + 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 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 + + + 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 + + + Rename... + + + + + ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + ReverbSCControls + + + Input gain + Kekuatan masuk + + + + Size + + + + + Color + + + + + Output gain + Kekuatan keluar + + + + 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 + + + + + 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 + Sample terbalik + + + + Set clip color + + + + + Use track color + + + + + SampleTrack + + + Volume + Kekuatan suara + + + + Panning + Panning + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + + + + + VOL + VOL + + + + Panning + Panning + + + + Panning: + Panning: + + + + PAN + PAN + + + + Channel %1: %2 + + + + + SampleTrackWindow + + + GENERAL SETTINGS + + + + + Sample volume + + + + + Volume: + Kekuatan suara: + + + + VOL + VOL + + + + Panning + Panning + + + + 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 + + + + + + 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 + + + + + Cancel + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + + + + + minute + + + + + Disabled + + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + Kekuatan suara + + + + Chip model + + + + + SidInstrumentView + + + Volume: + Kekuatan suara: + + + + 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 + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + Maximize + + + + + Restore + + + + + 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 + + + + + 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. + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + Kekuatan suara + + + + + + + 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 + + + + + + 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 + + + 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 + Sample terbalik + + + + 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 + Kekuatan masuk + + + + Output gain + Kekuatan keluar + + + + 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 + Kekuatan suara + + + + OrganicInstrumentView + + + Distortion: + + + + + Volume: + Kekuatan suara: + + + + 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: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + Input klip + + + + Clip input signal to 0 dB + + + + + WaveShaperControls + + + Input gain + Kekuatan masuk + + + + Output gain + Kekuatan keluar + + + diff --git a/data/locale/nb.ts b/data/locale/nb.ts new file mode 100644 index 000000000..3675b7f58 --- /dev/null +++ b/data/locale/nb.ts @@ -0,0 +1,16327 @@ + + + AboutDialog + + + About LMMS + Om LMMS + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + Versjon %1 (%2/%3, Qt %4, %5). + + + + About + Om + + + + LMMS - easy music production for everyone. + LMMS ­­– enkel musikkproduksjon for alle. + + + + Copyright © %1. + Copyright © %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> + + + + Authors + Opphavsfolk + + + + Involved + Involverte + + + + Contributors ordered by number of commits: + Bidragsytere sortert etter antall commits: + + + + Translation + Oversettelse + + + + 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! + + + + + License + Lisens + + + + AmplifierControlDialog + + + VOL + + + + + Volume: + Volum: + + + + PAN + + + + + Panning: + Panorering: + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + AmplifierControls + + + Volume + Volum + + + + Panning + Panorering + + + + Left gain + + + + + Right gain + + + + + AudioAlsaSetupWidget + + + DEVICE + ENHET + + + + CHANNELS + KANALER + + + + AudioFileProcessorView + + + Open sample + Åpne lydklipp + + + + Reverse sample + Reverser lydklippet + + + + Disable loop + Deaktiver løkke + + + + Enable loop + Aktiver løkke + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + Fortsett lydklippavspilling mellom noter + + + + Amplify: + Forsterk: + + + + Start point: + Startpunkt: + + + + End point: + Sluttpunkt: + + + + Loopback point: + + + + + AudioFileProcessorWaveView + + + Sample length: + Lydklipplengde: + + + + AudioJack + + + JACK client restarted + JACK-klienten omstartet + + + + 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 + JACK-tjeneren er nede + + + + 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-tjeneren ser ut til å ha blitt slått av, og det gikk ikke å starte en ny instans. Derfor kan ikke LMMS fortsette. Du bør lagre prosjektet ditt og starte JACK og LMMS på nytt. + + + + 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 + Endre sangglobal automasjon + + + + Remove song-global automation + Fjern sangglobal automasjon + + + + Remove all linked controls + Fjern alle tilkoblede kontroller + + + + Connected to %1 + Tilkoblet %1 + + + + Connected to controller + Tilkoblet kontroller + + + + Edit connection... + Rediger tilkobling ... + + + + Remove connection + Fjern tilkobling + + + + Connect to controller... + Koble til kontroller ... + + + + AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip with the context menu of a control! + Vennligst åpne en automasjonssekvens med kontekstmenyen til en kontroll! + + + + AutomationEditorWindow + + + Play/pause current clip (Space) + Spill/pause denne sekvensen (Mellomrom) + + + + Stop playing of current clip (Space) + Slutt å spille denne sekvensen (Mellomrom) + + + + Edit actions + Rediger handlinger + + + + Draw mode (Shift+D) + Tegnemodus (Shift+D) + + + + Erase mode (Shift+E) + Viskemodus (Shift+E) + + + + Draw outValues mode (Shift+C) + + + + + Flip vertically + Speil loddrett + + + + Flip horizontally + Speil vannrett + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + Kvantiseringskontroller + + + + Quantization + Kvantisering + + + + + Automation Editor - no clip + Automasjonseditor - intet mønster + + + + + Automation Editor - %1 + Automasjonseditor - %1 + + + + Model is already connected to this clip. + Modellen er alt koblet til denne sekvensen + + + + AutomationClip + + + Drag a control while pressing <%1> + Hold og dra en kontroll mens du trykker <%1> + + + + AutomationClipView + + + Open in Automation editor + Åpne i automasjonseditor + + + + Clear + + + + + Reset name + Tilbakestill navn + + + + Change name + Endre navn + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + Modellen er alt koblet til denne sekvensen + + + + 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 + Tilbakestill navn + + + + Change name + Endre navn + + + + 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 + + + + + CarlaAboutW + + + About Carla + + + + + About + Om + + + + About text here + + + + + Extended licensing here + + + + + 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 + Lisens + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Fil + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + &Hjelp + + + + toolBar + + + + + Disk + + + + + + Home + + + + + Transport + + + + + Playback Controls + + + + + Time Information + + + + + Frame: + + + + + 000'000'000 + + + + + Time: + + + + + 00:00:00 + + + + + BBT: + + + + + 000|00|0000 + + + + + Settings + Innstillinger + + + + BPM + + + + + Use JACK Transport + + + + + Use Ableton Link + + + + + &New + &Ny + + + + Ctrl+N + + + + + &Open... + &Åpne + + + + + Open... + + + + + Ctrl+O + + + + + &Save + %Lagre + + + + Ctrl+S + + + + + Save &As... + Lagre &som ... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + &Avslutt + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + Innstillinger + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + Stier + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + + + + + ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + KANAL + + + + 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 + + + + + &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 + + + + + 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 + Cutoff-frekvens + + + + + RESO + + + + + + Resonance + Resonans + + + + + 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 + + + + + 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 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: + + + + + 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 + + + + + 48000 Hz + + + + + 88200 Hz + + + + + 96000 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! + + + + + 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% + + + + + Fader + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + Volum + + + + 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 + + + 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 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) + oktav(er) + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + Akkord: + + + + Direction: + + + + + Mode: + + + + + InstrumentFunctionNoteStacking + + + octave + oktav + + + + + Major + dur + + + + Majb5 + durb5 + + + + minor + moll + + + + minb5 + mollb5 + + + + 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 + Harmonisk moll + + + + Melodic minor + Melodisk moll + + + + Whole tone + Heltone + + + + Diminished + Forminsket + + + + Major pentatonic + Dur pentatonisk + + + + Minor pentatonic + Moll pentatonisk + + + + Jap in sen + + + + + Major bebop + Dur bebop + + + + Dominant bebop + + + + + Blues + + + + + Arabic + Arabisk + + + + Enigmatic + + + + + Neopolitan + Neapolitansk + + + + Neopolitan minor + Napolitansk moll + + + + Hungarian minor + Ungarsk moll + + + + Dorian + Dorisk + + + + Phrygian + + + + + Lydian + Lydisk + + + + Mixolydian + Miksolydisk + + + + Aeolian + Eolisk + + + + Locrian + Lokrisk + + + + Minor + Moll + + + + Chromatic + Kromatisk + + + + Half-Whole Diminished + Halv-hel forminsket + + + + 5 + + + + + Phrygian dominant + Frygisk dominant + + + + Persian + Persisk + + + + Chords + Akkorder + + + + Chord type + Akkordtype + + + + Chord range + Akkordspenn + + + + InstrumentFunctionNoteStackingView + + + STACKING + STABLING + + + + Chord: + Akkord: + + + + RANGE + + + + + Chord range: + Akkordspenn: + + + + octave(s) + oktav(er) + + + + InstrumentMidiIOView + + + ENABLE MIDI INPUT + AKTIVER MIDI-INPUT + + + + ENABLE MIDI OUTPUT + AKTIVER 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-enheter å motta MIDI-hendelser fra + + + + MIDI devices to send MIDI events to + MIDI-enheter å sende MIDI-hendelser til + + + + CUSTOM BASE VELOCITY + + + + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + + + + + BASE VELOCITY + BASISVELOCITY + + + + InstrumentMiscView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + VOLUM + + + + Volume + Volum + + + + CUTOFF + + + + + + Cutoff frequency + Cutoff-frekvens + + + + RESO + + + + + Resonance + Resonans + + + + 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 + Volum + + + + Panning + Panorering + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + InstrumentTrackView + + + Volume + Volum + + + + Volume: + Volum: + + + + VOL + + + + + Panning + Panorering + + + + Panning: + Panorering: + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 + + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + Volume + Volum + + + + Volume: + Volum: + + + + VOL + + + + + Panning + Panorering + + + + Panning: + Panorering: + + + + 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 + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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: + Faseforskyvning: + + + + 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 + Genererer bølgetabeller + + + + Initializing data structures + Initialiserer datastrukturer + + + + Opening audio and midi devices + Åpner lyd- og MIDI-enheter + + + + Launching mixer threads + Starter miksertråder + + + + MainWindow + + + Configuration file + Konfigurasjonsfil + + + + Error while parsing configuration file at line %1:%2: %3 + Feil under tolking av konfigurasjonsfil på linje %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 + Prosjektgjenoppretting + + + + 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 finnes en gjenopprettingsfil. Det virker som forrige økt ikke ble avsluttet på riktig måte eller som det allerede kjører en instans av LMMS. Ønsker du å gjenopprette prosjektet fra denne økta? + + + + + Recover + Gjenopprett + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Gjenopprett fila. Vennligst ikke kjør mer enn én instans av LMMS når du gjør dette. + + + + + Discard + Forkast + + + + Launch a default session and delete the restored files. This is not reversible. + Start en vanlig økt og slett de gjenopprettede filene. Dette kan ikke angres. + + + + Version %1 + Versjon %1 + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + Mine prosjekter + + + + My Samples + Mine lydklipp + + + + My Presets + Mine presets + + + + My Home + Hjem + + + + Root directory + + + + + Volumes + + + + + My Computer + Min datamaskin + + + + &File + &Fil + + + + &New + &Ny + + + + &Open... + &Åpne + + + + Loading background picture + + + + + &Save + %Lagre + + + + Save &As... + Lagre &som ... + + + + Save as New &Version + Lagre som ny &versjon + + + + Save as default template + + + + + Import... + &Importer ... + + + + E&xport... + &Eksporter ... + + + + E&xport Tracks... + &Eksporter spor ... + + + + Export &MIDI... + + + + + &Quit + &Avslutt + + + + &Edit + &Rediger + + + + Undo + Angre + + + + Redo + Gjør om + + + + Settings + Innstillinger + + + + &View + + + + + &Tools + &Verktøy + + + + &Help + &Hjelp + + + + Online Help + Hjelp på nettet + + + + Help + Hjelp + + + + About + Om + + + + Create new project + Lag et nytt prosjekt + + + + Create new project from template + Lag et nytt prosjekt fra mal + + + + Open existing project + Åpne eksisterende prosjekt + + + + Recently opened projects + Nylig åpnede prosjekter + + + + Save current project + Lagre nåværende prosjekt + + + + Export current project + Eksporter nåverende prosjekt + + + + Metronome + + + + + + Song Editor + + + + + + Beat+Bassline Editor + + + + + + Piano Roll + Pianorull + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + Uten navn + + + + 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 + Prosjektet er ikke lagret + + + + The current project was modified since last saving. Do you want to save it now? + Det nåverende prosjektet har blitt endret siden forrige lagring. Ønsker du å lagre det nå? + + + + Open Project + Åpne prosjekt + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + Lagre prosjekt + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + Hjelp er ikke tilgjengelig + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + Det er for øyeblikket ingen hjelp tilgjengelig i LMMS. +Vennligst gå til http://lmms.sf.net/wiki for dokumentasjon om LMMS. + + + + Controller Rack + + + + + Project Notes + Prosjektnotater + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + Aktiver noteetiketter i pianorullen + + + + 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 + + + + 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) + JACK-tjeneren er nede + + + + 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 + &Fil + + + + &Edit + &Rediger + + + + &Quit + &Avslutt + + + + &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 + + + 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 + Volum + + + + + + Panning + Panorering + + + + + + 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 + Volum + + + + + + 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 + + + + + OK + + + + + Cancel + + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + MidiClipView + + + Open in piano-roll + Åpne i pianorull + + + + Set as ghost in piano-roll + + + + + Clear all notes + + + + + Reset name + Tilbakestill navn + + + + Change name + Endre navn + + + + 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 + + + + + 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: + + + + + PianoRollWindow + + + Play/pause current clip (Space) + Spill/pause denne sekvensen (Mellomrom) + + + + 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) + Slutt å spille denne sekvensen (Mellomrom) + + + + Edit actions + Rediger handlinger + + + + Draw mode (Shift+D) + Tegnemodus (Shift+D) + + + + Erase mode (Shift+E) + Viskemodus (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 + Kvantisering + + + + 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 + + + + + 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 + + + + + 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 + Innstillinger + + + + 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 + Prosjektnotater + + + + 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 + + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QObject + + + Reload Plugin + + + + + Show GUI + + + + + Help + Hjelp + + + + 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 + &Nylig åpnede prosjekter + + + + 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 + + + + + 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 + Reverser lydklippet + + + + Set clip color + + + + + Use track color + + + + + SampleTrack + + + Volume + Volum + + + + Panning + Panorering + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + Panorering + + + + Panning: + Panorering: + + + + PAN + + + + + Channel %1: %2 + + + + + SampleTrackWindow + + + GENERAL SETTINGS + + + + + Sample volume + + + + + Volume: + Volum: + + + + VOL + + + + + Panning + Panorering + + + + Panning: + Panorering: + + + + 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 + Innstillinger + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + Aktiver verktøytips + + + + 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 + La effektene kjøre selv uten 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 + Arbeidsmappe for LMMS + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + Bakgrunnsdesign + + + + 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 + Stier + + + + OK + + + + + Cancel + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + + + + + minute + + + + + Disabled + + + + + SidInstrument + + + Cutoff frequency + Cutoff-frekvens + + + + Resonance + Resonans + + + + Filter type + + + + + Voice 3 off + + + + + Volume + Volum + + + + Chip model + + + + + SidInstrumentView + + + Volume: + Volum: + + + + 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 + + + + + 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 + + + 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 + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + High quality mode + Høykvalitetsmodus + + + + + + 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 + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + Rediger handlinger + + + + 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 + + + + + Maximize + + + + + Restore + + + + + 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 + + + + + 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. + + + + + 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 + + + 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 + + + + + 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 + grader + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + Volum + + + + + + + Panning + Panorering + + + + + + + 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 + + + + + Xpressive + + + 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 + Reverser lydklippet + + + + 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. + Klikk her for en sagtannbølge. + + + + Triangle wave + + + + + Click here for a triangle-wave. + Klikk her for en trekantbølge. + + + + Square wave + + + + + Click here for a square-wave. + Klikk her for en firkantbølge. + + + + 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. + Klikk her for en eksponentialbølge. + + + + Click here for white-noise. + Klikk her for hvit støy. + + + + 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 + Volum + + + + OrganicInstrumentView + + + Distortion: + + + + + Volume: + Volum: + + + + 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: + + + + + + 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 + + + + diff --git a/data/locale/nl.ts b/data/locale/nl.ts index 029ff9f14..ad630a249 100644 --- a/data/locale/nl.ts +++ b/data/locale/nl.ts @@ -2,99 +2,112 @@ AboutDialog + About LMMS Over LMMS - Version %1 (%2/%3, Qt %4, %5) - Versie %1 (%2/%3, Qt %4, %5) - - - About - Over - - - LMMS - easy music production for everyone - LMMS - eenvoudige muziekproductie voor iedereen - - - Authors - Auteurs - - - Translation - Vertaling - - - 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! - Nederlandse vertaling door: - -Thomas De Rocker (RockyTDR) -Koen Stroobants (kstr) -Carlo Tas (caLRo) - -Als u interesse heeft om LMMS naar een andere taal te vertalen, of als u de bestaande vertalingen wilt verbeteren, dan mag u ons zeker helpen! Contacteer de beheerder! - -https://www.transifex.com/lmms/teams/61632/nl/ - - - License - Licentie - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + Versie %1 (%2/%3, Qt %4, %5). + + + + About + Over + + + + LMMS - easy music production for everyone. + LMMS - eenvoudige muziekproductie voor iedereen. + + + + Copyright © %1. + Auteursrecht © %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> + + + + Authors + Auteurs + + + Involved Betrokken + Contributors ordered by number of commits: Bijdragers, geordend volgens het aantal commits: - Copyright © %1 - Auteursrecht © %1 + + Translation + Vertaling - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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! + Nederlandse vertaling door Thomas De Rocker (RockyTDR), Koen Stroobants (kstr) en Carlo Tas (caLRo). +Als u interesse heeft om LMMS naar een andere taal te vertalen, of als u de bestaande vertalingen wilt verbeteren, dan mag u ons zeker helpen! Contacteer de beheerder! + + + + License + Licentie AmplifierControlDialog + VOL VOL + Volume: Volume: + PAN - PAN + BAL + Panning: - Panning: + Balans: + LEFT LINKS + Left gain: Linker versterking: + RIGHT RECHTS + Right gain: Rechter versterking: @@ -102,18 +115,22 @@ https://www.transifex.com/lmms/teams/61632/nl/ AmplifierControls + Volume Volume + Panning - Panning + Balans + Left gain Linker versterking + Right gain Rechter versterking @@ -121,10 +138,12 @@ https://www.transifex.com/lmms/teams/61632/nl/ AudioAlsaSetupWidget + DEVICE APPARAAT + CHANNELS KANALEN @@ -132,85 +151,60 @@ https://www.transifex.com/lmms/teams/61632/nl/ AudioFileProcessorView - Open other sample - Andere sample openen - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Klik hier als u een ander audiobestand wilt openen. Er verschijnt een dialoogvenster waarin u het bestand kunt selecteren. Instellingen zoals herhaalmodus, begin- en eindpunten, waarde van versterking enzovoort worden niet hersteld. Dus, het klinkt misschien niet zoals de originele sample. + + Open sample + Sample openen + Reverse sample Sample omdraaien - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Als u deze knop inschakelt, wordt de hele sample omgekeerd. Dit is bruikbaar voor leuke effecten, zoals een 'reversed crash'. - - - Amplify: - Versterken: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Met deze knop kunt u de versterkingsratio instellen. Wanneer u een waarde van 100 % instelt, wordt uw sample niet gewijzigd. Anders wordt hij omhoog of omlaag versterkt (het eigenlijke sample-bestand wordt niet aangeraakt!) - - - Startpoint: - Beginpunt: - - - Endpoint: - Eindpunt: - - - Continue sample playback across notes - Doorgaan met afspelen van sample tussen noten - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Inschakelen van deze optie laat de sample doorspelen tussen verschillende noten - als u de toonhoogte wijzigt, of de noot-lengte stopt voor het einde van de sample, dan zal de volgende afgespeelde noot doorgaan waar de vorige gebleven was. Om het afspelen te herstellen naar het begint van de sample, voegt u een noot toe onderaan het toetsenbord (< 20 Hz) - - + Disable loop Herhalen uitschakelen - This button disables looping. The sample plays only once from start to end. - Deze knop schakelt herhalen uit. De sample speelt slechts één keer van begin tot einde. - - + Enable loop Herhalen inschakelen - This button enables forwards-looping. The sample loops between the end point and the loop point. - Deze knop schakelt voorwaarts-herhalen in. De sample herhaalt tussen het eindpunt en het herhaalpunt. + + Enable ping-pong loop + Ping-pong herhalen inschakelen - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Deze knop schakelt ping-pong-herhalen in. De sample herhaalt achteruit en vooruit tussen het eindpunt en het herhaalpunt. + + Continue sample playback across notes + Doorgaan met afspelen van sample tussen noten - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Met deze knop kunt u het punt instellen waar AudioFileProcessor moet beginnen met het afspelen van uw sample. + + Amplify: + Versterken: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Met deze knop kunt u het punt instellen waar AudioFileProcessor moet stoppen met het afspelen van uw sample. + + Start point: + Beginpunt: + + End point: + Eindpunt: + + + Loopback point: Herhaalpunt: - - With this knob you can set the point where the loop starts. - Met deze knop kunt u het punt instellen waar de herhaling begint. - AudioFileProcessorWaveView + Sample length: Sample-lengte: @@ -218,447 +212,469 @@ https://www.transifex.com/lmms/teams/61632/nl/ 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 - CLIENT-NAAM + + Client name + Naam client - CHANNELS - KANALEN + + Channels + Kanalen - AudioOss::setupWidget + AudioOss - DEVICE - APPARAAT + + Device + Apparaat - CHANNELS - KANALEN + + Channels + Kanalen AudioPortAudio::setupWidget - BACKEND - BACKEND + + Backend + Backend - DEVICE - APPARAAT + + Device + Apparaat - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - APPARAAT + + Device + Apparaat - CHANNELS - KANALEN + + Channels + Kanalen AudioSdl::setupWidget - DEVICE - APPARAAT + + Device + Apparaat - AudioSndio::setupWidget + AudioSndio - DEVICE - APPARAAT + + Device + Apparaat - CHANNELS - KANALEN + + Channels + Kanalen AudioSoundIo::setupWidget - BACKEND - BACKEND + + Backend + Backend - DEVICE - APPARAAT + + 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 - 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... - - + 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 - Please open an automation pattern with the context menu of a control! + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip with the context menu of a control! Open een automatiseringspatroon met het contextmenu van een control! - - Values copied - Waarden gekopieerd - - - All selected values were copied to the clipboard. - Alle geselecteerde waarden zijn naar het klembord gekopieerd. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) Huidig patroon afspelen/pauzeren (Spatie) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Klik hier als u het huidige patroon wilt afspelen. Dit is handig tijdens het bewerken. Het patroon wordt automatisch herhaald wanneer het einde bereikt wordt. - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Stoppen met afspelen van huidig patroon (Spatie) - Click here if you want to stop playing of the current pattern. - Klik hier als u het afspelen van het huidig patroon wilt stoppen. - - - Draw mode (Shift+D) - Tekenmodus (Shift+D) - - - Erase mode (Shift+E) - Wissen-modus (Shift+E) - - - Flip vertically - Verticaal omdraaien - - - Flip horizontally - Horizontaal omdraaien - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Klik hier en het patroon zal geïnverteerd worden. De punten worden in de y-richting omgedraaid. - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Klik hier en het patroon zal omgedraaid worden. De punten worden in de x-richting omgedraaid. - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Klik hier en de tekenmodus zal ingeschakeld worden. In deze modus kunt u enkelvoudige waarden toevoegen en verplaatsen. Dit is de standaardmodus die het merendeel van de tijd gebruikt wordt. U kunt ook 'Shift+D' drukken op uw toetsenbord om deze modus in te schakelen. - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Klik hier en de verwijdermodus zal ingeschakeld worden. In deze modus kunt u enkelvoudige waarden verwijderen. U kunt ook 'Shift+E' drukken op uw toetsenbord om deze modus in te schakelen. - - - Discrete progression - Discrete progressie - - - Linear progression - Lineaire progressie - - - Cubic Hermite progression - Kubische Hermite-progressie - - - Tension value for spline - Spanningswaarde voor spline - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Een hogere spanningswaarde kan een vlakkere curve maken maar een aantal waarden overschrijden. Een lage spanningswaarde zal de helling van de curve laten afvlakken bij elk controlepunt. - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Klik hier om discrete progressies te kiezen voor dit automatiseringspatroon. De waarde van het verbonden object zal constant blijven tussen controlepunten en onmiddellijk ingesteld worden op de nieuwe waarde wanneer elk controlepunt bereikt wordt. - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Klik hier om lineaire progressies te kiezen voor dit automatiseringspatroon. De waarde van het verbonden object zal gestaag over de tijd veranderen tussen controlepunten om de correcte waarde op elk controlepunt te bereiken zonder plotselinge verandering. - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Klik hier om kubische hermite-progressies te kiezen voor dit automatiseringspatroon. De waarde van het verbonden object zal wijzigen in een gladde curve en in de pieken en dalen bewegen. - - - Cut selected values (%1+X) - Geselecteerde waardes knippen (%1+X) - - - Copy selected values (%1+C) - Geselecteerde waardes kopiëren (%1+C) - - - Paste values from clipboard (%1+V) - Waardes van het klembord plakken (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klik hier en de geselecteerde waarden zullen geplakt worden naar het klembord. U kunt ze overal in om het even welk patroon plakken door te klikken op de "plakken"-knop. - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klik hier en geselecteerde waarden zullen gekopieerd worden naar het klembord. U kunt ze overal in om het even welk patroon plakken door te klikken op de 'plakken'-knop. - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Klik hier en de waarden van het klembord zullen worden geplakt op de eerste zichtbare maat. - - - Tension: - Spanning: - - - Automation Editor - no pattern - Automatisering-editor - geen patroon - - - Automation Editor - %1 - Automatisering-editor - %1 - - + Edit actions Bewerking-acties + + Draw mode (Shift+D) + Tekenmodus (Shift+D) + + + + Erase mode (Shift+E) + Wissen-modus (Shift+E) + + + + Draw outValues mode (Shift+C) + + + + + Flip vertically + Verticaal omdraaien + + + + Flip horizontally + Horizontaal omdraaien + + + Interpolation controls Interpolatiebediening - Timeline controls - Tijdlijnbediening + + 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 - Model is already connected to this pattern. - Model is reeds verbonden met dit patroon. - - + Quantization Kwantisatie - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Kwantisatie. Stelt de kleinste stap in voor het automatiseringspunt. Standaard stelt dit ook de lengte in; andere punten in het bereik worden gewist. Druk op <Ctrl> om dit gedrag te overriden. + + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> Sleep een bediening tijdens indrukken van <%1> - AutomationPatternView + AutomationClipView + Open in Automation editor Openen in automatisering-editor + Clear Wissen + Reset name Naam herstellen + Change name Naam wijzigen - %1 Connections - %1 verbindingen - - - Disconnect "%1" - Verbinding verbreken met "%1" - - + Set/clear record Opnemen instellen/wissen + Flip Vertically (Visible) Verticaal omdraaien (zichtbaar) + Flip Horizontally (Visible) Horizontaal omdraaien (zichtbaar) - Model is already connected to this pattern. + + %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 - BBEditor + 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) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Klik hier om de huidige beat/baslijn af te spelen. De beat/baslijn wordt automatisch herhaald wanneer het einde bereikt wordt. - - - Click here to stop playing of current beat/bassline. - Klik hier om het afspelen van de huidige beat/baslijn te stoppen. - - - Add beat/bassline - Beat/baslijn toevoegen - - - Add automation-track - Automatisering-track toevoegen - - - Remove steps - Stappen verwijderen - - - Add steps - Stappen toevoegen - - + Beat selector Beat-selector + Track and step actions Track- en stap-acties - Clone Steps - Stappen klonen + + Add beat/bassline + Beat/baslijn toevoegen + + Clone beat/bassline clip + + + + Add sample-track Sample-track toevoegen + + + Add automation-track + Automatisering-track toevoegen + + + + Remove steps + Stappen verwijderen + + + + Add steps + Stappen toevoegen + + + + Clone Steps + Stappen klonen + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor In beat- en baslijn-editor openen + Reset name Naam herstellen + Change name Naam wijzigen - - Change color - Kleur veranderen - - - Reset color to default - Kleur herstellen naar standaard - - BBTrack + PatternTrack + Beat/Bassline %1 Beat/baslijn %1 + Clone of %1 Kloon van %1 @@ -666,26 +682,32 @@ https://www.transifex.com/lmms/teams/61632/nl/ BassBoosterControlDialog + FREQ FREQ + Frequency: Frequentie: + GAIN GAIN + Gain: Gain: + RATIO RATIO + Ratio: Ratio: @@ -693,14 +715,17 @@ https://www.transifex.com/lmms/teams/61632/nl/ BassBoosterControls + Frequency Frequentie + Gain Gain + Ratio Ratio @@ -708,107 +733,2344 @@ https://www.transifex.com/lmms/teams/61632/nl/ BitcrushControlDialog + IN IN + OUT UIT + + GAIN GAIN - Input Gain: + + Input gain: Invoer-gain: - Input Noise: - Invoer-ruis: - - - Output Gain: - Uitvoer-gain: - - - CLIP - CLIP - - - Output Clip: - Uitvoer-clip: - - - Rate Enabled - Ratio ingeschakeld - - - Enable samplerate-crushing - Samplerate-crushing inschakelen - - - Depth Enabled - Diepte ingeschakeld - - - Enable bitdepth-crushing - Bitdiepte-crushing inschakelen - - - Sample rate: - Samplerate: - - - Stereo difference: - Stereo-verschil: - - - Levels: - Niveaus - - + 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 + - CaptionMenu + 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 + + + + CarlaAboutW + + + About Carla + + + + + About + Over + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Bestand + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help &Help - Help (not available) - Help (niet beschikbaar) + + toolBar + + + + + 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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - Klik hier om de grafische gebruikersinterface (GUI) van Carla weer te geven of te verbergen. + + Settings + Instellingen + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + Paden + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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: + 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 @@ -816,58 +3078,73 @@ https://www.transifex.com/lmms/teams/61632/nl/ 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. @@ -875,135 +3152,181 @@ https://www.transifex.com/lmms/teams/61632/nl/ ControllerRackView + Controller Rack Controller-rack + Add Toevoegen + Confirm Delete - Verwijderen bevestigen + 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. + Verwijderen beVestigen? Er zijn bestaande verbindingen geassocieerd met deze controller. Er is geen manier om dit ongedaan te maken. ControllerView + Controls Besturingen - Controllers are able to automate the value of a knob, slider, and other controls. - Controllers kunnen de waarde van een knop of schuif en andere bedieningen automatiseren. - - + 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 - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: + + Band 1/2 crossover: Band 1/2 crossover: - Band 2/3 Crossover: + + Band 2/3 crossover: Band 2/3 crossover: - Band 3/4 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 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 3 gain: - Band 4 Gain: + + Band 4 gain + Band 4 gain + + + + Band 4 gain: Band 4 gain: - Band 1 Mute + + Band 1 mute Band 1 gedempt - Mute Band 1 + + Mute band 1 Band 1 dempen - Band 2 Mute + + Band 2 mute Band 2 gedempt - Mute Band 2 + + Mute band 2 Band 2 dempen - Band 3 Mute + + Band 3 mute Band 3 gedempt - Mute Band 3 + + Mute band 3 Band 3 dempen - Band 4 Mute + + Band 4 mute Band 4 gedempt - Mute Band 4 + + Mute band 4 Band 4 dempen DelayControls - Delay Samples + + Delay samples Samples vertragen + Feedback Feedback - Lfo Frequency - Lfo-frequentie + + LFO frequency + LFO frequentie - Lfo Amount - Lfo-hoeveelheid + + LFO amount + LFO-hoeveelheid + Output gain Uitvoer-gain @@ -1011,228 +3334,528 @@ https://www.transifex.com/lmms/teams/61632/nl/ DelayControlsDialog - Lfo Amt - Lfo hvh - - - Delay Time - Delay-tijd - - - Feedback Amount - Feedback-hoeveelheid - - - Lfo - Lfo - - - Out Gain - Uitvoer-gain - - - Gain - Gain - - + 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 + + + + + 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 + Waarde instellen + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + + + + + Buffer size: + + + + + Sample rate: + Samplerate: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + + DualFilterControlDialog - Filter 1 enabled - Filter 1 ingeschakeld - - - Filter 2 enabled - Filter 2 ingeschakeld - - - Click to enable/disable Filter 1 - Klikken om filter 1 in/uit te schakelen - - - Click to enable/disable Filter 2 - Klikken om filter 2 in/uit te schakelen - - + + 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 1 frequency + + 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 2 frequency + + Cutoff frequency 2 Cutoff-frequentie 2 + Q/Resonance 2 Q/Resonantie 2 + Gain 2 Gain 2 - LowPass - LowPass + + + Low-pass + Low-pass - HiPass - HiPass + + + Hi-pass + High-pass - BandPass csg + + + Band-pass csg BandPass csg - BandPass czpg + + + Band-pass czpg Bandpass czpg + + Notch Notch - Allpass - Allpass + + + All-pass + All-pass + + Moog Moog - 2x LowPass - 2 x LowPass + + + 2x Low-pass + 2x Low-pass - RC LowPass 12dB - RC LowPass 12 dB + + + RC Low-pass 12 dB/oct + RC low-pass 12 dB/oct - RC BandPass 12dB - RC BandPass 12dB + + + RC Band-pass 12 dB/oct + RC band-pass 12 dB/oct - RC HighPass 12dB - RC HighPass 12 dB + + + RC High-pass 12 dB/oct + RC high-pass 12 dB/oct - RC LowPass 24dB - RC LowPass 24 dB + + + RC Low-pass 24 dB/oct + RC low-pass 24 dB/oct - RC BandPass 24dB - RC BandPass 24 dB + + + RC Band-pass 24 dB/oct + RC band-pass 24 dB/oct - RC HighPass 24dB - RC HighPass 24 dB + + + RC High-pass 24 dB/oct + RC high-pass 24 dB/oct - Vocal Formant Filter - Stemvormingsfilter + + + Vocal Formant + Stemvorming + + 2x Moog 2 x Moog - SV LowPass - SV LowPass + + + SV Low-pass + SV low-pass - SV BandPass - SV BandPass + + + SV Band-pass + SV band-pass - SV HighPass - SV HighPass + + + SV High-pass + SV high-pass + + SV Notch SV Notch + + Fast Formant Snel vormend + + Tripole Tripole @@ -1240,41 +3863,55 @@ https://www.transifex.com/lmms/teams/61632/nl/ Editor + + Transport controls + Afspeelbediening + + + Play (Space) Afspelen (spatie) + Stop (Space) Stoppen (spatie) + Record Opnemen + Record while playing Opnemen tijdens afspelen - Transport controls - Afspeelbediening + + Toggle Step Recording + Stap-opnemen in-/uitschakelen Effect + Effect enabled Effect ingeschakeld + Wet/Dry mix Wet/dry-mix + Gate Gate + Decay Decay @@ -1282,6 +3919,7 @@ https://www.transifex.com/lmms/teams/61632/nl/ EffectChain + Effects enabled Effecten ingeschakeld @@ -1289,10 +3927,12 @@ https://www.transifex.com/lmms/teams/61632/nl/ EffectRackView + EFFECTS CHAIN EFFECT-CHAIN + Add effect Effect toevoegen @@ -1300,22 +3940,28 @@ https://www.transifex.com/lmms/teams/61632/nl/ EffectSelectDialog + Add effect Effect toevoegen + + Name Naam + Type Type + Description Beschrijving + Author Auteur @@ -1323,90 +3969,57 @@ https://www.transifex.com/lmms/teams/61632/nl/ EffectView - Toggles the effect on or off. - Schakelt het effect in of uit. - - + On/Off Aan/uit + W/D W/D + Wet Level: Wet-niveau: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - De wet/dry-knop stelt de ratio tussen het invoersignaal en het effectsignaal in die de uitvoer vormen. - - + DECAY DECAY + Time: Tijd: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - De decay-knop regelt hoeveel stilte-buffers moeten passeren voordat de plugin stopt met verwerken. Kleinere waarden zullen de cpu-overhead verminderen maar lopen het risico van het afknippen van de staart van delay- en reverb-effecten. - - + GATE GATE + Gate: Gate: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - De gate-knop bedient het signaalniveau dat beschouwd wordt als 'stilte' tijdens het beslissen van wanneer te stoppen met verwerken van signalen. - - + Controls Besturingen - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Effect-plugins functioneren als een ketting van effecten waar het signaal verwerkt zal worden van boven naar onder. - -De aan/uit-schakelaar laat u toe om een bepaalde plugin op elk moment te omzeilen (bypass). - -De wet/dry-knop bedient de balans tussen het invoersignaal en het effectsignaal dat de resulterende uitvoer is van het effect. De invoer voor het stadium is de uitvoer van het vorige stadium. Dus, het droog ('dry') signaal voor effecten lager in de ketting bevat alle vorige effecten. - -De decay-knop bedient hoe lang het signaal zal blijven verwerkt worden nadat de noten vrijgelaten zijn. Het effect zal stoppen met verwerken van signalen wanneer het volume onder een bepaalde grens gezakt is voor een bepaalde tijd. Deze knop stelt de 'bepaalde tijd' in. Langere tijden zullen meer cpu vereisen, dus dit getal wordt voor de meeste effecten best laag ingesteld. Het moet verhoogd worden voor effecten die lange periodes van stilte produceren, bijvoorbeeld delays. - -De gate-knop bedient de 'bepaalde grens' voor het automatisch afsluiten van het effect. De klok voor de 'bepaalde tijd' zal beginnen zodra het niveau van het verwerkte signaal onder het niveau komt dat opgegeven wordt met deze knop. - -De bedieningen-knop opent een dialoog voor het bewerken van de parameters van het effect. - -Rechtsklikken zal een contextmenu laten verschijnen waar u de volgorde kunt wijzigen waarin de effecten verwerkt worden of een effect kunt verwijderen. - - + Move &up Om&hoog verplaatsen + Move &down Om&laag verplaatsen + &Remove this plugin Deze plugin ve&rwijderen @@ -1414,408 +4027,409 @@ Rechtsklikken zal een contextmenu laten verschijnen waar u de volgorde kunt wijz EnvelopeAndLfoParameters - Predelay - Predelay + + Env pre-delay + Env pre-delay - Attack - Attack + + Env attack + Env attack - Hold - Hold + + Env hold + Env hold - Decay - Decay + + Env decay + Env decay - Sustain - Sustain + + Env sustain + Env sustain - Release - Release + + Env release + Env release - Modulation - Modulatie + + Env mod amount + Env mod-hoeveelheid - LFO Predelay - LFO Predelay + + LFO pre-delay + LFO pre-delay - LFO Attack - LFO Attack + + LFO attack + LFO-attack - LFO speed - LFO-snelheid + + LFO frequency + LFO frequentie - LFO Modulation - LFO-modulatie + + LFO mod amount + LFO mod-hoeveelheid - LFO Wave Shape - LFO wave shape + + LFO wave shape + LFO golfvorm - Freq x 100 - Freq x 100 + + LFO frequency x 100 + LFO frequentie x 100 - Modulate Env-Amount - Moduleren env-intensiteit + + Modulate env amount + Env-intensiteit moduleren EnvelopeAndLfoView + + DEL DEL - Predelay: - Predelay: - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Gebruik deze knop om de predelay van de huidige envelope in te stellen. Hoe groter deze waarde, hoe langer de tijd voor de start van de eigenlijke envelope. + + + Pre-delay: + Pre-delay: + + ATT ATT + + Attack: Attack: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Gebruik deze knop om de attack-tijd van de huidige envelope in te stellen. Hoe groter deze waarde, hoe langer de envelope nodig heeft om naar het attack-niveau toe te nemen. Kies een kleine waarde voor instrumenten zoals piano's en een grote waarde voor strings. - - + HOLD HOLD + Hold: Hold: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Gebruik deze knop om de hold-tijd van de huidige envelope in te stellen. Hoe groter deze waarde, hoe langer de envelope het attack-niveau aanhoudt voordat hij begint te verminderen naar sustain-niveau. - - + DEC DEC + Decay: Decay: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Gebruik deze knop om de decay-tijd van de huidige envelope in te stellen. Hoe groter deze waarde, hoe langer de envelope nodig heeft om te verminderen van attack-niveau naar sustain-niveau. Kies een kleine waarde voor instrumenten zoals piano's. - - + SUST SUST + Sustain: Sustain: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Gebruik deze knop om het sustain-niveau van de huidige envelope in te stellen. Hoe groter deze waarde, hoe hoger het niveau waarop de envelope blijft voordat hij naar nul gaat. - - + REL REL + Release: Release: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Gebruik deze knop om de release-tijd van de huidige envelope in te stellen. Hoe groter deze waarde, hoe langer de envelope nodig heeft om te verminderen van sustain-niveau naar nul. Kies een grote waarde voor zachte instrumenten zoals strings. - - + + AMT INT + + Modulation amount: Modulatie-intensiteit: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Gebruik deze knop om de hoeveelheid modulatie van de huidige envelope in te stellen. Hoe groter deze waarde, hoe meer de overeenkomstige grootte (bijvoorbeeld volume of cutoff-frequentie) zal beïnvloed worden door deze envelope. - - - LFO predelay: - LFO predelay: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Gebruik deze knop om de predelay-tijd van de huidige LFO in te stellen. Hoe groter deze waarde, hoe langer de tijd voordat de LFO start met oscilleren. - - - LFO- attack: - LFO-attack: - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Gebruik deze knop om de attack-tijd van de huidige LFO in te stellen. Hoe groter deze waarde, hoe langer de LFO nodig heeft om zijn amplitude naar het maximum te brengen. - - + SPD SPD - LFO speed: - LFO-snelheid: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Gebruik deze knop om de snelheid van de huidige LFO in te stellen. Hoe groter deze waarde, hoe sneller de LFO oscilleert en hoe sneller uw effect zal zijn. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Gebruik deze knop om de hoeveelheid modulatie van de huidige LFO in te stellen. Hoe groter deze waarde, hoe meer de geselecteerde grootte (bijvoorbeeld volume of cutoff-frequentie) zal beïnvloed worden door deze LFO. - - - Click here for a sine-wave. - Klik hier voor een sinusgolf. - - - Click here for a triangle-wave. - Klik hier voor een driehoeksgolf. - - - Click here for a saw-wave for current. - Klik hier voor een zaagtandgolf. - - - Click here for a square-wave. - Klik hier voor een blokgolf. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Klik hier voor een aangepaste golf. Sleep nadien een overeenkomstig samplebestand op de LFO-grafiek. + + Frequency: + Frequentie: + FREQ x 100 FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Klik hier als de frequentie van deze LFO vermenigvuldigd moet worden met 100. - - - multiply LFO-frequency by 100 + + Multiply LFO frequency by 100 LFO-frequentie vermenigvuldigen met 100 - MODULATE ENV-AMOUNT - ENV-INTENSITEIT MOD + + MODULATE ENV AMOUNT + ENV-INTENSITEIT MODULEREN - Click here to make the envelope-amount controlled by this LFO. - Klik hier om de envelope-hoeveelheid door deze LFO te laten regelen. - - - control envelope-amount by this LFO - envelope-hoeveelheid bedienen met deze LFO + + Control envelope amount by this LFO + Envelope-hoeveelheid bedienen met deze LFO + ms/LFO: ms/LFO: + Hint Tip - Drag a sample from somewhere and drop it in this window. - Sleep een sample van ergens en plaats hem in dit venster. - - - Click here for random wave. - Klik hier voor een willekeurige golf. + + 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 + + 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 + + High-shelf gain + High-shelf gain + HP res HP-res - Low Shelf res - Low shelf 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 + + High-shelf res + High-shelf res + LP res LP-res + HP freq HP-freq - Low Shelf freq - Low shelf 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 + + High-shelf freq + High-shelf freq + LP freq LP-freq + HP active HP actief - Low shelf active - Low shelf 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 + + 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 - lowpass-type + + Low-pass type + Low-pass type - high pass type - highpass-type + + High-pass type + High-pass type + Analyse IN IN analyseren + Analyse OUT UIT analyseren @@ -1823,85 +4437,108 @@ Rechtsklikken zal een contextmenu laten verschijnen waar u de volgorde kunt wijz EqControlsDialog + HP HP - Low Shelf - Low shelf + + Low-shelf + Low-shelf + Peak 1 Piek 1 + Peak 2 Piek 2 + Peak 3 Piek 3 + Peak 4 Piek 4 - High Shelf - High shelf + + High-shelf + High-shelf + LP LP - In Gain + + Input gain Invoer-gain + + + Gain Gain - Out Gain + + Output gain Uitvoer-gain + Bandwidth: Bandbreedte: + + Octave + Octaaf + + + Resonance : Resonantie: + Frequency: Frequentie: - lp grp - lp grp + + LP group + LP groep - hp grp - hp grp - - - Octave - Octaaf + + HP group + HP groep EqHandle + Reso: Reso: + BW: BW: + + Freq: Freq: @@ -1909,254 +4546,272 @@ Rechtsklikken zal een contextmenu laten verschijnen waar u de volgorde kunt wijz ExportProjectDialog + Export project Project exporteren - Output - Uitvoer - - - File format: - Bestandsformaat: - - - Samplerate: - Samplerate: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Bitrate: - - - 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 - - - Depth: - Diepte: - - - 16 Bit Integer - 16-bit integer - - - 32 Bit Float - 32-bit float - - - Quality settings - Kwaliteitsinstellingen - - - Interpolation: - Interpolatie: - - - Zero Order Hold - Zero order hold - - - Sinc Fastest - Sinc snelst - - - Sinc Medium (recommended) - Sinc medium (aanbevolen) - - - Sinc Best (very slow!) - Sinc best (zeer traag!) - - - Oversampling (use with care!): - Oversampling (wees voorzichtig!): - - - 1x (None) - 1x (geen) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Starten - - - Cancel - Annuleren - - - Export as loop (remove end silence) - Exporteren als loop (eindstilte verwijderen) + + Export as loop (remove extra bar) + Exporteren als loop (extra balk verwijderen) + Export between loop markers Exporteren tussen loopmarkeringen + + Render Looped Section: + Herhaalde sectie renderen: + + + + time(s) + keer + + + + File format settings + Bestandsformaat-instellingen + + + + File format: + Bestandsformaat: + + + + Sampling rate: + Samplerate: + + + + 44100 Hz + 44100 Hz + + + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Bitdiepte: + + + + 16 Bit integer + 16-bit integer + + + + 24 Bit integer + 24-bit integer + + + + 32 Bit float + 32-bit float + + + + Stereo mode: + Stereomodus: + + + + Mono + Mono + + + + Stereo + Stereo + + + + Joint stereo + Joint stereo + + + + Compression level: + Compressieniveau: + + + + Bitrate: + Bitrate: + + + + 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 + Variabele bitrate gebruiken + + + + Quality settings + Kwaliteitsinstellingen + + + + Interpolation: + Interpolatie: + + + + Zero order hold + Zero order hold + + + + Sinc worst (fastest) + Sinc slechtste (snelste) + + + + Sinc medium (recommended) + Sinc medium (aanbevolen) + + + + Sinc best (slowest) + 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 - Export project to %1 - Project exporteren naar %1 - - - 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 % - - + 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! - 24 Bit Integer - 24-bit integer + + Export project to %1 + Project exporteren naar %1 - Use variable bitrate - Variabele bitrate gebruiken + + ( Fastest - biggest ) + ( Snelste - grootste ) - Stereo mode: - Stereomodus: + + ( Slowest - smallest ) + ( Traagste - kleinste ) - Stereo - Stereo + + Error + Fout - Joint Stereo - Joint stereo + + 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. - Mono - Mono - - - Compression level: - Compressieniveau: - - - (fastest) - (snelste) - - - (default) - (standaard) - - - (smallest) - (kleinste) - - - - Expressive - - Selected graph - Geselecteerde grafiek - - - A1 - A1 - - - A2 - A2 - - - A3 - A3 - - - W1 smoothing - W1 afvlakken - - - W2 smoothing - W2 afvlakken - - - W3 smoothing - W3 afvlakken - - - PAN1 - PAN1 - - - PAN2 - PAN2 - - - REL TRANS - REL TRANS + + 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: @@ -2164,14 +4819,27 @@ Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die h FileBrowser + + User content + + + + + Factory content + + + + Browser Verkenner + Search Zoeken + Refresh list Lijst verversen @@ -2179,65 +4847,105 @@ Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die h FileBrowserTreeWidget + Send to active instrument-track Naar actieve instrument-track zenden - Open in new instrument-track/B+B Editor - In nieuwe instrument-track/B+B-editor openen + + 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... - --- Factory files --- - --- Factory-bestanden --- - - - Open in new instrument-track/Song Editor - In nieuwe instrument-track/song-editor openen - - + Error Fout - does not appear to be a valid - lijkt niet geldig te zijn + + %1 does not appear to be a valid %2 file + %1 lijkt geen geldig %2-bestand te zijn - file - bestand + + --- Factory files --- + --- Factory-bestanden --- FlangerControls - Delay Samples + + Delay samples Samples vertragen - Lfo Frequency - Lfo-frequentie + + LFO frequency + LFO frequentie + Seconds Seconden + + Stereo phase + + + + Regen Regen + Noise Ruis + Invert Inverteren @@ -2245,146 +4953,516 @@ Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die h FlangerControlsDialog - Delay Time: - Delay-tijd: - - - Feedback Amount: - Feedback-hoeveelheid: - - - White Noise Amount: - Hoeveelheid witte ruis: - - + 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 - Period: - Periode: + + 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 - FxLine + 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 + + + + MixerLine + + Channel send amount Hoeveelheid kanaal-send - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Het FX-kanaal ontvangt invoer van een of meerdere instrument-tracks. -Het kanaal op zijn beurt kan doorgestuurd worden naar meerdere andere FX-kanalen. LMMS zorgt automatisch voor het voorkomen van oneindige loops en staat niet toe dat een verbinding gemaakt wordt die zou resulteren in een oneindige loop. - -Om het kanaal naar een ander kanaal door te sturen, selecteert u het FX-kanaal en klikt u op de "send"-knop op het kanaal waarnaar u wilt zenden. De knop onder de send-knop bedient de hoeveelheid signaal die naar het kanaal gezonden wordt. - -U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelijk is door op het FX-kanaal te rechtsklikken. - - - + 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 + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + Toewijzen aan: + + + + New mixer Channel + Nieuw FX-kanaal + + + + Mixer + + Master Master - FX %1 + + + + Channel %1 FX %1 + Volume Volume + Mute Dempen + Solo Solo - FxMixerView + MixerView - FX-Mixer - FX-mixer + + Mixer + mixer - FX Fader %1 + + Fader %1 FX-fader %1 + Mute Dempen - Mute this FX channel + + Mute this mixer channel Dit FX-kanaal dempen + Solo Solo - Solo FX channel + + Solo mixer channel Solo FX-kanaal - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 Te zenden hoeveelheid van kanaal %1 naar kanaal %2 @@ -2392,14 +5470,17 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij GigInstrument + Bank Bank + Patch Patch + Gain Gain @@ -2407,46 +5488,23 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij GigInstrumentView - Open other GIG file - Ander GIG-bestand openen - - - Click here to open another GIG file - Klik hier om een ander GIG-bestand te openen - - - Choose the patch - Patch kiezen - - - Click here to change which patch of the GIG file to use - Klik hier om te wijzigen welke patch van het GIG-bestand te gebruiken - - - Change which instrument of the GIG file is being played - Wijzigen welk instrument van het GIG-bestand gespeeld wordt - - - Which GIG file is currently being used - Welk GIG-bestand op dit moment gebruikt wordt - - - Which patch of the GIG file is currently being used - Welke patch van het GIG-bestand op dit moment gebruikt wordt - - - Gain - Gain - - - Factor to multiply samples by - Factor om samples mee te vermenigvuldigen - - + + Open GIG file GIG-bestand openen + + Choose patch + Patch kiezen + + + + Gain: + Gain: + + + GIG Files (*.gig) GIG-bestanden (*.gig) @@ -2454,42 +5512,52 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij 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 @@ -2497,650 +5565,798 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij InstrumentFunctionArpeggio + Arpeggio Arpeggio + Arpeggio type Arpeggio type + Arpeggio range Arpeggio bereik - Arpeggio time - Arpeggio tijd + + Note repeats + - Arpeggio gate - Arpeggio gate - - - Arpeggio direction - Arpeggio richting - - - Arpeggio mode - Arpeggio modus - - - Up - Omhoog - - - Down - Omlaag - - - Up and down - Omhoog en omlaag - - - Random - Willekeurig - - - Free - Vrij - - - Sort - Sorteren - - - Sync - Sync - - - Down and up - Omlaag en omhoog + + Cycle steps + Stappen doorlopen + Skip rate Skip-ratio + Miss rate Miss-ratio - Cycle steps - Stappen doorlopen + + 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 - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Een arpeggio is een methode om (vooral tokkel-) instrumenten te bespelen, wat de muziek veel levendiger maakt. De snaren van zo'n instrumenten (bijv. harp) worden getokkeld als akkoorden. Het enige verschil is dat dit op een opeenvolgende manier wordt gedaan, zodat de noten niet tegelijkertijd worden bespeeld. Typische arpeggio's zijn majeur- en mineur-drieklanken, maar er zijn veel andere mogelijke akkoorden die u kunt selecteren. - - + RANGE BEREIK + Arpeggio range: Arpeggio bereik: + octave(s) octa(af)(ven) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Gebruik deze knop om het bereik van de arpeggio in octaven in te stellen. De geselecteerde arpeggio zal binnen het opgegeven aantal octaven gespeeld worden. + + REP + - TIME - TIJD + + Note repeats: + - Arpeggio time: - Arpeggio tijd: - - - ms - ms - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Gebruik deze knop om de arpeggio-tijd in milliseconden in te stellen. De arpeggio-tijd geeft aan hoe lang elke arpeggio-toon gespeeld moet worden. - - - GATE - GATE - - - Arpeggio gate: - Arpeggio gate: - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Gebruik deze knop om de arpeggio gate in te stellen. De arpeggio gate geeft het percentage van een hele arpeggio-toon aan dat gespeeld moet worden. Hiermee kunt u coole staccato arpeggio's maken. - - - Chord: - Akkoord: - - - Direction: - Richting: - - - Mode: - Modus: - - - SKIP - SKIP - - - Skip rate: - Skip-ratio: - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - De skip-functie zal de arpeggiator één willekeurige stap laten pauzeren. Vanaf haar begin in volledig linkse positie en geen effect zal ze gradueel voortgaan tot volledig geheugenverlies op maximale instelling. - - - MISS - MISS - - - Miss rate: - Miss-ratio: - - - The miss function will make the arpeggiator miss the intended note. - De miss-functie zal de arpeggiator de bedoelde noot laten missen. + + time(s) + + CYCLE DOORL + Cycle notes: Noten doorlopen: + note(s) no(o)t(en) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - Springt over n stappen in de arpeggio en loopt rond als we over het nootbereik zijn. Als het totale nootbereik evenredig deelbaar is door het aantal overgeslagen stappen zult u vastraken in een kortere arpeggio of zelfs op een noot. + + 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 - Phrygolydian - Frygolydisch + + Phrygian + Frygisch + Lydian Lydisch + Mixolydian Mixolydisch + Aeolian Eolisch + Locrian Locrisch - Chords - Akkoorden - - - Chord type - Akkoordsoort - - - Chord range - Akkoordbereik - - + 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 - RANGE - BEREIK - - - Chord range: - Akkoordbereik: - - - octave(s) - Octaaf (octaven) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Gebruik deze knop om het akkoordbereik in octaven in te stellen. Het geselecteerde akkoord zal binnen het opgegeven aantal octaven gespeeld worden. - - + STACKING STAPELEN + Chord: Akkoord: + + + RANGE + BEREIK + + + + Chord range: + Akkoordbereik: + + + + octave(s) + Octaaf (octaven) + InstrumentMidiIOView + ENABLE MIDI INPUT MIDI-INVOER INSCHAKELEN - CHANNEL - KANAAL - - - VELOCITY - SNELHEID - - + ENABLE MIDI OUTPUT MIDI-UITVOER INSCHAKELEN - PROGRAM - PROGRAM + + + 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 - NOTE - NOOT - - + 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 + + 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 @@ -3148,137 +6364,171 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij InstrumentMiscView + MASTER PITCH MASTER-TOONHOOGTE - Enables the use of Master Pitch + + 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 - LowPass - Lowpass + + Low-pass + Low-pass - HiPass - Hipass + + Hi-pass + High-pass - BandPass csg + + Band-pass csg BandPass csg - BandPass czpg + + Band-pass czpg Bandpass czpg + Notch Notch - Allpass - Allpass + + All-pass + All-pass + Moog Moog - 2x LowPass - 2 x LowPass + + 2x Low-pass + 2x Low-pass - RC LowPass 12dB - RC LowPass 12dB + + RC Low-pass 12 dB/oct + RC low-pass 12 dB/oct - RC BandPass 12dB - RC BandPass 12dB + + RC Band-pass 12 dB/oct + RC band-pass 12 dB/oct - RC HighPass 12dB - RC HighPass 12 dB + + RC High-pass 12 dB/oct + RC high-pass 12 dB/oct - RC LowPass 24dB - RC LowPass 24 dB + + RC Low-pass 24 dB/oct + RC low-pass 24 dB/oct - RC BandPass 24dB - RC BandPass 24 dB + + RC Band-pass 24 dB/oct + RC band-pass 24 dB/oct - RC HighPass 24dB - RC HighPass 24 dB + + RC High-pass 24 dB/oct + RC high-pass 24 dB/oct - Vocal Formant Filter - Stemvormingsfilter + + Vocal Formant + Stemvorming + 2x Moog 2 x Moog - SV LowPass - SV LowPass + + SV Low-pass + SV low-pass - SV BandPass - SV BandPass + + SV Band-pass + SV band-pass - SV HighPass - SV HighPass + + SV High-pass + SV high-pass + SV Notch SV Notch + Fast Formant Snel vormend + Tripole Tripole @@ -3286,50 +6536,42 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij InstrumentSoundShapingView + TARGET DOEL - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Deze tabs bevatten envelopes. Ze zijn zeer belangrijk voor het wijzigen van een geluid, omdat ze bijna altijd nodig zijn voor subtractieve synthese. Bijvoorbeeld als u een volume-envelope heeft, kunt u instellen wanneer het geluid een bepaald volume moet hebben. Als u zachte strings wilt creëren, dan moet uw geluid heel zacht in- en uitfaden. Dit kan gedaan worden door grote attack- en release-tijden in te stellen. Het is hetzelfde voor andere envelope-doelen zoals panning, cutoff-frequentie voor de gebruikte filter enzovoort. Speel ermee! U kunt echt coole geluiden maken uit een zaagtandgolf met gewoon wat envelopes...! - - + FILTER FILTER - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Hier kunt u de ingebouwde filter selecteren die u wilt gebruiken voor deze instrument-track. Filters zijn heel belangrijk voor het wijzigen van de karakteristieken van een geluid. - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Gebruik deze knop om de cutoff-frequentie voor de geselecteerde filter in te stellen. De cutoff-frequentie geeft de frequentie op voor het afsnijden van het signaal door een filter. Bijvoorbeeld een lowpass-filter snijdt alle frequenties weg boven de cutoff-frequentie. Een highpass-filter snijdt alle frequenties weg onderde cutoff-frequentie, enzovoort... - - - RESO - RESO - - - Resonance: - Resonantie: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Gebruik deze knop om de Q/resonantie voor de geselecteerde filter in te stellen. Q/resonantie zegt de filter hoeveel hij frequenties dicht bij de cutoff-frequentie moet versterken. - - + FREQ FREQ - cutoff frequency: - cutoff-frequentie: + + 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. @@ -3337,222 +6579,345 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij InstrumentTrack + + unnamed_track naamloze_track - Volume - Volume - - - Panning - Panning - - - Pitch - Toonhoogte - - - FX channel - FX-kanaal - - - Default preset - Standaard preset - - - With this knob you can set the volume of the opened channel. - Met deze knop kunt u het volume van het geopende kanaal instellen. - - + Base note Grondtoon + + First note + + + + + Last note + Laatste noot + + + + Volume + Volume + + + + Panning + Balans + + + + Pitch + Toonhoogte + + + Pitch range Toonhoogte-bereik - Master Pitch + + Mixer channel + FX-kanaal + + + + Master pitch Master-toonhoogte + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + Standaard preset + InstrumentTrackView + Volume Volume + Volume: Volume: + VOL VOL + Panning - Panning + Balans + Panning: - Panning: + Balans: + PAN - PAN + BAL + MIDI MIDI + Input Invoer + Output Uitvoer - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS ALGEMENE INSTELLINGEN - Instrument volume - Instrument-volume + + Volume + Volume + Volume: Volume: + VOL VOL + Panning - Panning + Balans + Panning: - Panning: + Balans: + PAN - PAN + BAL + Pitch Toonhoogte + Pitch: Toonhoogte: + cents cents + PITCH TOONHOOGTE - FX channel - FX-kanaal - - - FX - FX - - - Save preset - Preset opslaan - - - XML preset file (*.xpf) - XML-presetbestand (*.xpf) - - + Pitch range (semitones) Toonhoogte-bereik (semitones) + RANGE BEREIK + + Mixer channel + FX-kanaal + + + + FX + FX + + + Save current instrument track settings in a preset file Huidige instrument-track-instellingen opslaan in een presetbestand - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Klik hier als u de huidige instrument-track-instellingen wilt opslaan in een presetbestand. Later kunt u deze preset laden door erop te dubbelklikken in de preset-browser. - - - Use these controls to view and edit the next/previous track in the song editor. - Gebruik deze bedieningen om de volgende/vorige track in de song-editor weer te geven en te bewerken. - - + SAVE OPSLAAN + Envelope, filter & LFO Envelope, filter en LFO + Chord stacking & arpeggio Akkoorden opeenstapelen & arpeggio + Effects Effecten - MIDI settings - MIDI-instellingen + + 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 + + + + + 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 - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: + + + 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 @@ -3560,10 +6925,12 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij LadspaControlDialog + Link Channels Kanalen koppelen + Channel Kanaal @@ -3571,28 +6938,46 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij LadspaControlView + Link channels Kanalen koppelen + Value: Waarde: - - Sorry, no help available. - Sorry, geen hulp beschikbaar. - 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: @@ -3600,18 +6985,26 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij LeftRightNav + + + Previous Vorige + + + Next Volgende + Previous (%1) Vorige (%1) + Next (%1) Volgende (%1) @@ -3619,30 +7012,37 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij 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 @@ -3650,115 +7050,132 @@ U kunt FX-kanalen verwijderen en verplaatsen in het contextmenu, dat toegankelij LfoControllerDialog + LFO LFO - LFO Controller - LFO-controller - - + BASE BASIS - Base amount: - Basishoeveelheid: + + Base: + Basis: - todo - tedoen + + FREQ + FREQ - SPD - SPD + + LFO frequency: + LFO-frequentie: - LFO-speed: - LFO-snelheid: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Gebruik deze knop om de snelheid van de LFO in te stellen. Hoe groter deze waarde, hoe sneller de LFO oscilleert en hoe sneller het effect. + + AMNT + HVHD + Modulation amount: Hoeveelheid modulatie: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Gebruik deze knop om de hoeveelheid modulatie van de LFO in te stellen. Hoe groter deze waarde, hoe meer de verbonden bediening (bijvoorbeeld volume of cutoff-frequentie) zal beïnvloed worden door de LFO. - - + PHS PHS + Phase offset: Faseverschuiving: - degrees + + degrees graden - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Met deze knop kunt u de faseverschuiving van de LFO instellen. Dat betekent dat u het punt binnen een oscillatie kunt verplaatsen waar de oscillator begint met oscilleren. Als u bijvoorbeeld een sinusgolf heeft en een faseverschuiving van 180 graden, dan zal de golf eerst naar beneden gaan. Idem voor een blokgolf. + + Sine wave + Sinusgolf - Click here for a sine-wave. - Klik hier voor een sinusgolf. + + Triangle wave + Driehoeksgolf - Click here for a triangle-wave. - Klik hier voor een driehoeksgolf. + + Saw wave + Zaagtandgolf - Click here for a saw-wave. - Klik hier voor een zaagtandgolf. + + Square wave + Blokgolf - Click here for a square-wave. - Klik hier voor een blokgolf. + + Moog saw wave + Moog-zaagtandgolf - Click here for an exponential wave. - Klik hier voor een exponentiële golf. + + Exponential wave + Exponentiële golf - Click here for white-noise. - Klik hier voor witte ruis. + + White noise + Witte ruis - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Klik hier voor een aangepaste vorm. -Dubbelklikken om een bestand te selecteren. + Aangepaste vorm. +Dubbelklikken om een bestand te kiezen. - Click here for a moog saw-wave. - Klik hier voor een moog-zaagtandgolf. + + Mutliply modulation frequency by 1 + Modulatiefrequentie vermenigvuldigen met 1 - AMNT - HVHD + + Mutliply modulation frequency by 100 + Modulatiefrequentie vermenigvuldigen met 100 + + + + Divide modulation frequency by 100 + Modulatiefrequentie delen door 100 - LmmsCore + 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 @@ -3766,393 +7183,510 @@ Dubbelklikken om een bestand te selecteren. 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 - What's this? - Wat is dit? - - + 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 - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Door op deze knop te drukken, kunt u de song-editor weergeven of verbergen. Met behulp van de song-editor kunt u de song-afspeellijst bewerken en opgeven wanneer welke track afgespeeld moet worden. U kunt ook samples (bijvoorbeeld rap-samples) rechtstreeks invoegen en verplaatsen in de afspeellijst. - - + + Beat+Bassline Editor Beat- en baslijn-editor - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Door deze knop in te drukken, kunt u de beat- en baslijn-editor weergeven of verbergen. De beat- en baslijn-editor is nodig voor het aanmaken van beats en voor het openen, toevoegen en verwijderen van kanalen, voor het knippen, kopiëren en plakken van beat- en baslijnpatronen, en voor andere vergelijkbare zaken. - - + + Piano Roll Piano-roll - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Klik hier om de piano-roll weer te geven of te verbergen. Met behulp van de piano-roll kunt u melodieën op een eenvoudige manier bewerken. - - + + Automation Editor Automatisering-editor - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Klik hier om de automatisering-editor weer te geven of te verbergen. Met behulp van de automatisering-editor kunt u dynamische waardes op een eenvoudige manier bewerken. + + + Mixer + mixer - FX Mixer - FX-mixer + + Show/hide controller rack + Controller-rack weergeven/verbergen - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Klik hier om de FX-mixer weer te geven of te verbergen. De FX-mixer is een krachtige tool voor het beheren van effecten voor uw song. U kunt effecten invoegen in verschillende effect-kanalen. - - - Project Notes - Projectnotities - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Klik hier om het projectnotities-venster weer te geven of te verbergen. In dit venster kunt u uw projectnotities neerzetten. - - - Controller Rack - Controller-rack + + 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 was gewijzigd sinds de laatste keer dat het opgeslagen werd. Wilt u het nu opslaan? + 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. - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) + + Controller Rack + Controller-rack - Version %1 - Versie %1 + + Project Notes + Projectnotities - Configuration file - Configuratiebestand - - - Error while parsing configuration file at line %1:%2: %3 - Fout bij verwerken van configuratiebestand op regel %1:%2: %3 - - - Volumes - Volumes - - - Undo - Ongedaan maken - - - Redo - Opnieuw - - - My Projects - Mijn projecten - - - My Samples - Mijn samples - - - My Presets - Mijn presets - - - My Home - Mijn home - - - My Computer - Mijn computer - - - &File - &Bestand - - - &Recently Opened Projects - &Recent geopende projecten - - - Save as New &Version - Opslaan als nieuwe &versie - - - E&xport Tracks... - Tracks e&xporteren... - - - Online Help - Online help - - - What's This? - Wat is dit? - - - Open Project - Project openen - - - Save Project - Project opslaan - - - 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. - - - Preparing plugin browser - Plugin-browser voorbereiden - - - Preparing file browsers - Bestandsbrowsers voorbereiden - - - Root directory - Root-map - - - Loading background artwork - Achtergrondafbeelding laden - - - New from template - Nieuw van sjabloon - - - Save as default template - Opslaan als standaard-sjabloon - - - &View - Weerge&ven - - - Toggle metronome - Metronoom in-/uitschakelen - - - Show/hide Song-Editor - Song-editor weergeven/verbergen - - - Show/hide Beat+Bassline Editor - Beat- en baslijn-editor weergeven/verbergen - - - Show/hide Piano-Roll - Piano-roll weergeven/verbergen - - - Show/hide Automation Editor - Automatisering-editor weergeven/verbergen - - - Show/hide FX Mixer - FX-mixer weergeven/verbergen - - - Show/hide project notes - Projectnotities weergeven/verbergen - - - Show/hide controller rack - Controller-rack weergeven/verbergen - - - Recover session. Please save your work! - Sessie herstellen. Sla uw werk op! - - - 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? - - - LMMS Project - LMMS-project - - - LMMS Project Template - LMMS-projectsjabloon - - - Overwrite default template? - Standaard-sjabloon overschrijven? - - - This will overwrite your current default template. - Dit zal uw huidig standaard-sjabloon overschrijven. - - - Smooth scroll - Vloeiend scrollen - - - Enable note labels in piano roll - Nootlabels in piano-roll inschakelen - - - Save project template - Projectsjabloon opslaan + + Fullscreen + + Volume as dBFS Volume als dBFS - Could not open file - Kan bestand niet openen + + Smooth scroll + Vloeiend scrollen - 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! + + 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 @@ -4160,21 +7694,44 @@ Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die h 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 @@ -4182,18 +7739,43 @@ Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die h MidiImport + + Setup incomplete Setup niet voltooid - You do not have 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 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 @@ -4201,541 +7783,911 @@ Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die h 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 + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Bestand + + + + &Edit + &Bewerken + + + + &Quit + &Afsluiten + + + + &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 - Output MIDI program - MIDI-programma voor uitvoer - - - Receive MIDI-events - MIDI-events ontvangen - - - Send MIDI-events - MIDI-events verzenden - - + 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 + + Device + Apparaat MonstroInstrument - Osc 1 Volume + + Osc 1 volume Osc 1 volume - Osc 1 Panning - Osc 1 panning + + Osc 1 panning + Osc 1 balans - Osc 1 Coarse detune + + Osc 1 coarse detune Osc 1 grof ontstemmen - Osc 1 Fine detune left + + Osc 1 fine detune left Osc 1 fijn ontstemmen links - Osc 1 Fine detune right + + Osc 1 fine detune right Osc 1 fijn ontstemmen rechts - Osc 1 Stereo phase offset + + Osc 1 stereo phase offset Osc 1 stereo-faseverschuiving - Osc 1 Pulse width + + Osc 1 pulse width Osc 1 pulsbreedte - Osc 1 Sync send on rise + + Osc 1 sync send on rise Osc 1 synchronisatie bij stijging - Osc 1 Sync send on fall + + Osc 1 sync send on fall Osc 1 synchronisatie bij daling - Osc 2 Volume + + Osc 2 volume Osc 2 volume - Osc 2 Panning - Osc 2 panning + + Osc 2 panning + Osc 2 balans - Osc 2 Coarse detune + + Osc 2 coarse detune Osc 2 grof ontstemmen - Osc 2 Fine detune left + + Osc 2 fine detune left Osc 2 fijn ontstemmen links - Osc 2 Fine detune right + + Osc 2 fine detune right Osc 2 fijn ontstemmen rechts - Osc 2 Stereo phase offset + + Osc 2 stereo phase offset Osc 2 stereo-faseverschuiving - Osc 2 Waveform + + Osc 2 waveform Osc 2 golfvorm - Osc 2 Sync Hard + + Osc 2 sync hard Osc 2 sync hard - Osc 2 Sync Reverse + + Osc 2 sync reverse Osc 2 sync omgekeerd - Osc 3 Volume + + Osc 3 volume Osc 3 volume - Osc 3 Panning - Osc 3 panning + + Osc 3 panning + Osc 3 balans - Osc 3 Coarse detune + + 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 sub-oscillator mix - Osc 3 Waveform 1 + + Osc 3 waveform 1 Osc 3 golfvorm 1 - Osc 3 Waveform 2 + + Osc 3 waveform 2 Osc 3 golfvorm 2 - Osc 3 Sync Hard + + Osc 3 sync hard Osc 3 sync hard - Osc 3 Sync Reverse + + Osc 3 Sync reverse Osc 3 sync omgekeerd - LFO 1 Waveform + + LFO 1 waveform LFO 1 golfvorm - LFO 1 Attack + + LFO 1 attack LFO 1 attack - LFO 1 Rate + + LFO 1 rate LFO 1 ratio - LFO 1 Phase + + LFO 1 phase LFO 1 fase - LFO 2 Waveform + + LFO 2 waveform LFO 2 golfvorm - LFO 2 Attack + + LFO 2 attack LFO 2 attack - LFO 2 Rate + + LFO 2 rate LFO 2 ratio - LFO 2 Phase + + LFO 2 phase LFO 2 fase - Env 1 Pre-delay + + Env 1 pre-delay Env 1 pre-delay - Env 1 Attack + + Env 1 attack Env 1 attack - Env 1 Hold + + Env 1 hold Env 1 hold - Env 1 Decay + + Env 1 decay Env 1 decay - Env 1 Sustain + + Env 1 sustain Env 1 sustain - Env 1 Release + + Env 1 release Env 1 release - Env 1 Slope + + Env 1 slope Env 1 slope - Env 2 Pre-delay + + Env 2 pre-delay Env 2 pre-delay - Env 2 Attack + + Env 2 attack Env 2 attack - Env 2 Hold + + Env 2 hold Env 2 hold - Env 2 Decay + + Env 2 decay Env 2 decay - Env 2 Sustain + + Env 2 sustain Env 2 sustain - Env 2 Release + + Env 2 release Env 2 release - Env 2 Slope + + Env 2 slope Env 2 slope - Osc2-3 modulation - Osc 2-3 modulatie + + Osc 2+3 modulation + Osc 2+3 modulatie + Selected view Geselecteerde weergave - Vol1-Env1 - Vol1-Env1 + + Osc 1 - Vol env 1 + Osc 1 - Vol env 1 - Vol1-Env2 - Vol1-Env2 + + Osc 1 - Vol env 2 + Osc 1 - Vol env 2 - Vol1-LFO1 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 + Osc 1 - Vol LFO 1 - Vol1-LFO2 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 + Osc 1 - Vol LFO 2 - Vol2-Env1 - Vol2-Env1 + + Osc 2 - Vol env 1 + Osc 2 - Vol env 1 - Vol2-Env2 - Vol2-Env2 + + Osc 2 - Vol env 2 + Osc 2 - Vol env 2 - Vol2-LFO1 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 + Osc 2 - Vol LFO 1 - Vol2-LFO2 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 + Osc 2 - Vol LFO 2 - Vol3-Env1 - Vol3-Env1 + + Osc 3 - Vol env 1 + Osc 3 - Vol env 1 - Vol3-Env2 - Vol3-Env2 + + Osc 3 - Vol env 2 + Osc 3 - Vol env 2 - Vol3-LFO1 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 + Osc 3 - Vol LFO 1 - Vol3-LFO2 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 + Osc 3 - Vol LFO 2 - Phs1-Env1 - Phs1-Env1 + + Osc 1 - Phs env 1 + Osc 1 - Fase env 1 - Phs1-Env2 - Phs1-Env2 + + Osc 1 - Phs env 2 + Osc 1 - Fase env 2 - Phs1-LFO1 - Phs1-LFO1 + + Osc 1 - Phs LFO 1 + Osc 1 - Fase LFO 1 - Phs1-LFO2 - Phs1-LFO2 + + Osc 1 - Phs LFO 2 + Osc 1 - Fase LFO 2 - Phs2-Env1 - Phs2-Env1 + + Osc 2 - Phs env 1 + Osc 2 - Fase env 1 - Phs2-Env2 - Phs2-Env2 + + Osc 2 - Phs env 2 + Osc 2 - Fase env 2 - Phs2-LFO1 - Phs2-LFO1 + + Osc 2 - Phs LFO 1 + Osc 2 - Fase LFO 1 - Phs2-LFO2 - Phs2-LFO2 + + Osc 2 - Phs LFO 2 + Osc 2 - Fase LFO 2 - Phs3-Env1 - Phs3-Env1 + + Osc 3 - Phs env 1 + Osc 3 - Fase env 1 - Phs3-Env2 - Phs3-Env2 + + Osc 3 - Phs env 2 + Osc 3 - Fase env 2 - Phs3-LFO1 - Phs3-LFO1 + + Osc 3 - Phs LFO 1 + Osc 3 - Fase LFO 1 - Phs3-LFO2 - Phs3-LFO2 + + Osc 3 - Phs LFO 2 + Osc 3 - Fase LFO 2 - Pit1-Env1 - Pit1-Env1 + + Osc 1 - Pit env 1 + Osc 1 - Toonh env 1 - Pit1-Env2 - Pit1-Env2 + + Osc 1 - Pit env 2 + Osc 1 - Toonh env 2 - Pit1-LFO1 - Pit1-LFO1 + + Osc 1 - Pit LFO 1 + Osc 1 - Toonh LFO 1 - Pit1-LFO2 - Pit1-LFO2 + + Osc 1 - Pit LFO 2 + Osc 1 - Toonh LFO 2 - Pit2-Env1 - Pit2-Env1 + + Osc 2 - Pit env 1 + Osc 2 - Toonh env 1 - Pit2-Env2 - Pit2-Env2 + + Osc 2 - Pit env 2 + Osc 2 - Toonh env 2 - Pit2-LFO1 - Pit2-LFO1 + + Osc 2 - Pit LFO 1 + Osc 2 - Toonh LFO 1 - Pit2-LFO2 - Pit2-LFO2 + + Osc 2 - Pit LFO 2 + Osc 2 - Toonh LFO 2 - Pit3-Env1 - Pit3-Env1 + + Osc 3 - Pit env 1 + Osc 3 - Toonh env 1 - Pit3-Env2 - Pit3-Env2 + + Osc 3 - Pit env 2 + Osc 3 - Toonh env 2 - Pit3-LFO1 - Pit3-LFO1 + + Osc 3 - Pit LFO 1 + Osc 3 - Toonh LFO 1 - Pit3-LFO2 - Pit3-LFO2 + + Osc 3 - Pit LFO 2 + Osc 3 - Toonh LFO 2 - PW1-Env1 - PW1-Env1 + + Osc 1 - PW env 1 + Osc 1 - PB env 1 - PW1-Env2 - PW1-Env2 + + Osc 1 - PW env 2 + Osc 1 - PB env 2 - PW1-LFO1 - PW1-LFO1 + + Osc 1 - PW LFO 1 + Osc 1 - PB LFO 1 - PW1-LFO2 - PW1-LFO2 + + Osc 1 - PW LFO 2 + Osc 1 - PB LFO 2 - Sub3-Env1 - Sub3-Env1 + + Osc 3 - Sub env 1 + Osc 3 - Sub env 1 - Sub3-Env2 - Sub3-Env2 + + Osc 3 - Sub env 2 + Osc 3 - Sub env 2 - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 + Osc 3 - Sub LFO 1 - Sub3-LFO2 - Sub3-LFO2 + + 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 @@ -4743,296 +8695,240 @@ Zorg ervoor dat u schrijfbevoegdheid heeft voor het bestand en voor de map die h MonstroView + Operators view Operatorweergave - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - De operatorweergave bevat alle operators. Deze bevatten hoorbare operators (oscillators) en onhoorbare operators of modulators: laag-frequente oscillators en envelopes. - -Knoppen en andere widgets in de operatorweergave hebben hun eigen "wat is dit"-teksten, dus op die manier kunt u specifieke hulp voor hen krijgen. - - + Matrix view Matrixweergave - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - De matrixweergave bevat de modulatiematrix. Hier kunt u de modulatie-relaties tussen de verschillende operators opgeven. Elke hoorbare operator (oscillators 1 - 3) heeft 3 à 4 eigenschappen die gemoduleerd kunnen worden door elk van de modulators. Gebruik van meer modulaties verbruikt meer CPU-kracht. - -De weergave is verdeeld in modulatie-doelen, gegroepeerd per doel-oscillator. Beschikbare doelen zijn volume, toonhoogte, fase, pulsbreedte en sub-osc-ratio. Opmerking: een aantal doelen zijn specifiek voor slechts een oscillator. - -Elk modulatiedoel heeft 4 knoppen, een voor elke modulator. Standaard staan de knoppen op nul, wat geen modulatie betekent. Een knop naar 1 draaien zorgt dat die modulator het modulatiedoel zoveel mogelijk beïnvloedt. Naar -1 draaien doet hetzelfde, maar de modulatie wordt omgekeerd. - - - Mix Osc2 with Osc3 - Osc2 mengen met osc3 - - - Modulate amplitude of Osc3 with Osc2 - Amplitude van osc3 moduleren met osc2 - - - Modulate frequency of Osc3 with Osc2 - Frequentie van osc3 moduleren met osc2 - - - Modulate phase of Osc3 with Osc2 - Fase van osc3 moduleren met osc2 - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - De CRS-knop wijzigt de stemming van oscillator 1 in stappen van een halve toon. - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - De CRS-knop wijzigt de stemming van oscillator 2 in stappen van een halve toon. - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - De CRS-knop wijzigt de stemming van oscillator 3 in stappen van een halve toon. - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL en FTR wijzigen de finetuning van de oscillator voor respectievelijk linker en rechter kanalen. Deze kunnen stereo-ontstemming aan de oscillator toevoegen die het stereobeeld verbreedt en een illusie van ruimte veroorzaakt. - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - De SPO-knop wijzigt het verschil in fase tussen linker en rechter kanaal. Een groter verschil creëert een breder stereobeeld. - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - De PW-knop bedient de pulsbreedte, ook bekend als arbeidscyclus, van oscillator 1. Oscillator 1 is een digitale pulsgolf-oscillator. Hij produceert geen bandgelimiteerde uitvoer, wat betekent dat u hem kunt gebruiken als een hoorbare oscillator maar dat het aliasing zal veroorzaken. U kunt hem ook gebruiken als een onhoorbare bron van een synchronisatiesignaal, die gebruikt kan worden om oscillator 2 en 3 te synchroniseren. - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Sync verzenden bij stijging: indien ingeschakeld wordt het sync-signaal elke keer verzonden wanneer de staat van oscillator 1 wijzigt van laag naar hoog, dus wanneer de amplitude wijzigt van -1 naar 1. -De toonhoogte, fase en pulsbreedte van oscillator 1 kunnen de timing van syncs beïnvloeden, maar het volume ervan heeft geen invloed. Sync-signalen worden onafhankelijk verzonden voor linker- en rechterkanaal. - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Sync verzenden bij daling: indien ingeschakeld wordt het sync-signaal elke keer verzonden wanneer de staat van oscillator 1 wijzigt van hoog naar laag, dus wanneer de amplitude wijzigt van 1 naar -1. -De toonhoogte, fase en pulsbreedte van oscillator 1 kunnen de timing van syncs beïnvloeden, maar het volume ervan heeft geen invloed. Sync-signalen worden onafhankelijk verzonden voor linker- en rechterkanaal. - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Hard sync: elke keer als de oscillator een sync-signaal ontvangt van oscillator 1, wordt zijn fase hersteld naar 0 + om het even wat zijn faseverschuiving is. - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Omgekeerde sync: elke keer als de oscillator een sync-signaal ontvangt van oscillator 1, wordt de amplitude van de oscillator omgekeerd. - - - Choose waveform for oscillator 2. - Kies golfvorm voor oscillator 2. - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Kies golfvorm voor de eerste sub-osc van oscillator 3. Oscillator 3 kan vloeiend interpoleren tussen twee verschillende golfvormen. - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Kies golfvorm voor de tweede sub-osc van oscillator 3. Oscillator 3 kan vloeiend interpoleren tussen twee verschillende golfvormen. - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - De SUB-knop verandert de mixverhouding tussen de twee sub-oscs van oscillator 3. Elk sub-osc kan worden ingesteld om een andere golfvorm te produceren, en oscillator 3 kan er vloeiend tussen interpoleren. Alle binnenkomende modulaties bij oscillator 3 worden op dezelfde manier toegepast op beide sub-oscs/golfvormen. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - In aanvulling op toegewijde modulators laat Monstro toe dat oscillator 3 gemoduleerd wordt door de uitvoer van oscillator 2. - -Mix-modus betekent geen modulatie: de uitvoer van de oscillators wordt gewoonweg samengemixt. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - In aanvulling op toegewijde modulators laat Monstro toe dat oscillator 3 gemoduleerd wordt door de uitvoer van oscillator 2. - -AM betekent amplitudemodulatie: de amplitude (het volume) van oscillator 3 wordt gemoduleerd door oscillator 2. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - In aanvulling op toegewijde modulators laat Monstro toe dat oscillator 3 gemoduleerd wordt door de uitvoer van oscillator 2. - -FM betekent frequentiemodulatie: de frequentie (toonhoogte, pitch) van oscillator 3 wordt gemoduleerd door oscillator 2. De frequentiemodulatie wordt geïmplementeerd als fasemodulatie, wat een stabielere algemene toonhoogte produceert dan een "pure" frequentiemodulatie. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - In aanvulling op toegewijde modulators laat Monstro toe dat oscillator 3 gemoduleerd wordt door de uitvoer van oscillator 2. - -PM betekent fasemodulatie: de fase van oscillator 3 wordt gemoduleerd door oscillator 2. Het verschilt van frequentie modulatie omdat de veranderingen in fase niet cumulatief zijn. - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Selecteer de golfvorm voor LFO 1. -"Willekeurig" en "willekeurig zacht" zijn speciale golfvormen: ze produceren een willekeurige uitvoer, waar de ratio van de LFO bepaalt hoe dikwijls de status van de LFO verandert. De zachte versie interpoleert tussen deze statussen met cosinus-interpolatie. Deze willekeurige modussen kunnen gebruikt worden om "leven" te geven aan uw presets - wat analoge onvoorspelbaarheid toevoegen... - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Selecteer de golfvorm voor LFO 2. -"Willekeurig" en "willekeurig zacht" zijn speciale golfvormen: ze produceren een willekeurige uitvoer, waar de ratio van de LFO bepaalt hoe dikwijls de status van de LFO verandert. De zachte versie interpoleert tussen deze statussen met cosinus-interpolatie. Deze willekeurige modussen kunnen gebruikt worden om "leven" te geven aan uw presets - wat analoge onvoorspelbaarheid toevoegen... - - - Attack causes the LFO to come on gradually from the start of the note. - Attack zorgt ervoor dat de LFO gradueel opkomt vanaf het begin van de noot. - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - Ratio stelt de snelheid van de LFO in, gemeten in milliseconden per cyclus. Kan gesynchroniseerd worden met tempo. - - - PHS controls the phase offset of the LFO. - PHS bedient de faseverschuiving van de LFO. - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE, of pre-delay, vertraagt de start van de envelope vanaf het begin van de noot. 0 betekent geen vertraging. - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - ATT of attack bedient hoe snel de envelope omhoog komt bij het begin, gemeten in milliseconden. Een waarde van 0 betekent onmiddellijk. - - - HOLD controls how long the envelope stays at peak after the attack phase. - HOLD bedient hoe lang de envelope op zijn piek blijft na de attack-fase. - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - DEC of decay bedient hoe snel de envelope van zijn piek valt, gemeten in milliseconden die nodig zou zijn om van piek naar nul te gaan. De eigenlijke decay kan korter zijn als sustain gebruikt wordt. - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - SUS of sustain bedient het sustain-niveau van de envelope. De decay-fase zal niet onder dit niveau gaan zolang de noot aangehouden wordt. - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - REL of release bedient hoe lang de vrijgave is voor de noot, gemeten in hoe lang het zou duren om te vallen van piek naar nul. De eigenlijke release kan korter zijn, afhankelijk van welke fase de noot vrijgegeven wordt. - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - De slope-knop bedient de curve of vorm van de envelope. Een waarde van 0 creëert rechte stijgingen en dalingen. Negatieve waarden creëren curves die traag starten, snel pieken en terug traag afvallen. Positieve waarden creëren curves die snel beginnen en eindigen en langer bij de pieken blijven. - - + + + Volume Volume + + + Panning - Panning + Balans + + + Coarse detune Grof ontstemmen + + + semitones - halve tonen + semitonen - Finetune left - Links fijnstemmen + + + Fine tune left + Fijn stemmen links + + + + cents cents - Finetune right - Rechts fijnstemmen + + + 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 @@ -5040,117 +8936,145 @@ PM betekent fasemodulatie: de fase van oscillator 3 wordt gemoduleerd door oscil MultitapEchoControlDialog + Length Lengte + Step length: Stap-lengte: + Dry Droog - Dry Gain: + + Dry gain: Droge gain: + Stages Stappen - Lowpass stages: + + Low-pass stages: Lowpass-stappen: + Swap inputs Invoeren wisselen - Swap left and right input channel for reflections + + Swap left and right input channels for reflections Linker en rechter invoerkanaal wisselen voor reflecties NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune Kanaal 1 grof ontstemmen - Channel 1 Volume + + Channel 1 volume Volume kanaal 1 - Channel 1 Envelope length + + Channel 1 envelope length Kanaal 1 envelope-lengte - Channel 1 Duty cycle + + Channel 1 duty cycle Kanaal 1 inschakeltijd - Channel 1 Sweep amount + + Channel 1 sweep amount Kanaal 1 hoeveelheid sweep - Channel 1 Sweep rate + + 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 + + Channel 2 envelope length Kanaal 2 envelope-lengte - Channel 2 Duty cycle + + Channel 2 duty cycle Kanaal 2 inschakeltijd - Channel 2 Sweep amount + + Channel 2 sweep amount Kanaal 2 hoeveelheid sweep - Channel 2 Sweep rate + + Channel 2 sweep rate Kanaal 2 sweep-ratio - Channel 3 Coarse detune + + Channel 3 coarse detune Kanaal 3 grof ontstemmen - Channel 3 Volume + + Channel 3 volume Volume kanaal 3 - Channel 4 Volume + + Channel 4 volume Volume kanaal 4 - Channel 4 Envelope length + + Channel 4 envelope length Kanaal 4 envelope-lengte - Channel 4 Noise frequency + + Channel 4 noise frequency Kanaal 4 ruisfrequentie - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep Kanaal 4 ruisfrequentie-sweep + Master volume Master-volume + Vibrato Vibrato @@ -5158,196 +9082,447 @@ PM betekent fasemodulatie: de fase van oscillator 3 wordt gemoduleerd door oscil 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 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 volume - Osc %1 volume - - - Osc %1 panning - Osc %1 panning - - - Osc %1 coarse detuning - Osc %1 grof ontstemmen - - - Osc %1 fine detuning left - Osc %1 fijn ontstemmen links - - - 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 - - + 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 @@ -5355,77 +9530,85 @@ PM betekent fasemodulatie: de fase van oscillator 3 wordt gemoduleerd door oscil PatmanView - Open other patch - Andere patch openen - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Klik hier om een ander patchbestand te openen. Herhalen- en stemming-instellingen worden niet hersteld. + + Open patch + Patch openen + Loop Herhalen + Loop mode Herhaalmodus - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Hier kunt u de herhaalmodus in-/uitschakelen. Indien ingeschakeld zal PatMan de herhaalinformatie beschikbaar in het bestand gebruiken. - - + Tune Stemmen + Tune mode Stem-modus - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Hier kunt u de stem-modus in-/uitschakelen. Indien ingeschakeld zal PatMan de sample stemmen om overeen te komen met de frequentie van de noot. - - + No file selected Geen bestand geselecteerd + Open patch file Patchbestand openen + Patch-Files (*.pat) Patch-bestanden (*.pat) - PatternView + 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 @@ -5433,14 +9616,17 @@ PM betekent fasemodulatie: de fase van oscillator 3 wordt gemoduleerd door oscil 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. @@ -5448,10 +9634,12 @@ PM betekent fasemodulatie: de fase van oscillator 3 wordt gemoduleerd door oscil PeakControllerDialog + PEAK PIEK + LFO Controller LFO-controller @@ -5459,327 +9647,519 @@ PM betekent fasemodulatie: de fase van oscillator 3 wordt gemoduleerd door oscil PeakControllerEffectControlDialog + BASE BASIS - Base amount: - Basishoeveelheid: - - - Modulation amount: - Hoeveelheid basis: - - - Attack: - Attack: - - - Release: - Release: + + Base: + Basis: + AMNT HVHD + + Modulation amount: + Hoeveelheid basis: + + + MULT VERM - Amount Multiplicator: + + Amount multiplicator: Hoeveelheid-vermenigvuldiger: + ATCK ATCK + + Attack: + Attack: + + + DCAY DCAY + + Release: + Release: + + + + TRSH + TRSH + + + Treshold: Treshold: - TRSH - TRSH + + Mute output + Uitvoer dempen + + + + Absolute value + Absolute waarde PeakControllerEffectControls + Base value Basiswaarde + Modulation amount Hoeveelheid modulatie - Mute output - Uitvoer dempen - - + Attack Attack + Release Release - Abs Value - Abs waarde - - - Amount Multiplicator - Hoeveelheid-vermenigvuldiger - - + Treshold Treshold + + + Mute output + Uitvoer dempen + + + + Absolute value + Absolute waarde + + + + Amount multiplicator + Hoeveelheid-vermenigvuldiger + PianoRoll - Please open a pattern by double-clicking on it! - Open een patroon door erop te dubbelklikken! - - - Last note - Laatste noot - - - Note lock - Nootvergrendeling - - + Note Velocity Nootsnelheid + Note Panning - Noot-panning + Noot-balans + Mark/unmark current semitone Huidige semitoon markeren/niet markeren - Mark current scale - Huidige toonladder markeren - - - Mark current chord - Huidig akkoord markeren - - - Unmark all - Niets markeren - - - No scale - Geen toonladder - - - No chord - Geen akkoord - - - Velocity: %1% - Snelheid: %1% - - - Panning: %1% left - Panning: %1 % links - - - Panning: %1% right - Panning: %1 % rechts - - - Panning: center - Panning: midden - - - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: - - + 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 pattern (Space) + + 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 - Stop playing of current pattern (Space) + + 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) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Klik hier om het huidige patroon af te spelen. Dit is handig tijdens het bewerken. het patroon wordt automatisch herhaald wanneer het einde bereikt wordt. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Klik hier om noten van een MIDI-apparaat of de virtuele test-piano van het overeenkomstige kanaal-venster op te nemen in het huidige patroon. Tijdens het opnemen zullen alle noten die u speelt naar dit patroon geschreven worden en u kunt ze achteraf afspelen en bewerken. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Klik hier om noten van een MIDI-apparaat of de virtuele test-piano van het overeenkomstige kanaal-venster op te nemen in het huidige patroon. Tijdens het opnemen zullen alle noten die u speelt naar dit patroon geschreven worden en zal u de song of BB-track op de achtergrond horen. - - - Click here to stop playback of current pattern. - Klik hier om het afspelen van het huidige patroon te stoppen. - - - Draw mode (Shift+D) - Tekenmodus (Shift+D) - - - Erase mode (Shift+E) - Wissen-modus (Shift+E) - - - Select mode (Shift+S) - Selecteermodus (Shift+S) - - - Detune mode (Shift+T) - Ontstem-modus (Shift+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Klik hier en de tekenmodus zal ingeschakeld worden. In deze modus kunt u noten toevoegen, de grootte wijzigen en ze verplaatsen. Dit is de standaardmodus die het merendeel van de tijd gebruikt wordt. U kunt ook 'Shift+D' drukken op uw toetsenbord om deze modus in te schakelen. Houd %1 ingedrukt om tijdelijk in selecteermodus te gaan binnen deze modus. - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Klik hier en de verwijdermodus zal ingeschakeld worden. In deze modus kunt u noten verwijderen. U kunt ook 'Shift+E' drukken op uw toetsenbord om deze modus in te schakelen. - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Klik hier en de selecteermodus zal ingeschakeld worden. In deze modus kunt u noten selecteren. U kunt %1 ingedrukt houden in de tekenmodus om tijdelijk de selecteermodus te gebruiken. - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - Klik hier en de ontstem-modus zal ingeschakeld worden. In deze modus kunt u op een noot klikken om zijn automatisch ontstemmen te openen. U kunt dit gebruiken om van de ene noot naar de andere te glijden. U kunt ook 'Shift+T' op uw toetsenbord drukken om deze modus in te schakelen. - - - Cut selected notes (%1+X) - Geselecteerde noten knippen (%1+X) - - - Copy selected notes (%1+C) - Geselecteerde noten kopiëren (%1+C) - - - Paste notes from clipboard (%1+V) - Noten van klembord plakken (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klik hier en de geselecteerde noten zullen geplakt worden naar het klembord. U kunt ze overal in om het even welk patroon plakken door te klikken op de "plakken"-knop. - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klik hier en geselecteerde noten zullen gekopieerd worden naar het klembord. U kunt ze overal in om het even welk patroon plakken door te klikken op de 'plakken'-knop. - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Klik hier en de noten van het klembord zullen op de eerste zichtbare maat geplakt worden. - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Dit bepaalt de vergroting van een as. Het kan handig zijn om vergroting te kiezen voor een specifieke taak. Voor gewoon bewerken wordt de vergroting best aangepast aan uw kleinste noten. - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - De 'Q' staat voor quantization (kwantisatie) en beheert de rastergrootte waar noten en controlepunten op uitlijnen. Bij lagere kwantisatiewaarden kunt u kortere noten tekenen in de piano-roll, en meer exacte controlepunten tekenen in de automation-editor. - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - Dit laat u de lengte van nieuwe noten selecteren. 'Laatste noot' betekent dat LMMS de nootlengte zal gebruiken van de noot die u laatst bewerkte. - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - De functie is direct verbonden aan het contextmenu op het virtuele toetsenbord, links in de piano-roll. Nadat u de gewenste toonladder gekozen heeft in dit drop-down-menu, kunt u rechtsklikken op een gewenste toets op het virtuele toetsenbord en 'huidige toonladder markeren' kiezen. LMMS zal alle noten markeren die behoren tot de gekozen toonladder, en in de toonaard die u geselecteerd heeft! - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - Laat u een akkoord selecteren dat LMMS dan kan tekenen of markeren. U kunt de meeste algemene akkoorden terugvinden in dit drop-down-menu. Nadat u een akkoord geselecteerd heeft, klikt u ergens om het akkoord te plaatsen en rechtsklikt u op het virtuele toetsenbord om het contextmenu te openen en het akkoord te markeren. Om terug te keren naar plaatsing van enkelvoudige noten, moet u "geen akkoord" kiezen in dit drop-down-menu. - - + 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 pattern + + + Piano-Roll - no clip Piano-roll - geen patroon - Quantize - Kwantiseren + + + 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! @@ -5787,221 +10167,1293 @@ Reden: "%2" 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. - Instrument Plugins - Instrument-plugins + + 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 + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + Bediening + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Instellingen + + + + 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: + Soort: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + 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! + + 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 + Sluiten + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + Aan/uit + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - 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... - - + 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-File (*.wav) - WAV-bestand (*.wav) + + WAV (*.wav) + WAV (*.wav) - Compressed OGG-File (*.ogg) - Gecomprimeerd OGG-bestand (¨*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) - FLAC-bestand (*.flac) + + OGG (*.ogg) + OGG (*.ogg) - Compressed MP3-File (*.mp3) - Gecomprimeerd MP3-bestand (*.mp3) + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin + + + + + Show GUI + GUI weergeven + + + + Help + Help 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 - File: %1 - Bestand: %1 + + &Recently Opened Projects + &Recent geopende projecten RenameDialog + Rename... Naam wijzigen... @@ -6009,716 +11461,1606 @@ Reden: "%2" ReverbSCControlDialog + Input Invoer - Input Gain: + + Input gain: Invoer-gain: + Size Grootte + Size: Grootte: + Color Kleur + Color: Kleur: + Output Uitvoer - Output Gain: + + Output gain: Uitvoer-gain: ReverbSCControls - Input Gain + + Input gain Invoer-gain + Size Grootte + Color Kleur - Output Gain + + Output gain Uitvoer-gain + + SaControls + + + Pause + Pauzeren + + + + Reference freeze + Referentie bevriezen + + + + Waterfall + Waterval + + + + Averaging + Averaging + + + + Stereo + Stereo + + + + Peak hold + Piek vasthouden + + + + Logarithmic frequency + Logaritmische frequentie + + + + Logarithmic amplitude + Logaritmische amplitude + + + + Frequency range + Frequentiebereik + + + + Amplitude range + Amplitudebereik + + + + FFT block size + FFT-blokgrootte + + + + FFT window type + FFT-venstertype + + + + Peak envelope resolution + Piek envelope-resolutie + + + + Spectrum display resolution + Spectrumweergave-resolutie + + + + Peak decay multiplier + Piek decay vermenigvuldiger + + + + Averaging weight + Averaging-gewicht + + + + Waterfall history size + Waterval-geschiedenisgrootte + + + + Waterfall gamma correction + Waterval-gammacorrectie + + + + FFT window overlap + FFT-venster-overlap + + + + FFT zero padding + FFT-voorloopnullen + + + + + Full (auto) + Volledig (auto) + + + + + + Audible + Hoorbaar + + + + Bass + Bass + + + + Mids + Middentonen + + + + High + Hoge tonen + + + + Extended + Uitgebreid + + + + Loud + Luid + + + + 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 + + + + 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 - Open audio file - Audiobestand openen - - - 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) - - - 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) - - + 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 - - - SampleTCOView - double-click to select sample - dubbelklikken om sample te selecteren + + 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 - Sample track - Sample-track - - + Volume Volume + Panning - Panning + Balans + + + + Mixer channel + FX-kanaal + + + + + Sample track + Sample-track SampleTrackView + Track volume Track-volume + Channel volume: Volume kanaal: + VOL VOL + Panning - Panning + Balans + Panning: - Panning: + Balans: + PAN - 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 - Setup LMMS - LMMS instellen - - - General settings - Algemene instellingen - - - BUFFER SIZE - BUFFERGROOTTE - - - Reset to default-value + + Reset to default value Standaardwaarde herstellen - MISC - VARIA + + 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 - Show restart warning after changing settings - Waarschuwing voor herstarten weergeven na wijzigen van instellingen + + Enable master oscilloscope by default + - Compress project files per default - Projectbestanden standaard comprimeren + + Enable all note labels in piano roll + - One instrument track window mode - Venstermodus met een instrument-track + + Enable compact track buttons + - HQ-mode for output audio-device - HQ-modus voor audio-apparaat-uitvoer + + Enable one instrument-track-window mode + - Compact track buttons - Compacte track-knoppen + + 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 - Enable note labels in piano roll - Nootlabels inschakelen in piano-roll - - - Enable waveform display by default - Golfvormweergave standaard inschakelen - - + Keep effects running even without input Effecten actief houden, zelfs zonder invoer - Create backup file when saving a project - Reservekopie aanmaken bij opslaan van een project + + + Audio + Audio - LANGUAGE - TAAL + + Audio interface + Audio-interface - Paths - Paden + + 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-plugin directory - VST-pluginmap + + VST plugins directory + + + LADSPA plugins directories + + + + + SF2 directory + SF2-map + + + + Default SF2 + + + + + GIG directory + GIG-map + + + + Theme directory + + + + Background artwork Achtergrondafbeelding - STK rawwave directory - STK-rawwave-map + + Some changes require restarting. + Sommige wijzigingen vereisen een nieuwe start. - Default Soundfont File - Standaard soundfont-bestand + + Autosave interval: %1 + Interval automatisch opslaan: %1 - Performance settings - Prestatie-instellingen + + Choose the LMMS working directory + Kies de LMMS-werkmap - UI effects vs. performance - UI-effecten vs. prestaties + + Choose your VST plugins directory + Kies uw VST-plugin-map - Smooth scroll in Song Editor - Vloeiend scrollen in song-editor + + Choose your LADSPA plugins directory + Kies uw LADSPA-pluginmap - Show playback cursor in AudioFileProcessor - Afspeelcursor weergeven in AudioBestandProcessor + + Choose your default SF2 + Kies uw standaard SF2 - Audio settings - Audio-instellingen + + Choose your theme directory + Kies uw thema-map - AUDIO INTERFACE - AUDIO-INTERFACE + + Choose your background picture + Kies uw achtergrondafbeelding - MIDI settings - MIDI-instellingen - - - MIDI INTERFACE - MIDI-INTERFACE + + + Paths + Paden + OK Ok + Cancel Annuleren - Restart LMMS - LMMS opnieuw starten - - - Please note that most changes won't take effect until you restart LMMS! - Merk op dat de meeste wijzigingen geen effect zullen hebben totdat u LMMS opnieuw start! - - + Frames: %1 Latency: %2 ms Frames: %1 Latentie: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Hier kunt u de interne buffergrootte instellen die gebruikt wordt door LMMS. Kleinere waarden resulteren in een lagere latentie maar kunnen ook onbruikbaar geluid of slechte prestaties veroorzaken, vooral bij oudere computers of systemen met een niet-realtime kernel. - - - Choose LMMS working directory - Kies LMMS-werkmap - - - Choose your VST-plugin directory - Kies uw VST-plugin-map - - - Choose artwork-theme directory - Kies uw achtergrondafbeelding-map - - - Choose LADSPA plugin directory - Kies LADSPA-pluginmap - - - Choose STK rawwave directory - Kies STK-rawwave-map - - - Choose default SoundFont - Kies standaard SoundFont - - - Choose background artwork - Kies achtergrondafbeelding - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - Hier kunt u uw voorkeur voor audio-interface selecteren. Afhankelijk van de configuratie van uw systeem tijdens het compileren kunt u kiezen tussen ALSA, JACK, OSS en meer. Hieronder ziet u een vak dat besturingen biedt om de geselecteerde audio-interface in te stellen. - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - Hier kunt u uw voorkeur voor MIDI-interface selecteren. Afhankelijk van de configuratie van uw systeem tijdens het compileren kunt u kiezen tussen ALSA, OSS en meer. Hieronder ziet u een vak dat besturingen biedt om de geselecteerde MIDI-interface in te stellen. - - - Reopen last project on start - Laatste project opnieuw openen tijdens starten - - - Directories - Mappen - - - Themes directory - Map voor thema's - - - GIG directory - GIG-map - - - SF2 directory - SF2-map - - - LADSPA plugin directories - LADSPA-plugin-mappen - - - Auto save - Automatisch opslaan - - + Choose your GIG directory Kies uw GIG-map + Choose your SF2 directory Kies uw SF2-map + minutes minuten + minute minuut - Display volume as dBFS - Volume weergeven als dBFS - - - Enable auto-save - Automatisch opslaan inschakelen - - - Allow auto-save while playing - Automatisch opslaan toestaan tijdens afspelen - - + Disabled Uitgeschakeld + + + SidInstrument - Auto-save interval: %1 - Interval automatisch opslaan: %1 + + Cutoff frequency + Cutoff-frequentie - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Stelt de tijd tussen reservekopieën op %1. -Onthoud om uw project ook manueel op te slaan. U kunt kiezen om opslaan uit te schakelen tijdens afspelen, iets wat oudere systemen moeilijk vinden. + + Resonance + Resonantie + + + + Filter type + Filtersoort + + + + Voice 3 off + Stem 3 off + + + + Volume + Volume + + + + Chip model + Chip-model + + + + SidInstrumentView + + + Volume: + Volume: + + + + Resonance: + Resonantie: + + + + + Cutoff frequency: + Cutoff-frequentie: + + + + High-pass filter + Highpass-filter + + + + Band-pass filter + Bandpass-filter + + + + Low-pass filter + Lowpass-filter + + + + 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 + + + + SideBarWidget + + + Close + Sluiten Song + Tempo Tempo + Master volume Master-volume + Master pitch Master-toonhoogte - Project saved - Project opgeslagen + + Aborting project load + - The project %1 is now saved. - Project %1 is nu opgeslagen. + + Project file contains local paths to plugins, which could be used to run malicious code. + - 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 - - - Empty project - Leeg project - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Dit project is leeg, dus exporteren heeft geen zin. Zet eerst wat items in de song-editor! - - - Select directory for writing exported tracks... - Selecteer map voor schrijven van geëxporteerde tracks... - - - untitled - naamloos - - - Select file for project-export... - Selecteer bestand voor project-export... - - - The following errors occured while loading: - De volgende fouten traden op tijdens het laden: - - - MIDI File (*.mid) - MIDI-bestand (*.mid) + + Can't load project: Project file contains local paths to plugins. + + LMMS Error report LMMS-foutrapport - Save project - Project opslaan + + (repeated %1 times) + + + + + The following errors occurred while loading: + SongEditor + Could not open file Kan bestand niet openen - Could not write file - Kan bestand niet schrijven - - + 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 + + + + + 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. - Tempo - Tempo - - - TEMPO/BPM - TEMPO/BPM - - - tempo of song - tempo van song - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - Het tempo van een song wordt opgegeven in beats per minuut (BPM). Als u het tempo van uw song wilt veranderen, verandert u deze waarde. Elke maat heeft vier beats, dus het tempo in BPM geeft op hoeveel maten / 4 gespeeld moeten worden per minuut (of hoeveel maten gespeeld moeten worden per vier minuten). - - - High quality mode - Hogekwaliteitsmodus - - - Master volume - Master-volume - - - master volume - master-volume - - - Master pitch - Master-toonhoogte - - - master pitch - master-toonhoogte - - - Value: %1% - Waarde: %1 % - - - Value: %1 semitones - Waarde: %1 semitonen - - - 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. - Kon %1 niet openen om te schrijven. U heeft waarschijnlijk geen toestemming om naar dit bestand te schrijven. Verzeker u ervan dat u schrijfbevoegdheid heeft voor het bestand en probeer het opnieuw. - - - template - sjabloon - - - project - project - - + Version difference Versie-verschil - This %1 was created with LMMS %2. - Dit %1 werd aangemaakt met LMMS %2. + + 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 + 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) - Add beat/bassline - Beat-/baslijn toevoegen - - - Add sample-track - Sample-track toevoegen - - - Add automation-track - Automatisering-track toevoegen - - - Draw mode - Tekenmodus - - - Edit mode (select and move) - Bewerken-modus (selecteren en verplaatsen) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Klik hier als u uw volledige song wilt afspelen. het afspelen zal gestart worden op de song-positie-marker (groen). U kunt hem ook verplaatsen tijdens het afspelen. - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Klik hier als u het afspelen van uw song wilt stoppen. De song-positie-marker zal op het begin van uw song gezet worden. - - + 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) + + + + + Edit mode (select and move) + Bewerken-modus (selecteren en verplaatsen) + + + Timeline controls Tijdlijnbediening + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + Zoom controls Zoombediening - - - SpectrumAnalyzerControlDialog - Linear spectrum - Lineair spectrum + + Horizontal zooming + Horizontaal zoomen - Linear Y axis - Lineaire Y-as + + Snap controls + Vastklik-bedieningen + + + + + Clip snapping size + Vastklikgrootte van clip + + + + Toggle proportional snap on/off + Proportioneel vastklikken aan/uit + + + + Base snapping size + Basis-vastklikgrootte - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - Lineair spectrum + + Hint + Tip - Linear Y axis - Lineaire Y-as - - - Channel mode - Kanaalmodus + + Move recording curser using <Left/Right> arrows + Opname-cursor verplaatsen met pijl links/rechts SubWindow + Close Sluiten + Maximize Maximaliseren + Restore Herstellen @@ -6726,81 +13068,110 @@ Verzeker u ervan dat u ten minste leesrechten heeft voor het bestand en probeer 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 @@ -6808,30 +13179,37 @@ Verzeker u ervan dat u ten minste leesrechten heeft voor het bestand en probeer TimeDisplayWidget - click to change time units - klikken om tijd-eenheden te wijzigen + + Time units + Tijd-eenheden + MIN MIN + SEC S + MSEC MS + BAR BAR + BEAT BEAT + TICK TICK @@ -6839,45 +13217,50 @@ Verzeker u ervan dat u ten minste leesrechten heeft voor het bestand en probeer TimeLineWidget - Enable/disable auto-scrolling - Auto-scrollen in-/uitschakelen + + Auto scrolling + Automatisch scrollen - Enable/disable loop-points - Loop-punten in-/uitschakelen + + Loop points + Herhaalpunten - After stopping go back to begin - Na stoppen terug naar begin + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Houd <Shift> ingedrukt om het begin-herhaalpunt te verplaatsen; Druk op <%1> om magnetische herhaalpunten uit te schakelen. - Track + Mute Dempen + Solo Solo @@ -6885,305 +13268,492 @@ Verzeker u ervan dat u ten minste leesrechten heeft voor het bestand en probeer 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... - Importing MIDI-file... - MIDI-bestand importeren... + + 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... + - TrackContentObject + Clip + Mute Dempen - TrackContentObjectView + ClipView + Current position Huidige positie - Hint - Tip - - - Press <%1> and drag to make a copy. - Op <%1> drukken en slepen om een kopie te maken. - - + Current length Huidige lengte - Press <%1> for free resizing. - Op <%1> drukken voor vrije grootte-aanpassing. - - + + %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 + + + Paste + Plakken + TrackOperationsWidget - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. + + 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 for this track - Acties voor deze track + + Actions + Acties + + Mute Dempen + + Solo Solo - Mute this track - Deze track dempen + + 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 - FX %1: %2 + + 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 - Assign to new FX Channel - Aan nieuw FX-kanaal toewijzen + + Change color + Kleur veranderen + + + + Reset color to default + Kleur herstellen naar standaard + + + + Set random color + + + + + Clear clip colors + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - Fasemodulatie gebruiken om oscillator 1 met oscillator 2 te moduleren + + Modulate phase of oscillator 1 by oscillator 2 + Fase van oscillator 1 moduleren met oscillator 2 - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Amplitudemodulatie gebruiken om oscillator 1 met oscillator 2 te moduleren + + Modulate amplitude of oscillator 1 by oscillator 2 + Amplitude van oscillator 1 moduleren met oscillator 2 - Mix output of oscillator 1 & 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 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Frequentiemodulatie gebruiken om oscillator 1 met oscillator 2 te moduleren + + Modulate frequency of oscillator 1 by oscillator 2 + Frequentie van oscillator 1 moduleren met oscillator 2 - Use phase modulation for modulating oscillator 2 with oscillator 3 - Fasemodulatie gebruiken om oscillator 2 met oscillator 3 te moduleren + + Modulate phase of oscillator 2 by oscillator 3 + Fase van oscillator 2 moduleren met oscillator 3 - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Amplitudemodulatie gebruiken om oscillator 2 met oscillator 3 te moduleren + + Modulate amplitude of oscillator 2 by oscillator 3 + Amplitude van oscillator 2 moduleren met oscillator 3 - Mix output of oscillator 2 & 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 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Frequentiemodulatie gebruiken om oscillator 2 met oscillator 3 te moduleren + + Modulate frequency of oscillator 2 by oscillator 3 + Frequentie van oscillator 2 moduleren met oscillator 3 + Osc %1 volume: Osc %1 volume: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Met deze knop kunt u het volume van oscillator %1 instellen. Als waarde 0 ingesteld wordt, is de oscillator uitgeschakeld. Anders kunt u de oscillator zo luid horen als u hem hier instelt. - - + Osc %1 panning: - Osc %1 panning: - - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Met deze knop kunt u de panning voor oscillator %1 instellen. Een waarde van -100 betekent 100 % links en een waarde van 100 verplaatst de oscillator-uitvoer naar rechts. + Balans osc %1: + Osc %1 coarse detuning: Osc %1 grof ontstemmen: + semitones semitonen - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Met deze knop kunt u de grove ontstemming van oscillator %1 instellen. U kunt de oscillator 24 semitonen (2 octaven) omhoog en omlaag ontstemmen. Dit is handig om geluiden te maken met een akkoord. - - + Osc %1 fine detuning left: Osc %1 fijn ontstemmen links: + + cents cent - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Met deze knop kunt u de fijne ontstemming van oscillator %1 instellen voor het linker kanaal. Het fijn-ontstemmen heeft een bereik tussen -100 cent en +100 cent. Dit is bruikbaar voor het maken van "vette" geluiden. - - + Osc %1 fine detuning right: Osc %1 fijn ontstemmen rechts: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Met deze knop kunt u de fijne ontstemming van oscillator %1 instellen voor het rechter kanaal. Het fijn-ontstemmen heeft een bereik tussen -100 cent en +100 cent. Dit is bruikbaar voor het maken van "vette" geluiden. - - + Osc %1 phase-offset: Osc %1 faseverschuiving: + + degrees graden - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Met deze knop kunt u de faseverschuiving van oscillator %1 instellen. Dat betekent dat u het punt binnen een oscillatie kunt verplaatsen waar de oscillator begint met oscilleren. Als u bijvoorbeeld een sinusgolf heeft en een faseverschuiving van 180 graden, dan zal de golf eerst naar beneden gaan. Idem voor een blokgolf. - - + Osc %1 stereo phase-detuning: Osc %1 stereo-fase-ontstemming: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Met deze knop kunt u de stereo-fase-ontstemming van oscillator %1 instellen. De stereo-fase-ontstemming bepaalt de grootte van het verschil tussen de faseverschuiving van het linker en rechter kanaal. Dit is zeer goed om wijde stereogeluiden te maken. + + Sine wave + Sinusgolf - Use a sine-wave for current oscillator. - Sinusgolf gebruiken voor huidige oscillator + + Triangle wave + Driehoeksgolf - Use a triangle-wave for current oscillator. - Driehoeksgolf gebruiken voor huidige oscillator + + Saw wave + Zaagtandgolf - Use a saw-wave for current oscillator. - Zaagtandgolf gebruiken voor huidige oscillator. + + Square wave + Blokgolf - Use a square-wave for current oscillator. - Blokgolf gebruiken voor huidige oscillator. + + Moog-like saw wave + Moog-achtige zaagtandgolf - Use a moog-like saw-wave for current oscillator. - Moog-achtige zaagandgolf gebruiken voor huidige oscillator. + + Exponential wave + Exponentiële golf - Use an exponential wave for current oscillator. - Exponentiële golf gebruiken voor huidige oscillator. + + White noise + Witte ruis - Use white-noise for current oscillator. - Witte ruis gebruiken voor huidige oscillator. + + User-defined wave + Aangepaste golf + + + + VecControls + + + Display persistence amount + - Use a user-defined waveform for current oscillator. - Aangepaste golfvorm gebruiken voor huidige oscillator. + + 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 Versienummer verhogen + Decrement version number Versienummer verlagen + + Save Options + Opties voor opslaan + + + already exists. Do you want to replace it? bestaat reeds. Wilt u het vervangen? @@ -7191,156 +13761,117 @@ Verzeker u ervan dat u leesrechten heeft voor het bestand en zijn bevattende map VestigeInstrumentView - Open other VST-plugin - Andere VST-plugin openen - - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Klik hier als u een andere VST-plugin wilt openen. Nadat u op deze knop geklikt heeft, opent er een venster om bestanden te openen en kunt u uw bestand selecteren. - - - Show/hide GUI - GUI weergeven/verbergen - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Klik hier om de grafische gebruikersinterface (GUI) van uw VST-plugin weer te geven of te verbergen. - - - Turn off all notes - Alle noten uitschakelen - - - Open VST-plugin + + + Open VST plugin VST-plugin openen - DLL-files (*.dll) - DLL-bestanden (*.dll) - - - EXE-files (*.exe) - EXE-bestanden (*.exe) - - - No VST-plugin loaded - Geen VST-plugin geladen - - - Control VST-plugin from LMMS host + + Control VST plugin from LMMS host VST-plugin vanuit LMMS-host bedienen - Click here, if you want to control VST-plugin from host. - Klik hier als u de VST-plugin vanuit de host wilt bedienen. - - - Open VST-plugin preset + + Open VST plugin preset VST-plugin-preset openen - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klik hier als u een ander *.fxp, *.fxb VST-plugin-preset wilt openen. - - + Previous (-) Vorige (-) - Click here, if you want to switch to another VST-plugin preset program. - Klik hier als u wilt wisselen naar een ander VST-plugin-preset-programma. - - + Save preset Preset opslaan - Click here, if you want to save current VST-plugin preset program. - Klik hier als u het huidige VST-plugin-preset-programma wilt opslaan. - - + Next (+) Volgende (+) - Click here to select presets that are currently loaded in VST. - Klik hier om presets te selecteren die op dit moment in VST geladen zijn. + + 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) + + + + No VST plugin loaded + Geen VST-plugin geladen + + + Preset Preset + by door + - VST plugin control - VST-pluginbediening - - VisualizationWidget - - click to enable/disable visualization of master-output - klikken om visualisatie van master-uitvoer in-/uit te schakelen - - - Click to enable - Klikken om in te schakelen - - VstEffectControlDialog + Show/hide Weergeven/verbergen - Control VST-plugin from LMMS host + + Control VST plugin from LMMS host VST-plugin vanuit LMMS-host bedienen - Click here, if you want to control VST-plugin from host. - Klik hier als u de VST-plugin vanuit de host wilt bedienen. - - - Open VST-plugin preset + + Open VST plugin preset VST-plugin-preset openen - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klik hier als u een ander *.fxp, *.fxb VST-plugin-preset wilt openen. - - + Previous (-) Vorige (-) - Click here, if you want to switch to another VST-plugin preset program. - Klik hier als u wilt wisselen naar een ander VST-plugin-preset-programma. - - + Next (+) Volgende (+) - Click here to select presets that are currently loaded in VST. - Klik hier om presets te selecteren die op dit moment in VST geladen zijn. - - + Save preset Preset opslaan - Click here, if you want to save current VST-plugin preset program. - Klik hier als u het huidige VST-plugin-preset-programma wilt opslaan. - - + + Effect by: Effect door: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7348,173 +13879,207 @@ Verzeker u ervan dat u leesrechten heeft voor het bestand en zijn bevattende map VstPlugin - Loading plugin - Plugin laden + + + The VST plugin %1 could not be loaded. + VST-plugin %1 kon niet geladen worden. + 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 - Please wait while loading VST plugin... - Even geduld, VST-plugin wordt geladen... + + Loading plugin + Plugin laden - The VST plugin %1 could not be loaded. - VST-plugin %1 kon niet geladen worden. + + 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 - Panning A1 + Balans A1 + Panning A2 - Panning A2 + Balans A2 + Panning B1 - Panning B1 + Balans B1 + Panning B2 - 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 @@ -7522,2802 +14087,2251 @@ Verzeker u ervan dat u leesrechten heeft voor het bestand en zijn bevattende map WatsynView - 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 with 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 with 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 with 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 with 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 - - - Click to load a waveform from a sample file - Klikken om een golfvorm van een samplebestand te laden. - - - Phase left - Fase links - - - Click to shift phase by -15 degrees - Klikken om fase met -15 graden te verschuiven - - - Phase right - Fase rechts - - - Click to shift phase by +15 degrees - Klikken om fase met +15 graden te verschuiven - - - Normalize - Normaliseren - - - Click to normalize - Klikken om te normaliseren - - - Invert - Inverteren - - - Click to invert - Klikken om te inverteren - - - Smooth - Glad - - - Click to smooth - Klikken om glad te maken - - - Sine wave - Sinusgolf - - - Click for sine wave - Klikken voor sinusgolf - - - Triangle wave - Driehoeksgolf - - - Click for triangle wave - Klikken voor driehoeksgolf - - - Click for saw wave - Klikken voor zaagtandgolf - - - Square wave - Blokgolf - - - Click for square wave - Klikken voor blokgolf - - + + + + Volume Volume + + + + Panning - Panning + Balans + + + + Freq. multiplier Freq. vermenigvuldiger + + + + Left detune Links ontstemmen + + + + + + + + cents cent + + + + 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 + Normaliseren + + + + + Invert + Inverteren + + + + + Smooth + Glad + + + + + Sine wave + Sinusgolf + + + + + + Triangle wave + Driehoeksgolf + + + + Saw wave + Zaagtandgolf + + + + + Square wave + Blokgolf + + + + Xpressive + + + 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 frequency Filter-frequentie - Filter Resonance + + Filter resonance Filter-resonantie + Bandwidth Bandbreedte - FM Gain + + FM gain FM-versterking - Resonance Center Frequency + + Resonance center frequency Resonantie centerfrequentie - Resonance Bandwidth + + Resonance bandwidth Resonantie bandbreedte - Forward MIDI Control Change Events + + Forward MIDI control change events MIDI control change events doorsturen ZynAddSubFxView - Show GUI - GUI weergeven - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Klik hier om de grafische gebruikersinterface (GUI) van ZynAddSubFX weer te geven of te verbergen. - - + Portamento: Portamento: + PORT POORT - Filter Frequency: + + Filter frequency: Filter-frequentie: + FREQ FREQ - Filter Resonance: + + Filter resonance: Filter-resonantie: + RES RES + Bandwidth: Bandbreedte: + BW BW - FM Gain: + + 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 + + Forward MIDI control changes MIDI control changes doorsturen + + + Show GUI + GUI weergeven + - audioFileProcessor + AudioFileProcessor + Amplify Versterken + Start of sample Begin van sample + End of sample Einde van sample - Reverse sample - Sample omdraaien - - - Stutter - Stutter - - + 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 + BitInvader - Samplelength - Samplelengte + + Sample length + Sample-lengte: - bitInvaderView + BitInvaderView - Sample Length + + Sample length Sample-lengte: - Sine wave - Sinusgolf - - - Triangle wave - Driehoeksgolf - - - Saw wave - Zaagtandgolf - - - Square wave - Blokgolf - - - White noise wave - Witte-ruisgolf - - - User defined wave - Aangepaste golf - - - Smooth - Glad - - - Click here to smooth waveform. - Klik hier om de golfvorm glad te maken. - - - Interpolation - Interpolatie - - - Normalize - Normaliseren - - + 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. - Click for a sine-wave. - Klikken voor een sinusgolf. + + + Sine wave + Sinusgolf - Click here for a triangle-wave. - Klik hier voor een driehoeksgolf. + + + Triangle wave + Driehoeksgolf - Click here for a saw-wave. - Klik hier voor een zaagtandgolf. + + + Saw wave + Zaagtandgolf - Click here for a square-wave. - Klik hier voor een blokgolf. + + + Square wave + Blokgolf - Click here for white-noise. - Klik hier voor witte ruis. + + + White noise + Witte ruis - Click here for a user-defined shape. - Klik hier voor een aangepaste vorm. - - - - 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 waveform - Golfvorm herstellen - - - Click here to reset the wavegraph back to default - Klik hier om de golfgrafiek terug naar standaard te zetten + + + User-defined wave + Aangepaste golf + + Smooth waveform Golfvorm zacht maken - Click here to apply smoothing to wavegraph - Klik hier om verzachting op de golfgrafiek toe te passen + + Interpolation + Interpolatie - Increase wavegraph amplitude by 1dB + + 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 - Click here to increase wavegraph amplitude by 1dB - Klik hier om de golfgrafiek-amplitude te verhogen met 1 dB - - - Decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB Golfgrafiek-amplitude verlagen met 1 dB - Click here to decrease wavegraph amplitude by 1dB - Klik hier om de golfgrafiek-amplitude te verlagen met 1 dB - - - Stereomode Maximum - Stereomodus maximum + + Stereo mode: maximum + Stereomodus: maximum + Process based on the maximum of both stereo channels Verwerking gebaseerd op het maximum van beide stereokanalen - Stereomode Average - Stereomodus gemiddeld + + Stereo mode: average + Stereomodus: gemiddeld + Process based on the average of both stereo channels Verwerking gebaseerd op het gemiddelde van beide stereokanalen - Stereomode Unlinked - Stereomodus niet-gekoppeld + + Stereo mode: unlinked + Stereomodus: niet-gekoppeld + Process each stereo channel independently Elk stereokanaal onafhankelijk verwerken - dynProcControls + DynProcControls + Input gain Invoer-gain + Output gain Uitvoer-gain + Attack time Attack-tijd + Release time Release-tijd + Stereo mode Stereomodus - - expressiveView - - Select oscillator W1 - Oscillator W1 selecteren - - - Select oscillator W2 - Oscillator W2 selecteren - - - Select oscillator W3 - Oscillator W3 selecteren - - - Select OUTPUT 1 - UITVOER 1 selecteren - - - Select OUTPUT 2 - UITVOER 2 selecteren - - - Open help window - Help-venster openen - - - Sine wave - Sinusgolf - - - Click for a sine-wave. - Klikken voor sinusgolf. - - - Moog-Saw wave - Moog-zaagtandgolf - - - Click for a Moog-Saw-wave. - Klikken voor een moog-zaagtandgolf. - - - Exponential wave - Exponentiële golf - - - Click for an exponential wave. - Klikken voor een exponentiële golf. - - - Saw wave - Zaagtandgolf - - - Click here for a saw-wave. - Klik hier voor een zaagtandgolf. - - - User defined wave - Aangepaste golf - - - Click here for a user-defined shape. - Klik hier voor een aangepaste vorm. - - - 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. - - - White noise wave - Witte-ruisgolf - - - Click here for white-noise. - Klik hier voor 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: - O1 panning: - - - O2 panning: - O2 panning: - - - Release transition: - Release-overgang: - - - Smoothness - Gladheid - - - - fxLineLcdSpinBox - - Assign to: - Toewijzen aan: - - - New FX Channel - Nieuw FX-kanaal - - graphModel + Graph Grafiek - kickerInstrument + KickerInstrument + Start frequency Beginfrequentie + End frequency Eindfrequentie - Gain - Gain - - + Length Lengte - Distortion Start - Vervorming-begin + + Start distortion + Beginvervorming - Distortion End - Vervorming-einde + + End distortion + Eindvervorming - Envelope Slope + + Gain + Gain + + + + Envelope slope Envelope-helling + Noise Ruis + Click Klik - Frequency Slope + + Frequency slope Frequentie-helling + Start from note Starten vanaf noot + End to note Stoppen naar noot - kickerInstrumentView + KickerInstrumentView + Start frequency: Beginfrequentie: + End frequency: Eindfrequentie: + + Frequency slope: + Frequentie-helling: + + + Gain: Gain: - Frequency Slope: - Frequentie-helling: - - - Envelope Length: + + Envelope length: Envelope-lengte: - Envelope Slope: + + Envelope slope: Envelope-helling: + Click: Klik: + Noise: Ruis: - Distortion Start: - Vervorming-begin: + + Start distortion: + Beginvervorming: - Distortion End: - Vervorming-einde: + + End distortion: + Eindvervorming: - ladspaBrowserView + LadspaBrowserView + + Available Effects Beschikbare effecten + + Unavailable Effects Niet-beschikbare effecten + + Instruments Instrumenten + + Analysis Tools Analysegereedschappen + + Don't know Onbekend - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Dit venster geeft informatie weer over alle LADSPA-plugins die LMMS kon terugvinden. De plugins worden onderverdeeld in vijf categorieën gebaseerd op een interpretatie van de poorttypes en namen - -Beschikbare effecten zijn diegene die door LMMS gebruikt kunnen worden. Opdat LMMS een effect zou kunnen gebruiken, moet het eerst en vooral een effect zijn, wat betekent dat het invoer- en uitvoerkanalen moet bevatten. LMMS indentificeert een invoerkanaal als een audio-rate-poort die 'in' in de naam bevat. Uitvoerkanalen worden geïdentificeerd door de letters 'out'. Verder moet het effect hetzelfde aantal invoeren en uitvoeren hebben en realtime-capabel zijn. - -Niet-beschikbare effecten zijn diegene die geïdentificeerd werden als effecten maar ofwel niet hetzelfde aantal invoer- en uitvoerkanalen hadden of niet realtime-capabel waren. - -Instrumenten zijn plugins waarbij alleen uitvoerkanalen geïdentificeerd werden. - -Analysegereedschappen zijn plugins waarvoor alleen invoerkanalen geïdentificeerd werden. - -Onbekende zijn plugins waarvoor geen invoer- of uitvoerkanalen geïdentificeerd werden. - -Dubbelklikken op om het even welke plugins zal informatie geven over de poorten. - - + Type: Soort: - ladspaDescription + LadspaDescription + Plugins Plugins + Description Beschrijving - ladspaPortDialog + 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 + 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 + 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 + MalletsInstrument + Hardness Hardheid + Position Positie - Vibrato Gain + + Vibrato gain Vibrato-gain - Vibrato Freq - Vibrato-freq + + Vibrato frequency + Vibrato-frequentie - Stick Mix + + Stick mix Stick-mix + Modulator Modulator + Crossfade Crossfade - LFO Speed + + LFO speed LFO-snelheid - LFO Depth + + LFO depth LFO-diepte + ADSR ADSR + Pressure Druk + Motion Beweging + Speed Snelheid + Bowed Gebogen + Spread Spreiding + Marimba Marimba + Vibraphone Vibraphone + Agogo Agogo - Wood1 - Wood1 + + Wood 1 + Hout 1 + Reso Reso - Wood2 - Wood2 + + Wood 2 + Hout 2 + Beats Beats - Two Fixed + + Two fixed Two Fixed + Clump Clump - Tubular Bells + + Tubular bells Tubular bells - Uniform Bar + + Uniform bar Uniforme balk - Tuned Bar + + Tuned bar Gestemde balk + Glass Glas - Tibetan Bowl + + Tibetan bowl Tibetaanse kom - malletsInstrumentView + MalletsInstrumentView + Instrument Instrument + Spread Spreiding + Spread: Spreiding: - Hardness - Hardheid - - - Hardness: - Hardheid: - - - Position - Positie - - - Position: - Positie: - - - Vib Gain - Vib-gain - - - Vib Gain: - Vib-gain: - - - Vib Freq - Vib-freq - - - Vib Freq: - Vib-freq: - - - 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: - - + 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 + ManageVSTEffectView + - VST parameter control - VST parameterbediening - VST Sync + + VST sync VST sync - Click here if you want to synchronize all parameters with VST plugin. - Klik hier als u alle parameters met VST-plugin wilt synchroniseren. - - + + Automated Geautomatiseerd - Click here if you want to display automated parameters only. - Klik hier als u alleen geautomatiseerde parameters wilt weergeven. - - + Close Sluiten - - Close VST effect knob-controller window. - Venster voor VST-effect-knop-bediening sluiten. - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - VST-pluginbediening + VST Sync VST sync - Click here if you want to synchronize all parameters with VST plugin. - Klik hier als u alle parameters met VST-plugin wilt synchroniseren. - - + + Automated Geautomatiseerd - Click here if you want to display automated parameters only. - Klik hier als u alleen geautomatiseerde parameters wilt weergeven. - - + Close Sluiten - - Close VST plugin knob-controller window. - Venster voor VST-plugin-knop-bediening sluiten. - - opl2instrument - - 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 Multiple - Op 1 frequentie meerdere - - - Op 1 Feedback - Op 1 feedback - - - Op 1 Key Scaling Rate - Op 1 toets 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 Multiple - Op 2 frequentie meerdere - - - Op 2 Key Scaling Rate - Op 2 toets 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 - - - - opl2instrumentView - - Attack - Attack - - - Decay - Decay - - - Release - Release - - - Frequency multiplier - Frequentievermenigvuldiger - - - - organicInstrument + OrganicInstrument + Distortion Vervorming + Volume Volume - organicInstrumentView + OrganicInstrumentView + Distortion: Vervorming: + Volume: Volume: + Randomise Willekeuring maken + + Osc %1 waveform: Osc %1 golfvorm: + Osc %1 volume: Osc %1 volume: + Osc %1 panning: - Osc %1 panning: - - - cents - cent - - - The distortion knob adds distortion to the output of the instrument. - De distortion-knop voegt vervorming toe aan de uitvoer van het instrument. - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - De volumeknop bedint het volume van de uitvoer van het instrument. Het is cumulatief met de volumebediening van het instrumentvenster. - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - De willekeurigheids-knop maakt alle knoppen willekeurig behalve de harmonischen, het hoofdvolume en de distortion-knoppen. + Balans osc %1: + Osc %1 stereo detuning Osc %1 stereo-ontstemming + + cents + cent + + + Osc %1 harmonic: Osc %1 harmonisch: - FreeBoyInstrument - - Sweep time - Sweep-tijd - - - Sweep direction - Sweep-richting - - - Sweep RtShift amount - Sweep hoeveelheid RtShift - - - Wave Pattern Duty - 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 - - - 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 - - - Shift Register width - Registerbreedte verschuiven - - - - FreeBoyInstrumentView - - Sweep Time: - Sweep-tijd: - - - Sweep Time - Sweep-tijd - - - Sweep RtShift amount: - Sweep hoeveelheid RtShift: - - - Sweep RtShift amount - Sweep hoeveelheid RtShift - - - Wave pattern duty: - Golfpatroon-inschakeltijd: - - - Wave Pattern Duty - Golfpatroon-inschakeltijd - - - 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 - - - Wave pattern duty - Golfpatroon-inschakeltijd - - - Square Channel 2 Volume: - Blok kanaal 2 volume: - - - Square Channel 2 Volume - Blok kanaal 2 volume - - - Wave Channel Volume: - Golf kanaal volume: - - - Wave Channel Volume - Golf kanaal volume - - - Noise Channel Volume: - Ruis kanaal volume: - - - Noise Channel Volume - Ruis kanaal volume - - - SO1 Volume (Right): - S01 volume (rechts): - - - SO1 Volume (Right) - SO1 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 - - - Channel1 to SO1 (Right) - Kanaal1 naar SO1 (rechts) - - - Channel2 to SO1 (Right) - Kanaal2 naar SO1 (rechts) - - - Channel3 to SO1 (Right) - Kanaal3 naar SO1 (rechts) - - - Channel4 to SO1 (Right) - Kanaal4 naar SO1 (rechts) - - - Channel1 to SO2 (Left) - Kanaal1 naar SO2 (links) - - - Channel2 to SO2 (Left) - Kanaal2 naar SO2 (links) - - - Channel3 to SO2 (Left) - Kanaal3 naar SO2 (links) - - - Channel4 to SO2 (Left) - Kanaal4 naar SO2 (links) - - - Wave Pattern - Golfpatroon - - - The amount of increase or decrease in frequency - De hoeveelheid verhoging of verlaging in frequentie - - - The rate at which increase or decrease in frequency occurs - De ratio waarop verhoging of verlaging in frequentie zich voordoet - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - De inschakeltijd is de ratio van de duur (tijd) dat een signaal AAN is versus de totale periode van het signaal. - - - Square Channel 1 Volume - Blok kanaal 1 volume - - - The delay between step change - Delay tussen stapwijziging - - - Draw the wave here - Teken de golf hier - - - - patchesDialog + 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 - pluginBrowser - - no description - geen beschrijving - - - Incomplete monophonic imitation tb303 - Onvoltooide monofonische limitering tb303 - - - Plugin for freely manipulating stereo output - Plugin voor het vrij manipuleren voor stereo-uitoer - - - Plugin for controlling knobs with sound peaks - Plugin voor het bedienen van knoppen met geluidspieken - - - Plugin for enhancing stereo separation of a stereo input file - Plugin voor het verbeteren van stereo-scheiding van een stereo-invoerbestand. - - - List installed LADSPA plugins - Geïnstalleerde LADSPA-plugins oplijsten - - - GUS-compatible patch instrument - GUS-compatibel patch-instrument - - - Additive Synthesizer for organ-like sounds - Additive Synthesizer voor orgelachtige geluiden - - - Tuneful things to bang on - Welluidende zaken om te knallen - - - 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 LADSPA-effects inside LMMS. - plugin voor het gebruik van arbitraire LADSPA-effecten binnen LMMS. - - - Filter for importing MIDI-files into LMMS - Filter, om MIDI-bestanden in LMMS te importeren - - - 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. - - - Player for SoundFont files - Speler voor SoundFont-bestanden - - - Emulation of GameBoy (TM) APU - Emulatie van GameBoy (TM) APU - - - Customizable wavetable synthesizer - Aanpasbare wavetable-synthesizer - - - Embedded ZynAddSubFX - Ingebedde ZynAddSubFX - - - 2-operator FM Synth - 2-operator FM-synth - - - Filter for importing Hydrogen files into LMMS - Filter voor importeren van Hydrogen-bestanden in LMMS - - - LMMS port of sfxr - LMMS port van sfxr - - - Monstrous 3-oscillator synth with modulation matrix - Monsterlijke 3-oscillator synth met modulatiematrix - - - Three powerful oscillators you can modulate in several ways - Drie krachtige oscillators die u op verschillende manieren kunt moduleren - - - A native amplifier plugin - Een ingebouwde versterker-plugin - - - Carla Rack Instrument - Carla Rack instrument - - - 4-oscillator modulatable wavetable synth - 4-oscillator moduleerbare wavetable-synth - - - plugin for waveshaping - plugin voor golfvorming - - - Boost your bass the fast and simple way - Versterk uw bas snel en eenvoudig - - - Versatile drum synthesizer - Veelzijdige drum-synthesizer - - - 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 - - - plugin for processing dynamics in a flexible way - plugin voor het verwerken van dynamieken op een flexibele manier - - - Carla Patchbay Instrument - Carla Patchbay instrument - - - plugin for using arbitrary VST effects inside LMMS. - plugin voor het gebruik van arbitraire VST-effecten binnen LMMS. - - - Graphical spectrum analyzer plugin - Grafische spectrum-analyse-plugin - - - A NES-like synthesizer - Een NES-achtige synthesizer - - - A native delay plugin - Een ingebouwde delay-plugin - - - Player for GIG files - Speler voor GIG-bestanden - - - A multitap echo delay plugin - Een multitap-echo-delay-plugin - - - A native flanger plugin - Een ingebouwde flanger-plugin - - - An oversampling bitcrusher - Een oversampling-bitcrusher - - - A native eq plugin - Een ingebouwde eq-plugin - - - A 4-band Crossover Equalizer - Een 4-band crossover-equalizer - - - A Dual filter plugin - Een dual-filter-plugin - - - Filter for exporting MIDI-files from LMMS - Filter voor exporteren van MIDI-bestanden van LMMS - - - Reverb algorithm by Sean Costello - Reverb-algoritme door Sean Costello - - - Mathematical expression parser - Wiskundige uitdrukking-verwerker - - - - sf2Instrument + Sf2Instrument + Bank Bank + Patch Patch + Gain Gain + Reverb Reverb - Reverb Roomsize + + Reverb room size Reverb kamergrootte - Reverb Damping + + Reverb damping Reverb demping - Reverb Width + + Reverb width Reverb-breedte - Reverb Level + + Reverb level Reverb niveau + Chorus Chorus - Chorus Lines - Chorus lines + + Chorus voices + Chorus stemmen - Chorus Level + + Chorus level Chorus niveau - Chorus Speed + + Chorus speed Chorus snelheid - Chorus Depth + + Chorus depth Chorus diepte + A soundfont %1 could not be loaded. Een soundfont &1 kon niet geladen worden. - sf2InstrumentView - - Open other SoundFont file - Ander SoundFont-bestand openen - - - Click here to open another SF2 file - Klik hier om een ander SF2-bestand te openen - - - Choose the patch - Patch kiezen - - - Gain - Gain - - - Apply reverb (if supported) - Reverb toepassen (indien ondersteund) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Deze knop schakelt het reverb-effect in. Dit is bruikbaar voor coole effecten, maar werkt alleen op bestanden die het ondersteunen. - - - Reverb Roomsize: - Reverb kamergrootte: - - - Reverb Damping: - Reverb demping: - - - Reverb Width: - Reverb breedte: - - - Reverb Level: - Reverb niveau: - - - Apply chorus (if supported) - Chorus toepassen (indien ondersteund) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Deze knop schakelt het chorus-effect in. Dit is bruikbaar voor coole echo-effecten, maar werkt alleen op bestanden die het ondersteunen. - - - Chorus Lines: - Chorus lines: - - - Chorus Level: - Chorus niveau: - - - Chorus Speed: - Chorus snelheid: - - - Chorus Depth: - Chorus diepte: - + Sf2InstrumentView + + Open SoundFont file SoundFont-bestand openen - SoundFont2 Files (*.sf2) - SoundFont2-bestanden (*.sf2) + + 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 + SfxrInstrument - Wave Form - Golfvorm + + Wave + Golf - sidInstrument + StereoEnhancerControlDialog - Cutoff - Cutoff - - - Resonance - Resonantie - - - Filter type - Filtersoort - - - Voice 3 off - Stem 3 off - - - Volume - Volume - - - Chip model - Chip-model - - - - sidInstrumentView - - Volume: - Volume: - - - Resonance: - Resonantie: - - - Cutoff frequency: - Cutoff-frequentie: - - - High-Pass filter - Highpass-filter - - - Band-Pass filter - Bandpass-filter - - - Low-Pass filter - Lowpass-filter - - - Voice3 Off - Stem3 off - - - MOS6581 SID - MOS6581 SID - - - MOS8580 SID - MOS8580 SID - - - Attack: - Attack: - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Attack-ratio bepaalt hoe snel de uitvoer van stem %1 stijgt van nul naar piek-amplitude. - - - Decay: - Decay: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - Decay-ratio bepaalt hoe snel de uitvoer valt van de piek-amplitude naar het geselecteerde sustain-niveau. - - - Sustain: - Sustain: - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - Uitvoer van stem %1 zal op de geselecteerde sustain-amplitude blijven zolang de noot aangehouden wordt. - - - Release: - Release: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - De uitvoer van stem %1 zal vallen van sustain-amplitude naar nul-amplitude met de geselecteerde release-ratio. - - - Pulse Width: - Pulsbreedte: - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - De pulsbreedte-resolutie laat toe dat de breedte vloeiend gesweept wordt zonder onderscheidbare stappen. De puls-golfvorm op oscillator %1 moet geselecteerd worden om enig hoorbaar effect te hebben. - - - Coarse: - Grof: - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - De grove ontstemming laat toe om stem %1 een octaaf omhoog of omlaag te ontstemmen. - - - Pulse Wave - Pulsgolf - - - Triangle Wave - Driehoeksgolf - - - SawTooth - Zaagtand - - - Noise - Ruis - - - Sync - Sync - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Sync synchroniseert de fundamentele frequentie van oscillator %1 met de fundamentele frequentie van oscillator %2 wat "hard sync"-effecten produceert. - - - Ring-Mod - Ring-mod - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Ring-mod vervangt de driehoeksgolfvorm-uitvoer van oscillator %1 met een "ringgemoduleerde" combinatie van oscillators %1 en %2. - - - Filtered - Gefilterd - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Wanneer gefilterd aan is, zal stem %1 verwerkt worden via de filter. Wanneer gefilterd uit is, verschijnt stem %1 direct aan de uitvoer en heeft de filter er geen effect op. - - - Test - Test - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Test, wanneer ingesteld, herstelt en vergrendelt oscillator %1 op nul totdat test uitgeschakeld wordt. - - - - stereoEnhancerControlDialog - - WIDE - WIDE + + WIDTH + BREEDTE + Width: Breedte: - stereoEnhancerControls + StereoEnhancerControls + Width Breedte - stereoMatrixControlDialog + 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 + 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 + VestigeInstrument + Loading plugin Plugin laden - Please wait while loading VST-plugin... - Even geduld bij het laden van VST-plugin... + + Please wait while loading the VST plugin... + Even geduld, de VST-plugin wordt geladen... - vibed + 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 - Pan %1 - Pan %1 + + String %1 panning + String %1 balans - Detune %1 - Ontstemmen %1 + + String %1 detune + String %1 ontstemmen - Fuzziness %1 - Ruigheid %1 + + String %1 fuzziness + String %1 zachtheid - Length %1 - Lengte %1 + + String %1 length + String %1 lengte + Impulse %1 Impuls %1 - Octave %1 - Octaaf %1 + + String %1 + String %1 - vibedView + VibedView - Volume: - Volume: - - - The 'V' knob sets the volume of the selected string. - De 'V'-knop stelt het volume in van de geselecteerde snaar. + + String volume: + String volume: + String stiffness: Hardheid snaar: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - De 'S'-knop stelt de hardheid (stijfheid) in van de geselecteerde snaar. De hardheid van de snaar beïnvloedt hoe lang de snaar zal blijven klinken. Hoe lager de instelling, hoe langer de snaar zal klinken. - - + Pick position: Aanslagpositie: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - De 'P'-knop stelt de positie in waar de geselecteerde snaar aangeslagen zal worden. Hoe lager de instelling, hoe dichter de aanslag bij de brug is. - - + Pickup position: Pickup-positie: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - De 'PU'-knop stelt de positie in waar de trillingen gemonitord worden voor de geselecteerde snaar. Hoe lager de instelling, hoe dichter de pickup bij de brug is. + + String panning: + String balans: - Pan: - Pan: + + String detune: + String ontstemmen: - The Pan knob determines the location of the selected string in the stereo field. - De pan-knop bepaalt de locatie van de geselecteerde snaar in het stereo-veld. + + String fuzziness: + String zachtheid: - Detune: - Ontstemmen: + + String length: + String lengte: - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - De ontstemknop wijzigt de toonhoogte van de geselecteerde snaar. Instellingen lager dan nul zullen de snaar "flat" laten klinken. Instellingen groter dan nul zullen de snaar scherper laten klinken. - - - Fuzziness: - Ruigheid: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - De slap-knop voegt een beetje ruigheid toe aan de geselecteerde snaar en is het meest merkbaar tijdens de attack-fase, hoewel het ook gebruikt kan worden om de snaar meer 'metaalachtig' te laten klinken. - - - Length: - Lengte: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - De lengte-knop stelt de lengte in van de geselecteerde snaar. Langere snaren zullen langer trillen en helderder klinken, maar ze zullen ook meer processorcyclussen opeten. - - - Impulse or initial state - Impuls of begininstelling - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - De 'imp'-selector bepaalt of de golfvorm in de grafiek behandeld moet worden als een impulsgever op de snaar tijdens het aanslaan of de begininstelling van de snaar. + + Impulse + Impuls + Octave Octaaf - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - De octaaf-selector wordt gebruikt om te kiezen welke harmonische van de noot de snaar zal klinken. Bijvoorbeeld, '-2' betekent dat de snaar twee octaven onder de grondtoon zal trillen, 'F' betekent dat de snaar op de grondtoon zal klinken, en '6' betekent dat de snaar zes octaven boven de grondtoon zal trillen. - - + Impulse Editor Impuls-editor - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - De Golfvorm-editor voorziet controle over de beginstatus of impuls die gebruikt wordt om de snaar te laten trillen. De knoppen rechts van de grafiek zullen de golfvorm initialiseren naar het geselecteerde type. De '?'-knop zal een golfvorm laden van een bestand - slechts de eerste 128 samples zullen geladen worden. - -De golfvorm kan ook in de grafiek getekend worden. - -De 'S'-knop zal de golfvorm vloeiend maken. - -De 'N'-knop zal de golfvorm normaliseren. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Vibed modelleert to negen onafhankelijk trillende snaren. De 'snaar'-selector laat u toe om te kiezen welke snaar bewerkt wordt. De 'imp'-selector kiest of de grafiek een impuls of de initiële status van de snaar weergeeft. De 'octaaf'-selector kiest op welke harmonische de snaar moet trilen. - -De grafiek laat u toe om de initiële status of impuls gebruikt om de snaar te laten bewegen, in te stellen. - -De 'V'-knop bedient het vollume. De 'S'-knop bedient de hardheid van de snaar. De 'P'-knop bedient de aanslagpositie. De 'PU'-knop bedient de pickup-positie. - -'Pan' en 'ontstemmen' hebben hopelijk geen uitleg nodig. De 'slap'-knop voegt wat ruigheid toe aan het geluid van de snaar. - -De 'lengte'-knop bedient de lengte van de snaar. - -De LED in de hoek rechtsonder van de golfvorm-editor bepaalt of de snaar actief is in het huidige instrument. - - + Enable waveform Golfvorm activeren - Click here to enable/disable waveform. - Klik hier om een golfvorm in-/uit te schakelen. + + Enable/disable string + String in-/uitschakelen + String Snaar - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - De snaar-selector wordt gebruikt om te kiezen welke snaar de bedieningen bewerken. Een Vibed-instrument kan tot negen onafhankelijk trillende snaren bevatten. De LED in de hoek rechtsonder van de golfvorm-editor geeft aan of de geselecteerde snaar actief is. - - + + Sine wave Sinusgolf + + Triangle wave Driehoeksgolf + + Saw wave Zaagtandgolf + + Square wave Blokgolf - White noise wave - Witte-ruisgolf + + + White noise + Witte ruis - User defined wave + + + User-defined wave Aangepaste golf - Smooth - Glad + + + Smooth waveform + Golfvorm zacht maken - Click here to smooth waveform. - Klik hier om de golfvorm glad te maken. - - - Normalize - Normaliseren - - - Click here to normalize waveform. - Klik hier om de golfvorm te normaliseren. - - - Use a sine-wave for current oscillator. - Sinusgolf gebruiken voor huidige oscillator. - - - Use a triangle-wave for current oscillator. - Driehoeksgolf gebruiken voor huidige oscillator. - - - Use a saw-wave for current oscillator. - Zaagtandgolf gebruiken voor huidige oscillator. - - - Use a square-wave for current oscillator. - Blokgolf gebruiken voor huidige oscillator. - - - Use white-noise for current oscillator. - Witte ruis gebruiken voor huidige oscillator. - - - Use a user-defined waveform for current oscillator. - Aangepaste golfvorm gebruiken voor huidige oscillator. + + + Normalize waveform + Golfvorm normaliseren - voiceObject + 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 + WaveShaperControlDialog + INPUT INVOER + Input gain: Invoer-gain: + OUTPUT UITVOER + Output gain: Uitvoer-gain: - Reset waveform + + + Reset wavegraph Golfvorm herstellen - Click here to reset the wavegraph back to default - Klik hier om de golfgrafiek terug naar standaard te zetten - - - Smooth waveform + + + Smooth wavegraph Golfvorm zacht maken - Click here to apply smoothing to wavegraph - Klik hier om verzachting op de golfgrafiek toe te passen + + + Increase wavegraph amplitude by 1 dB + Golfgrafiek-amplitude verhogen met 1 dB - Increase graph amplitude by 1dB - Grafiek-amplitude verhogen met 1 dB - - - Click here to increase wavegraph amplitude by 1dB - Klik hier om de golfgrafiek-amplitude te verhogen met 1 dB - - - Decrease graph amplitude by 1dB - Grafiek-amplitude verlagen met 1 dB - - - Click here to decrease wavegraph amplitude by 1dB - Klik hier om de golfgrafiek-amplitude te verlagen met 1 dB + + + Decrease wavegraph amplitude by 1 dB + Golfgrafiek-amplitude verlagen met 1 dB + Clip input Invoer clippen - Clip input signal to 0dB + + Clip input signal to 0 dB Invoersignaal clippen naar 0 dB - waveShaperControls + WaveShaperControls + Input gain Invoer-gain + Output gain Uitvoer-gain - \ No newline at end of file + diff --git a/data/locale/oc.ts b/data/locale/oc.ts new file mode 100644 index 000000000..58c81c964 --- /dev/null +++ b/data/locale/oc.ts @@ -0,0 +1,16326 @@ + + + AboutDialog + + + About LMMS + A prepaus de LMMS + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + + + + + About + A prepauses + + + + LMMS - easy music production for everyone. + + + + + Copyright © %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> + + + + + Authors + Autoras + + + + Involved + Personas implicadas + + + + Contributors ordered by number of commits: + Contributeurs classats per nombre de commits: + + + + Translation + Traduccion + + + + 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! + + + + + License + Licéncia + + + + AmplifierControlDialog + + + VOL + VOL + + + + Volume: + Volum: + + + + PAN + + + + + Panning: + + + + + LEFT + ESQUERRA + + + + Left gain: + Ganh d'esquèr: + + + + RIGHT + DRECHA + + + + Right gain: + Ganh de drecha: + + + + AmplifierControls + + + Volume + Volum + + + + Panning + + + + + Left gain + Ganh d'esquèr + + + + Right gain + Ganh de drecha + + + + AudioAlsaSetupWidget + + + DEVICE + + + + + CHANNELS + CANALS + + + + AudioFileProcessorView + + + Open sample + + + + + Reverse sample + Invertir l'escapolon + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + Amplificar: + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + AudioFileProcessorWaveView + + + Sample length: + Longada de l'escapolon: + + + + 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 + Suprimir totes los contraròtles ligats + + + + Connected to %1 + Connectat a %1 + + + + Connected to controller + + + + + Edit connection... + Editar la connexion... + + + + Remove connection + Suprimir la connexion + + + + 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 + Accions d'edicion + + + + Draw mode (Shift+D) + Mòda dessenh (Shift+D) + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Flip vertically + Virar verticalament + + + + Flip horizontally + Virar orizontalament + + + + Interpolation controls + + + + + Discrete progression + Progression discreta + + + + Linear progression + Progression lineara + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + Contraròtles del zoom + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + Contraròtles de quantificacion + + + + Quantization + Quantificacion + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + Editor de automacion - %1 + + + + Model is already connected to this clip. + + + + + AutomationClip + + + Drag a control while pressing <%1> + + + + + AutomationClipView + + + Open in Automation editor + Dobrir dins l'editor de automation + + + + Clear + Escafar + + + + Reset name + + + + + Change name + Modificar lo nom + + + + Set/clear record + + + + + Flip Vertically (Visible) + Virar verticalament (visible) + + + + Flip Horizontally (Visible) + Virar orizontalament (visible) + + + + %1 Connections + %1 Connexions + + + + 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 + Modificar lo nom + + + + PatternTrack + + + Beat/Bassline %1 + + + + + Clone of %1 + + + + + BassBoosterControlDialog + + + FREQ + FREQ + + + + Frequency: + Frequéncia: + + + + GAIN + GANH + + + + Gain: + Ganh: + + + + RATIO + + + + + Ratio: + + + + + BassBoosterControls + + + Frequency + Frequéncia + + + + Gain + Ganh + + + + Ratio + + + + + BitcrushControlDialog + + + IN + DINTRADA + + + + OUT + SORTIDA + + + + + GAIN + GANH + + + + Input gain: + Ganh en dintrada: + + + + NOISE + RUMOR + + + + Input noise: + + + + + Output gain: + Ganh en sortida: + + + + CLIP + CLIP + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + FREQ + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + BitcrushControls + + + Input gain + Ganh en dintrada + + + + Input noise + + + + + Output gain + Ganh en sortida + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + A prepauses + + + + About text here + + + + + Extended licensing here + + + + + 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 + Licéncia + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Fichièr + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + &Ajuda + + + + toolBar + + + + + Disk + + + + + + Home + + + + + Transport + + + + + Playback Controls + + + + + Time Information + + + + + Frame: + + + + + 000'000'000 + + + + + Time: + + + + + 00:00:00 + + + + + BBT: + + + + + 000|00|0000 + + + + + Settings + Configuracion + + + + BPM + + + + + Use JACK Transport + + + + + Use Ableton Link + + + + + &New + &Nòu + + + + Ctrl+N + + + + + &Open... + &Dobrir... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + &Enregistrar + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + &Abandonar + + + + 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 + + + + + &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... + + + + + CarlaHostWindow + + + Export as... + + + + + + + + Error + 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 + Mostrar UIG + + + + CarlaSettingsW + + + Settings + Configuracion + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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: + Ataca: + + + + 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 + Ganh en sortida + + + + + Gain + Ganh + + + + Output volume + + + + + Input gain + Ganh en dintrada + + + + 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 + Ataca + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + Ganh en sortida + + + + Input Gain + Ganh en dintrada + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + Mix + + + + Controller + + + Controller %1 + + + + + ControllerConnectionDialog + + + Connection Settings + Configuracion de la connexion + + + + MIDI CONTROLLER + + + + + Input channel + Canal de dintrada + + + + CHANNEL + CANAL + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + OK + + + + Cancel + Barrar + + + + LMMS + LMMS + + + + Cycle Detected. + + + + + ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + Confirmar la supression + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + ControllerView + + + Controls + Contraròtles + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + 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 + Ganh en sortida + + + + DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + FDBK + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + AMNT + + + + LFO amount + + + + + Out gain + + + + + Gain + Ganh + + + + Dialog + + + Add JACK Application + + + + + Note: Features not implemented yet are greyed out + + + + + Application + + + + + Name: + + + + + Application: + + + + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + Pas cap + + + + 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 + FREQ + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + GANH + + + + + Gain + Ganh + + + + MIX + MIX + + + + Mix + Mix + + + + Filter 1 enabled + Filtre 1 activat + + + + Filter 2 enabled + Filtre 2 activat + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + DualFilterControls + + + Filter 1 enabled + Filtre 1 activat + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + Ganh 1 + + + + Mix + Mix + + + + Filter 2 enabled + Filtre 2 activat + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + Ganh 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 + + + + + + Fast Formant + + + + + + Tripole + + + + + Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + Parar (barra d'espaci) + + + + Record + Enregistrar + + + + Record while playing + + + + + Toggle Step Recording + + + + + Effect + + + Effect enabled + Efièch activat + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + EffectChain + + + Effects enabled + + + + + EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + EffectSelectDialog + + + Add effect + + + + + + Name + Nom + + + + Type + + + + + Description + + + + + Author + Autora + + + + EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + Contraròtles + + + + 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: + Ataca: + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + SUST + + + + Sustain: + + + + + REL + REL + + + + Release: + + + + + + AMT + AMT + + + + + Modulation amount: + + + + + SPD + SPD + + + + 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 + Astúcia + + + + Drag and drop a sample into this window. + + + + + EqControls + + + Input gain + Ganh en dintrada + + + + Output gain + Ganh en sortida + + + + 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 + Ganh en dintrada + + + + + + Gain + Ganh + + + + Output gain + Ganh en sortida + + + + Bandwidth: + + + + + Octave + + + + + Resonance : + + + + + Frequency: + Frequéncia: + + + + LP group + + + + + HP group + + + + + EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + ExportProjectDialog + + + Export project + Exportar lo projècte + + + + Export as loop (remove extra bar) + + + + + Export between loop markers + + + + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + Format de fichièr: + + + + 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 + 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 + + + + + Quality settings + Reglatges de qualitat + + + + Interpolation: + + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + Oversampling: + + + + + 1x (None) + 1x (pas cap) + + + + 2x + 2x + + + + 4x + 4x + + + + 8x + 8x + + + + Start + + + + + Cancel + Barrar + + + + Could not open file + Lo fichièr a pas pogut èsser dobèrt + + + + 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 + + + + 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: + + + + + 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 + Cargament de l'escapolon + + + + Please wait, loading sample for preview... + + + + + Error + Error + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Seconds + Segondas + + + + Stereo phase + + + + + Regen + + + + + Noise + Rumor + + + + Invert + Invertir + + + + FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + Periòde: + + + + AMNT + AMNT + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + FDBK + + + + Feedback amount: + + + + + NOISE + RUMOR + + + + White noise amount: + + + + + Invert + Invertir + + + + FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + Volum del canal 1 + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + Volum del canal 2 + + + + Channel 3 volume + Volum del canal 3 + + + + Channel 4 volume + Volum del canal 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 + Aguts + + + + Bass + Grèus + + + + 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: + Aguts: + + + + Treble + Aguts + + + + Bass: + Grèus: + + + + Bass + Grèus + + + + 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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + General + + + + + + Channel %1 + EF %1 + + + + Volume + Volum + + + + Mute + + + + + Solo + Solo + + + + MixerView + + + Mixer + + + + + Fader %1 + + + + + Mute + + + + + Mute this mixer channel + + + + + Solo + Solo + + + + Solo mixer channel + + + + + MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + GigInstrument + + + Bank + Banca + + + + Patch + + + + + Gain + Ganh + + + + GigInstrumentView + + + + Open GIG file + Dobrir un fichièr GIG + + + + Choose patch + + + + + Gain: + Ganh: + + + + GIG Files (*.gig) + Fichièrs 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. + + + + + Preparing UI + Preparacion de l'IU + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing beat/bassline editor + + + + + Preparing piano roll + Preparacion del piano virtual + + + + Preparing automation editor + + + + + InstrumentFunctionArpeggio + + + Arpeggio + Arpègi + + + + Arpeggio type + Tipe d'arpègi + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + Temps d'arpègi + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + Aleatòria + + + + Free + Liure + + + + Sort + + + + + Sync + + + + + InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPÈGI + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + % + + + + MISS + + + + + Miss rate: + + + + + TIME + TEMPS + + + + Arpeggio time: + Temps d'arpègi: + + + + ms + ms + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + InstrumentFunctionNoteStacking + + + octave + + + + + + Major + Major + + + + Majb5 + Majb5 + + + + minor + menor + + + + minb5 + minb5 + + + + sus2 + sus2 + + + + sus4 + sus4 + + + + aug + + + + + augsus4 + + + + + 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 + Menora melodica + + + + Whole tone + + + + + Diminished + + + + + Major pentatonic + + + + + Minor pentatonic + + + + + Jap in sen + + + + + Major bebop + + + + + Dominant bebop + + + + + Blues + + + + + Arabic + + + + + Enigmatic + + + + + Neopolitan + + + + + Neopolitan minor + Napolitana menora + + + + Hungarian minor + Ongresa menora + + + + Dorian + + + + + Phrygian + + + + + Lydian + + + + + Mixolydian + + + + + Aeolian + + + + + Locrian + + + + + Minor + Menor + + + + 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 + ACTIVAR LO DINTRADA MIDI + + + + ENABLE MIDI OUTPUT + ACTIVAR LA SORTIDA 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 + + + + + InstrumentMiscView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + VOLUM + + + + Volume + Volum + + + + 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 + 2x Moog + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + FREQ + + + + Cutoff frequency: + + + + + Hz + 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 + Volum + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + InstrumentTrackView + + + Volume + Volum + + + + Volume: + Volum: + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + MIDI + + + + Input + + + + + Output + Sortida + + + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 + EF %1: %2 + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + CONFIGURACION GENERALA + + + + Volume + Volum + + + + Volume: + Volum: + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + EF + + + + Save current instrument track settings in a preset file + + + + + SAVE + ENREGISTRAR + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + Efièches + + + + MIDI + MIDI + + + + Miscellaneous + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + Volgatz dintrar una valor entre -96,0 dBV e 6,0 dBFS: + + + + Please enter a new value between %1 and %2: + + + + + LadspaControl + + + Link channels + + + + + LadspaControlDialog + + + Link Channels + + + + + Channel + Canal + + + + LadspaControlView + + + Link channels + + + + + Value: + + + + + LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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 + LFO + + + + BASE + BASA + + + + Base: + + + + + FREQ + FREQ + + + + LFO frequency: + + + + + AMNT + AMNT + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + Onda triangulara + + + + Saw wave + Onda en dents-de-sèrra + + + + Square wave + Onda cairada + + + + Moog saw wave + Onda Moog en dents-de-sèrra. + + + + Exponential wave + + + + + White noise + Rumor blanc + + + + 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 + Fichièr de configuracion + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + Lo fichièr a pas pogut èsser dobèrt + + + + 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 + Recuperacion de projècte + + + + 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 + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + Version %1 + + + + Preparing plugin browser + + + + + Preparing file browsers + Preparacion del navegador de fichièrs + + + + My Projects + Mos projèctes + + + + My Samples + Mos escapolons + + + + My Presets + + + + + My Home + + + + + Root directory + + + + + Volumes + Volums + + + + My Computer + Mon ordenador + + + + &File + &Fichièr + + + + &New + &Nòu + + + + &Open... + &Dobrir... + + + + Loading background picture + + + + + &Save + &Enregistrar + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + Importar... + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + Exportar &MIDI + + + + &Quit + &Abandonar + + + + &Edit + &Editar + + + + Undo + Desfar + + + + Redo + Refar + + + + Settings + Configuracion + + + + &View + &Afichar + + + + &Tools + + + + + &Help + &Ajuda + + + + Online Help + + + + + Help + Ajuda + + + + About + A prepauses + + + + Create new project + Crear un nòu projècte + + + + Create new project from template + Crear un nòu projècte a partir d'un modèl + + + + Open existing project + Dobrir un projècte existent + + + + Recently opened projects + Projèctes dobèrts recentament + + + + Save current project + Enregistrar lo projècte + + + + Export current project + Exportar lo projècte + + + + Metronome + + + + + + Song Editor + + + + + + Beat+Bassline Editor + + + + + + Piano Roll + Piano virtual + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + Sens títol + + + + Recover session. Please save your work! + Recuperacion de session. Volgatz salvar vòstre trabalh! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + Lo projècte recuperat es pas estat salvat + + + + 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 + Projècte non salvat + + + + The current project was modified since last saving. Do you want to save it now? + Aquel projècte es estat modificat dempuèi son darrièr enregistrament. Desiratz-vos l'enregistrar mantenent? + + + + Open Project + Dobrir lo projècte + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Enregistrar lo projècte + + + + LMMS Project + Projècte LMMS + + + + LMMS Project Template + Modèl de projècte LMMS + + + + Save project template + Enregistrar lo modèl de projècte + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + Ajuda non disponibla + + + + 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 + Activar las etiquetas de nòta dins lo piano virtual + + + + MIDI File (*.mid) + Fichièr MIDI (*.mid) + + + + + untitled + sens títol + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + Enregistrar lo projècte + + + + Project saved + Projècte salvat + + + + The project %1 is now saved. + Lo projècte %1 es ara salvat. + + + + Project NOT saved. + Projècte NON salvat. + + + + The project %1 was not saved! + + + + + Import file + Importar un fichièr + + + + MIDI sequences + + + + + Hydrogen projects + Projèctes Hydrogen + + + + All file types + Totes los tipes de fichièr + + + + 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) + + + + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Fichièr + + + + &Edit + &Editar + + + + &Quit + &Abandonar + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + + + MidiPort + + + Input channel + Canal de dintrada + + + + Output channel + Canal de sortida + + + + 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 + Afichatge seleccionat + + + + 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 + Rumor blanc + + + + Digital Triangle wave + Onda triangulara digitala + + + + Digital Saw wave + Onda en dents-de-sèrra digitala + + + + Digital Ramp wave + + + + + Digital Square wave + Onda cairada digitala + + + + Digital Moog saw wave + Onda en dents-de-sèrra Moog digitala + + + + Triangle wave + Onda triangulara + + + + Saw wave + Onda en dents-de-sèrra + + + + Ramp wave + + + + + Square wave + Onda cairada + + + + Moog saw wave + Onda Moog en dents-de-sèrra. + + + + Abs. sine wave + + + + + Random + Aleatòria + + + + Random smooth + + + + + MonstroView + + + Operators view + Vista dels operadors + + + + Matrix view + + + + + + + Volume + Volum + + + + + + 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 + Ataca + + + + + 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 + Longada + + + + Step length: + + + + + Dry + Sec + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + NesInstrument + + + Channel 1 coarse detune + + + + + Channel 1 volume + Volum del canal 1 + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 Coarse detune + + + + + Channel 2 Volume + Volum del canal 2 + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + Volum del canal 3 + + + + Channel 4 volume + Volum del canal 4 + + + + Channel 4 envelope length + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Master volume + Volum general + + + + Vibrato + Vibrato + + + + NesInstrumentView + + + + + + Volume + Volum + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + Activar lo canal 1 + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + 12.5% del cicle + + + + + 25% Duty cycle + 25% del cicle + + + + + 50% Duty cycle + 50% del cicle + + + + + 75% Duty cycle + 75% del cicle + + + + Enable channel 2 + Activar lo canal 2 + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + Activar lo canal 3 + + + + Noise Frequency + Frequéncia del rumor + + + + Frequency sweep + + + + + Enable channel 4 + Activar lo canal 4 + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + Mòda de rumor + + + + Master volume + Volum general + + + + 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 + FM + + + + Vibrato depth + + + + + Tremolo depth + + + + + OpulenzInstrumentView + + + + Attack + Ataca + + + + + 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 + Clicatz per activar + + + + PatchesDialog + + + Qsynth: Channel Preset + + + + + Bank selector + Selector de banca + + + + Bank + Banca + + + + Program selector + Selector de programa + + + + Patch + + + + + Name + Nom + + + + OK + OK + + + + Cancel + Barrar + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + Cap de fichièr seleccionat + + + + Open patch file + Dobrir un fichièr de son + + + + Patch-Files (*.pat) + Fichièr de son (*.pat) + + + + MidiClipView + + + Open in piano-roll + Dobrir dins lo piano virtual + + + + Set as ghost in piano-roll + + + + + Clear all notes + Escafar totas las nòtas + + + + Reset name + + + + + Change name + Modificar lo nom + + + + 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 + BASA + + + + Base: + + + + + AMNT + AMNT + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + Ataca: + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + Ataca + + + + 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% + + + + + 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 + + + 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 + Accions d'edicion + + + + Draw mode (Shift+D) + Mòda dessenh (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 + Contraròtles de copiar/pegar + + + + 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 + Quantificacion + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + Piano virtual - %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 + pas de descripcion + + + + 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 + ZynAddSubFX integrat + + + + PluginDatabaseW + + + Carla - Add New + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + AU + + + + + Sound Kits + + + + + Type + + + + + Effects + Efièches + + + + 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 + Barrar + + + + 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 + Nom + + + + Label/URI + + + + + Maker + + + + + Binary/Filename + + + + + Focus Text Search + + + + + Ctrl+F + + + + + 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 + Configuracion + + + + 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 + Barrar + + + + PluginWidget + + + + + + + Frame + + + + + 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 + &Desfar + + + + %1+Z + %1+Z + + + + &Redo + &Refar + + + + %1+Y + %1+Y + + + + &Copy + &Copiar + + + + %1+C + %1+C + + + + Cu&t + + + + + %1+X + %1+X + + + + &Paste + &Pegar + + + + %1+V + %1+V + + + + Format Actions + + + + + &Bold + + + + + %1+B + %1+B + + + + &Italic + + + + + %1+I + %1+I + + + + &Underline + + + + + %1+U + %1+U + + + + &Left + &Esquerra + + + + %1+L + %1+L + + + + C&enter + + + + + %1+E + %1+E + + + + &Right + &Drecha + + + + %1+R + %1+R + + + + &Justify + + + + + %1+J + %1+J + + + + &Color... + &Color... + + + + ProjectRenderer + + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QObject + + + Reload Plugin + + + + + Show GUI + Mostrar UIG + + + + Help + Ajuda + + + + QWidget + + + + + + Name: + Nom: + + + + URI: + + + + + + + Maker: + + + + + + + Copyright: + + + + + + Requires Real Time: + + + + + + + + + + Yes + Òc + + + + + + + + + No + Non + + + + + Real Time Capable: + + + + + + In Place Broken: + + + + + + Channels In: + + + + + + Channels Out: + + + + + File: %1 + + + + + File: + + + + + RecentProjectsMenu + + + &Recently Opened Projects + + + + + RenameDialog + + + Rename... + + + + + ReverbSCControlDialog + + + Input + + + + + Input gain: + Ganh en dintrada: + + + + Size + + + + + Size: + + + + + Color + Color + + + + Color: + Color: + + + + Output + Sortida + + + + Output gain: + Ganh en sortida: + + + + ReverbSCControls + + + Input gain + Ganh en dintrada + + + + Size + + + + + Color + Color + + + + Output gain + Ganh en sortida + + + + 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 + Grèus + + + + 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 + Fracàs a la dubertura del fichièr + + + + Audio files are limited to %1 MB in size and %2 minutes of playing time + + + + + Open audio file + Dobrir un fichièr àudio + + + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + Totes los fichièrs àudio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + + + Wave-Files (*.wav) + Fichièrs Wave (*.wav) + + + + OGG-Files (*.ogg) + Fichièrs OGG (*.ogg) + + + + DrumSynth-Files (*.ds) + Fichièrs DrumSynth (*.ds) + + + + FLAC-Files (*.flac) + Fichièrs FLAC (*.flac) + + + + SPEEX-Files (*.spx) + Fichièrs SPEEX (*.spx) + + + + VOC-Files (*.voc) + Fichièrs VOC (*.voc) + + + + AIFF-Files (*.aif *.aiff) + Fichièrs AIFF (*.aif *.aiff) + + + + AU-Files (*.au) + Fichièrs AU (*.au) + + + + RAW-Files (*.raw) + Fichièrs RAW (*.raw) + + + + SampleClipView + + + Double-click to open sample + + + + + Delete (middle mousebutton) + Suprimir (boton del mièg de la mirga) + + + + Delete selection (middle mousebutton) + + + + + Cut + Copar + + + + Cut selection + + + + + Copy + Copiar + + + + Copy selection + + + + + Paste + Pegar + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Reverse sample + Invertir l'escapolon + + + + Set clip color + + + + + Use track color + + + + + SampleTrack + + + Volume + Volum + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + Volum del canal: + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Channel %1: %2 + EF %1: %2 + + + + SampleTrackWindow + + + GENERAL SETTINGS + CONFIGURACION GENERALA + + + + Sample volume + + + + + Volume: + Volum: + + + + VOL + VOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + EF + + + + SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + SetupDialog + + + Reset to default value + + + + + Use built-in NaN handler + + + + + Settings + Configuracion + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + Afichar lo volum en 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 + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + LMMS working directory + Repertòri de trabalh de LMMS + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + Repertòri dels SF2 + + + + Default SF2 + + + + + GIG directory + Repertòri dels GIG + + + + Theme directory + + + + + Background artwork + Images de fons + + + + 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 + Barrar + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + Causissètz lo repertòri dels fichièrs GIG + + + + Choose your SF2 directory + Causissètz lo repertòri dels fichièrs SF2 + + + + minutes + minutas + + + + minute + minuta + + + + Disabled + Desactivat + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + Volum + + + + Chip model + + + + + SidInstrumentView + + + Volume: + Volum: + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + Ataca: + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + Onda triangulara + + + + Saw wave + Onda en dents-de-sèrra + + + + Noise + Rumor + + + + Sync + + + + + Ring modulation + + + + + Filtered + Filtrat + + + + Test + Test + + + + Pulse width: + + + + + SideBarWidget + + + Close + Barrar + + + + Song + + + Tempo + + + + + Master volume + Volum general + + + + 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 + Rapòrt d'error LMMS + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + SongEditor + + + Could not open file + Lo fichièr a pas pogut èsser dobèrt + + + + 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 + Error + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + Could not write file + Lo fichièr a pas pogut èsser escrich + + + + 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 dins lo fichièr + + + + The file %1 seems to contain errors and therefore can't be loaded. + Lo fichièr %1 sembla conténer d'errors e pòt doncas pas èsser cargat. + + + + Version difference + Diferéncia de version + + + + template + modèl + + + + project + projècte + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + High quality mode + Manièra de nauta qualitat + + + + + + Master volume + Volum general + + + + + + Master pitch + + + + + Value: %1% + Valor: %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 + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + Accions d'edicion + + + + Draw mode + Mòda dessenh + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + Contraròtles del zoom + + + + Horizontal zooming + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + StepRecorderWidget + + + Hint + Astúcia + + + + Move recording curser using <Left/Right> arrows + + + + + SubWindow + + + Close + Barrar + + + + Maximize + Maximizar + + + + Restore + + + + + TabWidget + + + + Settings for %1 + Reglatges per %1 + + + + TemplatesMenu + + + New from template + + + + + TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + Mièg-Nòta + + + + 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 + MIN + + + + SEC + SEC + + + + MSEC + 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 + Tornar a la posicion de partença après l'arrèst + + + + After stopping keep position + + + + + Hint + Astúcia + + + + Press <%1> to disable magnetic loop points. + + + + + Track + + + Mute + + + + + Solo + Solo + + + + TrackContainer + + + Couldn't import file + Lo fichièr a pas pogut èsser importat + + + + 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 + Lo fichièr a pas pogut èsser dobèrt + + + + 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... + Cargament del projècte... + + + + + Cancel + Barrar + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + Importacion del fichièr MIDI... + + + + Clip + + + Mute + + + + + ClipView + + + Current position + Posicion actuala + + + + Current length + Longada actuala + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + Premètz <%1> e lisatz per far una còpia. + + + + Press <%1> for free resizing. + Premètz <%1> per un redimensionnement liure. + + + + Hint + Astúcia + + + + Delete (middle mousebutton) + Suprimir (boton del mièg de la mirga) + + + + Delete selection (middle mousebutton) + + + + + Cut + Copar + + + + Cut selection + + + + + Merge Selection + + + + + Copy + Copiar + + + + Copy selection + + + + + Paste + Pegar + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Set clip color + + + + + Use track color + + + + + TrackContentWidget + + + Paste + Pegar + + + + TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + 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 + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + EF %1: %2 + + + + Assign to new mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Change color + Cambiar la 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 volum: + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + gras + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + Onda triangulara + + + + Saw wave + Onda en dents-de-sèrra + + + + Square wave + Onda cairada + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + Rumor blanc + + + + 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 + Incrementar lo numèro de version + + + + 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 (-) + Precedent (-) + + + + Save preset + + + + + Next (+) + Seguent (+) + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + Fichièrs DLL (*.dll) + + + + EXE-files (*.exe) + Fichièrs EXE (*.exe) + + + + No VST plugin loaded + + + + + Preset + + + + + by + per + + + + - VST plugin control + + + + + VstEffectControlDialog + + + Show/hide + Mostrar/amagar + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + Precedent (-) + + + + Next (+) + Seguent (+) + + + + Save preset + + + + + + Effect by: + Efièch per: + + + + &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 + + + + + + Vst Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + WatsynInstrument + + + Volume A1 + Volum A1 + + + + Volume A2 + Volum A2 + + + + Volume B1 + Volum B1 + + + + Volume B2 + Volum 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 + Volum + + + + + + + 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 + Normalizar + + + + + Invert + Invertir + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + Onda triangulara + + + + Saw wave + Onda en dents-de-sèrra + + + + + Square wave + Onda cairada + + + + Xpressive + + + 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 + Onda en dents-de-sèrra + + + + + User-defined wave + + + + + + Triangle wave + Onda triangulara + + + + + Square wave + Onda cairada + + + + + White noise + Rumor blanc + + + + 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 + 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 + Mostrar UIG + + + + AudioFileProcessor + + + Amplify + Amplificar + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + Invertir l'escapolon + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + Pas cap + + + + 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 + Onda triangulara + + + + + Saw wave + Onda en dents-de-sèrra + + + + + Square wave + Onda cairada + + + + + White noise + Rumor blanc + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + Normalizar + + + + DynProcControlDialog + + + INPUT + DINTRADA + + + + Input gain: + Ganh en dintrada: + + + + OUTPUT + SORTIDA + + + + Output gain: + Ganh en sortida: + + + + ATTACK + ATACA + + + + 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 + Ganh en dintrada + + + + Output gain + Ganh en sortida + + + + Attack time + Temps d'ataca + + + + Release time + + + + + Stereo mode + + + + + graphModel + + + Graph + + + + + KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + Longada + + + + Start distortion + + + + + End distortion + + + + + Gain + Ganh + + + + Envelope slope + + + + + Noise + Rumor + + + + Click + Clic + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + Ganh: + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + Clic: + + + + Noise: + Rumor: + + + + Start distortion: + + + + + End distortion: + + + + + LadspaBrowserView + + + + Available Effects + Efièches disponibles + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + LadspaDescription + + + Plugins + + + + + Description + + + + + LadspaPortDialog + + + Ports + + + + + Name + Nom + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + Sortida + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + Òc + + + + 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 + Onda en dents-de-sèrra + + + + Click here for a saw-wave. + Clicatz aquí per una onda en dents-de-sèrra. + + + + Triangle wave + Onda triangulara + + + + Click here for a triangle-wave. + Clicatz aquí per una onda triangulara. + + + + Square wave + Onda cairada + + + + Click here for a square-wave. + Clicatz aquí per una onda cairada. + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + Onda Moog + + + + Click here for a moog-like wave. + Clicatz aquí per una onda de tipe Moog. + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + Clicatz aquí per una onda exponenciala. + + + + Click here for white-noise. + Clicatz aquí per un rumor blanc. + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + Clicatz per una onda en dents-de-sèrra + + + + 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 + Duretat + + + + Position + Posicion + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + Velocitat del LFO + + + + LFO depth + + + + + ADSR + ADSR + + + + Pressure + Pression + + + + Motion + + + + + Speed + Velocitat + + + + Bowed + + + + + Spread + Difusion + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + Veire + + + + Tibetan bowl + + + + + MalletsInstrumentView + + + Instrument + + + + + Spread + Difusion + + + + Spread: + Difusion: + + + + Missing files + Fichièrs mancants + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + Duretat + + + + Hardness: + Duretat: + + + + Position + Posicion + + + + Position: + Posicion: + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + Velocitat del LFO + + + + LFO speed: + Velocitat del LFO: + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Pression + + + + Pressure: + Pression: + + + + Speed + Velocitat + + + + Speed: + Velocitat: + + + + ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + Barrar + + + + ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + Barrar + + + + OrganicInstrument + + + Distortion + + + + + Volume + Volum + + + + OrganicInstrumentView + + + Distortion: + + + + + Volume: + Volum: + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + Osc %1 volum: + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + PatchesDialog + + + Qsynth: Channel Preset + + + + + Bank selector + Selector de banca + + + + Bank + Banca + + + + Program selector + Selector de programa + + + + Patch + + + + + Name + Nom + + + + OK + OK + + + + Cancel + Barrar + + + + Sf2Instrument + + + Bank + Banca + + + + Patch + + + + + Gain + Ganh + + + + 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 + Dobrir un fichièr SoundFont + + + + Choose patch + + + + + Gain: + Ganh: + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + Amplor: + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + Velocitat: + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + SfxrInstrument + + + Wave + + + + + StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + Amplor: + + + + StereoEnhancerControls + + + Width + Amplor + + + + 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 + Activar la forma d'onda + + + + Enable/disable string + + + + + String + Còrda + + + + + Sine wave + + + + + + Triangle wave + Onda triangulara + + + + + Saw wave + Onda en dents-de-sèrra + + + + + Square wave + Onda cairada + + + + + White noise + Rumor blanc + + + + + 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 + Votz %1 filtrada + + + + Voice %1 test + + + + + WaveShaperControlDialog + + + INPUT + DINTRADA + + + + Input gain: + Ganh en dintrada: + + + + OUTPUT + SORTIDA + + + + Output gain: + Ganh en sortida: + + + + + 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 + Ganh en dintrada + + + + Output gain + Ganh en sortida + + + diff --git a/data/locale/pl.ts b/data/locale/pl.ts index 5d9cc51cd..bb0c64ede 100644 --- a/data/locale/pl.ts +++ b/data/locale/pl.ts @@ -2,97 +2,116 @@ AboutDialog + About LMMS O programie LMMS - Version %1 (%2/%3, Qt %4, %5) - Wersja %1 (%2/%3, Qt %4, %5) - - - About - Informacje - - - LMMS - easy music production for everyone - LMMS - łatwa produkcja muzyczna dla każdego - - - Authors - Autorzy - - - Translation - Tłumaczenie - - - 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! - Spolszczenie LMMS: Radek Słowik - -Podziękowania dla: -Marii Słowik - za wstępną korektę, -Tomasza Gradowskiego - za cenne uwagi i sugestie zmian. - -Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: radek[małpka]vibender[kropka]com - - - License - Licencja - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + Wersja %1 (%2/%3, Qt %4, %5). + + + + About + Informacje + + + + LMMS - easy music production for everyone. + LMMS – łatwa produkcja muzyczna dla każdego. + + + + Copyright © %1. + Prawa autorskie © %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> + + + + Authors + Autorzy + + + Involved Zaangażowani + Contributors ordered by number of commits: Twórcy programu posortowani podług aktywności: - Copyright © %1 - Prawa autorskie © %1 + + Translation + Tłumaczenie - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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: +Kacper Pawinski +Lucas Grzesik +Marcin Mikołajczak +Outer_Mind +Radek Słowik + + + + License + Licencja AmplifierControlDialog + VOL VOL + Volume: Głośność: + PAN PAN + Panning: Panoramowanie: + LEFT LEWO + Left gain: L wzm: + RIGHT PRAWO + Right gain: P wzm: @@ -100,18 +119,22 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: AmplifierControls + Volume Głośność + Panning Panoramowanie + Left gain L wzm: + Right gain P wzm: @@ -119,10 +142,12 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: AudioAlsaSetupWidget + DEVICE URZĄDZENIE + CHANNELS KANAŁY @@ -130,85 +155,60 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: AudioFileProcessorView - Open other sample - Otwórz inną próbkę - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Kliknij w tym miejscu jeśli chcesz załadować inny plik audio. Otworzy się okno gdzie będziesz mógł zaznaczyć wybrany plik. Ustawienia takie jak tryb pętli, punkty początku i końca, wartość wzmocnienia i inne nie zostaną zresetowane więc to co uzyskasz może brzmieć inaczej niż oryginalna próbka. + + Open sample + Otwórz próbkę + Reverse sample Odwróć próbkę - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Jeśli uaktywnisz tę kontrolkę cała próbka będzie odtwarzana wstecz. Może to być przydatne do stworzenia efektów dźwiękowych np. puszczonej wstecz blachy crash. - - - Amplify: - Wzmocnienie: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Za pomocą tego pokrętła możesz ustawić współczynnik wzmocnienia. Domyślną wartością jest 100%. Poniżej próbka jest ściszana a powyżej podgłaśniana (zmiany nie mają wpływu na sam plik sampla!) - - - Startpoint: - Znacznik-początkowy: - - - Endpoint: - Znacznik końcowy: - - - Continue sample playback across notes - Kontunuuj odtwarzanie sampla w następnych nutach - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Włączanie tej opcji sprawia, że próbka nadal gra przez różne nuty - jeżeli zmieniesz wysokość tonu czy długość nuty zatrzyma się przed końcem próbki, wtedy następna zagrana nuta nadal gra tam, gdzie została przerwana. Aby zresetować odtwarzanie na początek próbki, wstaw nutę na dole klawiatury. (< 20 Hz) - - + Disable loop Wyłącz zapętlanie - This button disables looping. The sample plays only once from start to end. - Ten przycisk wyłącza zapętlanie. Próbka odtwarza się raz od początku do końca. - - + Enable loop Włącz zapętlanie - This button enables forwards-looping. The sample loops between the end point and the loop point. - Ten przycisk umożliwia zapętlanie do przodu. Próbka się zapętla między punktem końcowym a punktem zapętlania. + + Enable ping-pong loop + Włącz pętlę typu "ping-pong" - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Ten przycisk włącza zapętlanie "ping-pong". Próbka będzie odtwarzana w obydwu kierunkach pomiędzy punktem końcowym i zapętlenia. + + Continue sample playback across notes + Kontunuuj odtwarzanie sampla w następnych nutach - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Tą gałką możesz ustawić punkt od którego AudioFileProcessor rozpocznie odtwarzanie próbki. + + Amplify: + Wzmocnienie: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Tą gałką możesz ustawić punkt w którym AudioFileProcessor zatrzyma odtwarzanie próbki. + + Start point: + Punkt startu: + + End point: + Punkt końca: + + + Loopback point: Znacznik zapętlenia: - - With this knob you can set the point where the loop starts. - Za pomocą tego pokrętła możesz określić moment rozpoczęcia pętli. - AudioFileProcessorWaveView + Sample length: Długość próbki: @@ -216,447 +216,469 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: 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 + + Client name + Nazwa klienta - CHANNELS - KANAŁY + + Channels + Kanały - AudioOss::setupWidget + AudioOss - DEVICE - URZĄDZENIE + + Device + Urządzenie - CHANNELS - KANAŁY + + Channels + Kanały AudioPortAudio::setupWidget - BACKEND - BACKEND + + Backend + Backend - DEVICE - URZĄDZENIE + + Device + Urządzenie - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - URZĄDZENIE + + Device + Urządzenie - CHANNELS - KANAŁY + + Channels + Kanały AudioSdl::setupWidget - DEVICE - URZĄDZENIE + + Device + Urządzenie - AudioSndio::setupWidget + AudioSndio - DEVICE - URZĄDZENIE + + Device + Urządzenie - CHANNELS - KANAŁY + + Channels + Kanały AudioSoundIo::setupWidget - BACKEND - BACKEND + + Backend + Backend - DEVICE - URZĄDZENIE + + 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 - 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... - - + 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 - Please open an automation pattern with the context menu of a control! + + 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! - - Values copied - Wartości skopiowane - - - All selected values were copied to the clipboard. - Wszystkie zaznaczone wartości zostały skopiowane do schowka. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) Odtwórz/wstrzymaj obecny wzorzec (spacja) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Naciśnij tutaj jeśli chcesz otworzyć obecny wzorzec. Jest to przydatne podczas jego edycji. Wzorzec jest automatycznie zapętlony kiedy się kończy. - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Zatrzymaj odtwarzanie obecnego wzorca (spacja) - Click here if you want to stop playing of the current pattern. - Kliknij tutaj, jeśli chcesz zatrzymać odtwarzanie bieżącego wzorca. - - - Draw mode (Shift+D) - Tryb rysowania (Shift+D) - - - Erase mode (Shift+E) - Tryb wymazywania (Shift+E) - - - Flip vertically - Przerzuć w pionie - - - Flip horizontally - Przerzuć w poziomie - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Kliknij tu, by odwrócić wzorzec. Punkty zostaną odwrócone w osi Y. - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Kliknij tu, by odwrócić wzorzec. Punkty zostaną odwrócone w osi X. - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Kliknij tutaj, aby aktywować tryb rysowania. W tym trybie możesz dodać oraz przesuwać pojedyncze wartości. Jest to tryb domyślny, który jest najczęściej używany. Możesz też nacisnąć 'Shift+D' na klawiaturze, aby aktywować ten tryb. - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Kliknij tutaj, aby aktywować tryb wymazania. W tym trybie możesz usuwać pojedyncze wartości. Możesz też nacisnąć 'Shift+E' na klawiaturze, aby aktywować ten tryb. - - - 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 - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Większa wartość napięcia może wygładzić krzywą, ale może też przeregulować niektóre wartości. Niska wartość napięcia spowoduje nachylenie krzywej, aby wyrównać się w każdym punkcie kontrolnym. - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Kliknij tutaj, aby wybrać progresję oddzielną dla tego wzorca automatyki. Wartość połączonego obiektu pozostanie stała między punktami kontrolnymi oraz ustawia się natychmiastowo dla nowej wartości, gdy każdy punkt kontrolny jest osiągnięty. - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Kliknij tutaj, aby wybrać progresję linearną dla tego wzorca automatyki. Wartość połączonego obiektu zmienia się w stałym tempie z upływem czasu między punktami kontrolnymi, aby osiągnąć dokładną wartość w każdym punkcie kontrolnym bez nagłej zmiany. - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Kliknij tutaj, aby wybrać progresję sześcienną Hermite'a dla tego wzorca automatyki. Wartość połączonego obiektu zmienia się w gładką krzywą i łagodzi szczyty i doliny. - - - Cut selected values (%1+X) - Wytnij wybrane wartości (%1+X) - - - Copy selected values (%1+C) - Kopiuj wybrane wartości (%1+C) - - - Paste values from clipboard (%1+V) - Wklej wartości ze schowka (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Kliknij tutaj a zaznaczone elementy zostaną wycięte i umieszczone w schowku. Możesz je wkleić gdziekolwiek w każdym wzorcu, poprzez kliknięcie przycisku 'Wklej'. - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Kliknij tutaj a zaznaczone elementy zostaną skopiowane do schowka. Możesz je wkleić gdziekolwiek w każdym wzorcu, poprzez kliknięcie przycisku 'Wklej'. - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Kliknij tutaj a elementy ze schowka zostaną przeklejone w miejsce zaznaczenia. - - - Tension: - Napięcie - - - Automation Editor - no pattern - Edytor automatyki - brak wzorca - - - Automation Editor - %1 - Edytor automatyki - %1 - - + 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 - Timeline controls - Regulacja osi czasu + + 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 - Model is already connected to this pattern. - Model jest już podłączony do tego wzorca. - - + Quantization Kwantyzacja - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Kwantyzacja. Ustawia najmniejszy rozmiar kroku dla Punktu Automatyki. Domyślnie ustawia też długość, usuwając inne punkty w tym zakresie. Wciśnij <Ctrl>, aby obejść to zachowanie. + + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> Przeciągnij trzymając wciśnięty klawisz <%1> - AutomationPatternView + AutomationClipView + Open in Automation editor Otwórz w Edytorze Automatyki + Clear Wyczyść + Reset name Zresetuj nazwę + Change name Zmień nazwę - %1 Connections - %1 Połączenia - - - Disconnect "%1" - Rozłącz "%1" - - + Set/clear record Ustaw/wyczyść nagranie + Flip Vertically (Visible) Odwróć w pionie (widoczne) + Flip Horizontally (Visible) Odwróć w poziomie (widoczne) - Model is already connected to this pattern. + + %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 - BBEditor + 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) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Kliknij tutaj, aby odtworzyć bieżącą linię perkusyjną/basową. Zostanie ona automatycznie zapętlona. - - - Click here to stop playing of current beat/bassline. - Kliknij tutaj, aby zatrzymać odtwarzanie bieżącej linii perkusyjnej/basowej. - - - Add beat/bassline - Dodaj linię perkusyjną/basową - - - Add automation-track - Dodaj ścieżkę automatyki - - - Remove steps - Usuń kroki - - - Add steps - Dodaj kroki - - + Beat selector Selektor linii perkusyjnej + Track and step actions Akcje dla ścieżki i kroku - Clone Steps - Klonuj kroki + + 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 + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor Otwórz w Edytorze Perkusji i Basu + Reset name Zresetuj nazwę + Change name Zmień nazwę - - Change color - Zmień kolor - - - Reset color to default - Ustaw kolor domyślny - - BBTrack + PatternTrack + Beat/Bassline %1 Perkusja/Bas %1 + Clone of %1 Kopia %1 @@ -664,26 +686,32 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: BassBoosterControlDialog + FREQ FREQ + Frequency: Częstotliwość: + GAIN WZMC + Gain: Wzmocnienie: + RATIO WSPÓŁCZYNNIK + Ratio: Współczynnik: @@ -691,14 +719,17 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: BassBoosterControls + Frequency Częstotliwość + Gain Wzmocnienie + Ratio Współczynnik @@ -706,107 +737,2624 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: BitcrushControlDialog + IN WEJŚCIE + OUT WYJŚCIE + + GAIN WZMC - Input Gain: + + Input gain: Wzmocnienie wejścia: - Input Noise: - Szum wejściowy: - - - Output Gain: - Wzmocnienie wyjścia: - - - CLIP - OBCIĘCIE - - - Output Clip: - Obcięcie wyjściowe: - - - Rate Enabled - Tempo Włączone - - - Enable samplerate-crushing - Włącz częstotliwość próbkowania - - - Depth Enabled - Głębia włączona - - - Enable bitdepth-crushing - Włącz głębię bitową - - - Sample rate: - Częstotliwość próbkowania - - - Stereo difference: - Różnica stereo - - - Levels: - Poziomy: - - + 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 + + + + CarlaAboutW + + + About Carla + O Carla + + + + About + O LMMS + + + + About text here + + + + + Extended licensing here + Rozszerzona licencja dostępna jest tu. + + + + Artwork + Grafika + + + + Using KDE Oxygen icon set, designed by 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. + + + + VST is a trademark of Steinberg Media Technologies GmbH. + VST to znak towarowy 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. + + + + 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: + + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + + + + + VST2: + VST2: + + + + DSSI: + DSSI: + + + + LV2: + LV2: + + + + VST3: + VST3: + + + + OSC + OSC + + + + Host URLs: + + + + + Valid commands: + + + + + valid osc commands here + + + + + Example: + Przykład: + + + + License + Licencja + + + + 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 + + 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 + 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> + + + + + (Engine not running) + + + + + Everything! (Including LRDF) + Wszystko (Razem z 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> + 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) - CaptionMenu + CarlaHostW + + MainWindow + + + + + Rack + + + + + Patchbay + Patchbay + + + + Logs + Logi + + + + Loading... + Ładowanie... + + + + Buffer Size: + Rozmiar Bufora: + + + + Sample Rate: + Częstotliwość Próbkowania: + + + + ? Xruns + ? Xruns + + + + DSP Load: %p% + + + + + &File + &Plik + + + + &Engine + &Silnik + + + + &Plugin + &Wtyczka + + + + Macros (all plugins) + Makra (wszystkie etyczki) + + + + &Canvas + &Canvas + + + + Zoom + Przybliż + + + + &Settings + &Ustawienia + + + &Help &Pomoc - Help (not available) - Pomoc (niedostępna) + + toolBar + + + + + Disk + Dysk + + + + + Home + Strona domowa + + + + Transport + + + + + Playback Controls + + + + + Time Information + + + + + Frame: + Klatka: + + + + 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 + + + + + Use Ableton Link + + + + + &New + &Nowy + + + + Ctrl+N + Ctrl+N + + + + &Open... + &Otwórz... + + + + + Open... + Otwórz... + + + + Ctrl+O + Ctrl+O + + + + &Save + &Zapisz + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Zapisz &Jako... + + + + + Save As... + Zapisz Jako... + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + &Zakończ + + + + Ctrl+Q + Ctrl+Q + + + + &Start + &Start + + + + F5 + F5 + + + + St&op + St&op + + + + F6 + F6 + + + + &Add Plugin... + &Dodaj Wtyczkę + + + + Ctrl+A + Ctrl+A + + + + &Remove All + &Usuń Wszystko + + + + Enable + Włącz + + + + Disable + Wyłącz + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + 0% Głośności (Wyciszone) + + + + 100% Volume + 100% Głośności + + + + Center Balance + + + + + &Play + &Odtwórz + + + + 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 + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + &Aranżuj + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + &Odśwież + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + Zapisz &Obraz + + + + Auto-Fit + + + + + Zoom In + Przybliż + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Oddal + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + 100% Przybliżenia + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + Pokaż &Pasek Narzędzi + + + + &Configure Carla + + + + + &About + %O programie + + + + About &JUCE + O &JUCE + + + + About &Qt + O &Qt + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + &Connect... + %Połącz + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + Dodaj &Aplikację JACK + + + + &Configure driver... + &Konfiguruj sterownik... + + + + Panic + + + + + Open custom driver panel... + + + + + CarlaHostWindow + + + Export as... + Eksportuj jako... + + + + + + + Error + BłądBłą + + + + Failed to load project + Nie udało się załadować projektu + + + + Failed to save project + Nie udało się zapisać projektu + + + + Quit + Wyjdź + + + + 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 + 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 + + + CarlaSettingsW - Click here to show or hide the graphical user interface (GUI) of Carla. - Kliknij tu, by pokazać lub ukryć interfejs graficzny wtyczki Carla. + + Settings + Ustawienia + + + + main + + + + + canvas + canvas + + + + engine + silnik + + + + osc + osc + + + + file-paths + + + + + plugin-paths + + + + + wine + wine + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + Canvas + + + + + Engine + Silnik + + + + File Paths + + + + + Plugin Paths + Ścieżki Wtyczek + + + + Wine + Wine + + + + + Experimental + Eksperymentalne + + + + <b>Main</b> + <b>Główne</b> + + + + Paths + Ścieżki + + + + Default project folder: + Domyślny folder projektu: + + + + Interface + Interfejs + + + + Interface refresh interval: + + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + + + + + Show a confirmation dialog before quitting + + + + + + Theme + Motyw + + + + Use Carla "PRO" theme (needs restart) + + + + + Color scheme: + Schemat kolorów: + + + + Black + Czarny + + + + System + Systemowe + + + + Enable experimental features + Włącz eksperymentalne funkcje + + + + <b>Canvas</b> + <b>Canvas</b> + + + + Bezier Lines + Linie Beziera + + + + Theme: + Motyw: + + + + Size: + Rozmiar: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + Options + Opcje + + + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + Antyaliasing + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + <b>Silnik</b> + + + + + Core + Rdzeń + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + Patchbay + + + + Audio driver: + Sterownik audio: + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + ... + + + + Reset Xrun counter after project load + + + + + Plugin UIs + UI Wtyczek + + + + + 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 + Zresetuj 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: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + Włącz port UDP + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + <b>Ścieżki do Plików</b> + + + + Audio + Audio + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + Dodaj... + + + + + Remove + Usuń + + + + + Change... + Zmień... + + + + <b>Plugin Paths</b> + <b>Ścieżki do Wtyczek</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Wykonywalne + + + + Path to 'wine' binary: + + + + + Prefix + Prefiks + + + + Auto-detect Wine prefix based on plugin filename + Automatycznie wykrywaj prefiks Wine na bazie nazwy pliku wtyczki + + + + 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>Eksperymentalne</b> + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + Włącz aplikacje jack + + + + Export single plugins to LV2 + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + Użyj OpenGL do renderowania (wymaga restartu) + + + + High Quality Anti-Aliasing (OpenGL only) + Antyaliasing Wysokiej Jakości (tylko 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) + + + + + Whenever possible, run the plugins in bridge mode. + + + + + Run plugins in bridge mode when possible + + + + + + + + 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 @@ -814,58 +3362,73 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: 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. @@ -873,18 +3436,22 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: 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ąć. @@ -892,116 +3459,158 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: ControllerView + Controls Ustaw - Controllers are able to automate the value of a knob, slider, and other controls. - Kontrolery umożliwiają automatyzację wartości pokręteł, suwaków i innych regulatorów. - - + 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 - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: - Pasma 1/2 Przejście: + + Band 1/2 crossover: + - Band 2/3 Crossover: - Pasma 2/3 Przejście: + + Band 2/3 crossover: + - Band 3/4 Crossover: - Pasma 3/4 Przejście: + + Band 3/4 crossover: + - Band 1 Gain: - Kanał 1 wzm: + + Band 1 gain + - Band 2 Gain: - Kanał 2 wzm: + + Band 1 gain: + - Band 3 Gain: - Kanał 3 wzm: + + Band 2 gain + - Band 4 Gain: - Kanał 4 wzm: + + Band 2 gain: + - Band 1 Mute - Pasmo 1 Wyciszenie + + Band 3 gain + - Mute Band 1 - Wycisz Pasmo 1 + + Band 3 gain: + - Band 2 Mute - Pasmo 2 Wyciszenie + + Band 4 gain + - Mute Band 2 - Wycisz Pasmo 2 + + Band 4 gain: + - Band 3 Mute - Pasmo 3 Wyciszenie + + Band 1 mute + - Mute Band 3 - Wycisz Pasmo 3 + + Mute band 1 + - Band 4 Mute - Pasmo 4 Wyciszenie + + Band 2 mute + - Mute Band 4 - Wycisz Pasmo 4 + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + DelayControls - Delay Samples - Próbki Opóźnień + + Delay samples + + Feedback Feedback - Lfo Frequency + + LFO frequency Częstotliwość LFO - Lfo Amount - Ilość LFO + + LFO amount + + Output gain Wzmocnienie wyścia @@ -1009,228 +3618,528 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: DelayControlsDialog - Lfo Amt - Ilość LFO - - - Delay Time - Czas opóźnienia - - - Feedback Amount - Ilość reakcji - - - Lfo - LFO - - - Out Gain - Wzm wyjśc - - - Gain - Wzmocnienie - - + 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 + + + + 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 + + + + + Remote setup + + + + + UDP Port: + Port UDP: + + + + Remote host: + Zdalny host: + + + + 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 + Ustaw wartość + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + Ustawienia Sterownika + + + + Device: + Urządzenie: + + + + Buffer size: + Rozmiar bufora: + + + + Sample rate: + Częstotliwość próbkowania + + + + Triple buffer + Bufor potrójny + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + Zresetuj silnik aby załadować nowe ustawienia + DualFilterControlDialog - Filter 1 enabled - Włączono filtr 1 - - - Filter 2 enabled - Włączono filtr 2 - - - Click to enable/disable Filter 1 - Naciśnij, aby włączyć/wyłączyć filtr 1 - - - Click to enable/disable Filter 2 - Naciśnij, aby włączyć/wyłączyć filtr 2 - - + + 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 1 frequency - Częstotliwość odcięcia 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 2 frequency - Częstotliwość odcięcia 2 + + Cutoff frequency 2 + + Q/Resonance 2 Q/Rezonans 2 + Gain 2 Wzmocnienie 2 - LowPass - Dolnoprzepustowy + + + Low-pass + - HiPass - Górnoprzepustowy + + + Hi-pass + - BandPass csg - Pasmowoprzepustowy csg + + + Band-pass csg + - BandPass czpg - Pasmowoprzepustowy czpg + + + Band-pass czpg + + + Notch Pasmowozaporowy - Allpass - Wszechprzepustowy + + + All-pass + + + Moog Moog - 2x LowPass - 2xDolnoprzepustowy + + + 2x Low-pass + - RC LowPass 12dB - RC Dolnoprzepustowy 12dB + + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC Pasmowoprzepustowy 12dB + + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC Górnoprzepustowy 12dB + + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC Dolnoprzepustowy 24dB + + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC Pasmowoprzepustowy 24dB + + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC Górnoprzepustowy 24dB + + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filtr wokalno-formantowy + + + Vocal Formant + + + 2x Moog 2x Moog - SV LowPass - SV Dolnoprzepustowy + + + SV Low-pass + - SV BandPass - SV Pasmowoprzepustowy + + + SV Band-pass + - SV HighPass - SV Górnoprzepustowy + + + SV High-pass + + + SV Notch SV Zaporowy + + Fast Formant Szybki Formant + + Tripole @@ -1238,41 +4147,55 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: Editor + + Transport controls + Ustawienia źródła + + + Play (Space) Odtwarzaj (spacja) + Stop (Space) Zatrzymaj (spacja) + Record Nagrywaj + Record while playing Nagrywaj podczas odtwarzania - Transport controls - Ustawienia źródła + + Toggle Step Recording + Effect + Effect enabled Efekt włączony + Wet/Dry mix Miksowanie Suchy/Mokry + Gate Bramka + Decay Zanikanie @@ -1280,6 +4203,7 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: EffectChain + Effects enabled Efekty włączone @@ -1287,10 +4211,12 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: EffectRackView + EFFECTS CHAIN ŁAŃCUCH EFEKTOWY + Add effect Dodaj efekt @@ -1298,22 +4224,28 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: EffectSelectDialog + Add effect Dodaj efekt + + Name Nazwa + Type Rodzaj + Description Opis + Author Autor @@ -1321,90 +4253,57 @@ Zauważone błędy i propozycje zmian tłumaczenia proszę zgłaszać na e-mail: EffectView - Toggles the effect on or off. - Włącza/wyłącza efekt. - - + On/Off On/Off + W/D W/D + Wet Level: Poziom 'Mokrego' (Wet): - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - Pokrętło Mokry/Suchy (Wet/Dry) określa współczynnik pomiędzy sygnałem nieprzetworzonym a sygnałem po nałożeniu efektu. Wartości dodatnie domiksowywują sygnał przetworzony w fazie a ujemne w przeciwfazie do sygnału nieprzetworzonego. - - + DECAY ZANIK. + Time: Czas: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - Pokrętło zanikania określa jak długo będzie trwało przetwarzanie sygnału przez wtyczkę. Niższe wartości zmniejszają obciążenie procesora ale mogą skutkować obcinaniem ogona pogłosowego w deley'ach i reverb'ach. - - + GATE BRAM. + Gate: Bramka: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - Pokrętło bramki określa poziom sygnału, który zostanie rozpoznany jako cisza aby zatrzymać przetwarzanie sygnału. - - + Controls Ustaw - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Łańcuch wtyczek efektowych w którym sygnał przetwarzany jest od góry do dołu. - -Kontrolka 'On/Off' umożliwia pominięcie danej wtyczki w każdej chwili. - -Pokrętło 'Suchy/Mokry' (Wet/Dry) określa współczynnik mieszania sygnału wejściowego z sygnałem przetworzonym przez wtyczkę. Sygnał wyjściowy wtyczki jest równocześnie sygnałem wejściowym wtyczki następnej. - -Pokrętło 'Zanikanie' określa jak długo sygnał będzie przetwarzany przez wtyczkę po zakończeniu nuty. Wtyczka zakończy przetwarzanie gdy poziom sygnału zmniejszy się poniżej zadanego progu w danym okresie czasu. Ta gałka określa właśnie ten czas. Krótszy będzie skutkować mniejszym obciążeniem procesora ale w przypadku długo wybrzmiewających efektów - np. delay czy reverb - lepiej go zwiększyć. - -Pokrętło 'Bramka' określa próg sygnału przy którym wtyczka kończy działanie. - -Przycisk 'Regulatory' otwiera okno w którym można dostosować parametry wtyczki. - -Prawoklik otwiera menu kontekstowe z pomocą którego można zmienić porządek efektów w łańcuchu lub usunąć wybrane efekty. - - + Move &up Przemieść w &górę + Move &down Przemieść w &dół + &Remove this plugin &Usuń tę wtyczkę @@ -1412,408 +4311,409 @@ Prawoklik otwiera menu kontekstowe z pomocą którego można zmienić porządek EnvelopeAndLfoParameters - Predelay - Opóźnienie + + Env pre-delay + - Attack - Atak + + Env attack + - Hold - Przetrzymanie + + Env hold + - Decay - Zanikanie + + Env decay + - Sustain - Podtrzymanie + + Env sustain + - Release - Wybrzmiewanie + + Env release + - Modulation - Modulacja + + Env mod amount + - LFO Predelay - Opóźnienie LFO + + LFO pre-delay + - LFO Attack - Atak LFO + + LFO attack + - LFO speed - Szybkość LFO + + LFO frequency + Częstotliwość LFO - LFO Modulation - Modulacja LFO + + LFO mod amount + - LFO Wave Shape - Kształt fali LFO + + LFO wave shape + - Freq x 100 - Częstotliwość x 100 + + LFO frequency x 100 + - Modulate Env-Amount - Współczynnik modulacji obwiedni + + Modulate env amount + EnvelopeAndLfoView + + DEL DEL - Predelay: - Opóźnienie: - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Użyj tego pokrętła aby ustawić czas wstępnego opóźnienia dla obwiedni sygnału. + + + Pre-delay: + Opóźnienie wstępne: + + ATT ATT + + Attack: Atak: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Użyj tego pokrętła aby ustawić czas ataku obwiedni. - - + HOLD HOLD + Hold: Przetrzymanie: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Użyj tego pokrętła aby ustawić czas przetrzymania obwiedni. - - + DEC DEC + Decay: Zanikanie: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Użyj tego pokrętła aby ustawić czas zanikania obwiedni. - - + SUST SUST + Sustain: Podtrzymanie: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Użyj tego pokrętła aby ustawić poziom podtrzymania obwiedni. - - + REL REL + Release: Wybrzmiewanie: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Użyj tego pokrętła aby ustawić czas wybrzmiewania obwiedni. - - + + AMT AMT + + Modulation amount: Współczynnik modulacji: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Użyj tego pokrętła aby ustawić współczynnik modulacji sygnału przez generator obwiedni. - - - LFO predelay: - Opóźnienie LFO: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Użyj tego pokrętła aby ustawić czas opóźnienia LFO. - - - LFO- attack: - Atak LFO: - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Użyj tego pokrętła aby ustawić czas ataku LFO. - - + SPD SPD - LFO speed: - Szybkość LFO: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Użyj tego pokrętła aby ustawić prędkość oscylacji LFO. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Użyj tego pokrętła aby ustawić współczynnik modulacji sygnału przez Generator Przebiegów Wolnozmiennych (LFO). - - - Click here for a sine-wave. - Kliknij tutaj aby przełączyć na falę sinusoidalną. - - - Click here for a triangle-wave. - Kliknij tutaj aby przełączyć na falę trójkątną. - - - Click here for a saw-wave for current. - Kliknij tutaj aby przełączyć na falę piłokształtną. - - - Click here for a square-wave. - Kliknij tutaj aby przełączyć na falę prostokątną. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Kliknij tutaj aby przełączyć na kształt fali zdefiniowany przez użytkownika. Po tym fakcie przeciągnij do okna LFO próbkę ze zdefiniowanym wcześniej kształtem fali. + + Frequency: + Częstotliwość: + FREQ x 100 FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Kliknij tutaj aby 100-krotnie zwiększyć częstotliwość LFO. + + Multiply LFO frequency by 100 + - multiply LFO-frequency by 100 - częstotliwość LFO razy 100 + + MODULATE ENV AMOUNT + - MODULATE ENV-AMOUNT - MODULUJ WSPÓŁCZYNNIK OBWIEDNI - - - Click here to make the envelope-amount controlled by this LFO. - Kliknij tutaj aby LFO kontrolował współczynnik modulacji sygnału przez obwiednię. - - - control envelope-amount by this LFO - kontroluj współczynnik obwiedni przez ten LFO + + Control envelope amount by this LFO + + ms/LFO: ms/LFO: + Hint Wskazówka - Drag a sample from somewhere and drop it in this window. - Przeciągnij próbkę skądkolwiek i upuść w tym oknie. - - - Click here for random wave. - Naciśnij, aby uzyskać losową falę. + + Drag and drop a sample into this window. + EqControls + Input gain Wzmocnienie wejścia + Output gain Wzmocnienie wyścia - Low shelf gain - Wzmocnienie dolno półkowe + + 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 - Wzmocnienie górno półkowe + + High-shelf gain + + HP res Rez HP - Low Shelf res - Rez. dolno półk. + + 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 - Rez. górno półk. + + High-shelf res + + LP res LP rez + HP freq Częst. HP - Low Shelf freq - Częst. dolno półk. + + 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 - Częst. górno półk. + + High-shelf freq + + LP freq Częst. LP + HP active HP aktywny - Low shelf active - Dolno półk. 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 - Górno półk. 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 - rodzaj filtru dolnoprzepustowego + + Low-pass type + - high pass type - rodzaj filtru wysokoprzepustowego + + High-pass type + + Analyse IN Analizuj WEJŚCIE + Analyse OUT Analizuj WYJŚCIE @@ -1821,85 +4721,108 @@ Prawoklik otwiera menu kontekstowe z pomocą którego można zmienić porządek EqControlsDialog + HP HP - Low Shelf - Dolno półk. + + Low-shelf + + Peak 1 Szczyt 1 + Peak 2 Szczyt 2 + Peak 3 Szczyt 3 + Peak 4 Szczyt 4 - High Shelf - Górno półk. + + High-shelf + + LP LP - In Gain - Wzm. wejśc. + + Input gain + Wzmocnienie wejścia + + + Gain Wzmocnienie - Out Gain - Wzm. wyjśc. + + Output gain + Wzmocnienie wyścia + Bandwidth: Pasmo: + + Octave + Oktawa + + + Resonance : Rezonans: + Frequency: Częstotliwość: - lp grp + + LP group - hp grp + + HP group - - Octave - Oktawa - EqHandle + Reso: Rezo: + BW: Pasmo: + + Freq: Częst: @@ -1907,254 +4830,272 @@ Prawoklik otwiera menu kontekstowe z pomocą którego można zmienić porządek ExportProjectDialog + Export project Eksportuj projekt - Output - Wyjście - - - File format: - Format pliku: - - - Samplerate: - Częstotliwość próbkowania: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Przepływność: - - - 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 - - - Depth: - Rozdzielczość bitowa: - - - 16 Bit Integer - 16 Bit Integer - - - 32 Bit Float - 32 Bit Float - - - Quality settings - Ustawienia jakości - - - Interpolation: - Interpolacja: - - - Zero Order Hold - Podtrzymanie Zerowego Rzędu (ZOH) - - - Sinc Fastest - Sinc Najszybsza - - - Sinc Medium (recommended) - Sinc Średnia (zalecana) - - - Sinc Best (very slow!) - Sinc Najlepsza (koszmarnie wolna!) - - - Oversampling (use with care!): - Nadpróbkowanie (używać ostrożnie!): - - - 1x (None) - 1x (Brak) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Rozpocznij - - - Cancel - Anuluj - - - Export as loop (remove end silence) - Eksportuj jako pętla (usuń ciszę na końcu) + + Export as loop (remove extra bar) + + Export between loop markers Eksportuj pomiędzy znacznikami pętli + + Render Looped Section: + + + + + time(s) + + + + + File format settings + Ustawienia formatu pliku + + + + File format: + Format pliku: + + + + Sampling rate: + Częstotliwość próbkowania: + + + + 44100 Hz + 44100 Hz + + + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Rozdzielczość bitowa: + + + + 16 Bit integer + 16-bitowa liczba całkowita + + + + 24 Bit integer + 24-bitowa liczba całkowita + + + + 32 Bit float + 32 Bit float + + + + Stereo mode: + Tryb stereo: + + + + Mono + Mono + + + + Stereo + Stereo + + + + Joint stereo + Połączone stereo + + + + Compression level: + Poziom kompresji: + + + + Bitrate: + Przepływność: + + + + 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 + Użyj zmiennej przepływności + + + + Quality settings + Ustawienia jakości + + + + Interpolation: + Interpolacja: + + + + Zero order hold + Interpolator rzędu zerowego + + + + Sinc worst (fastest) + Sinc najgorsza (najszybsza) + + + + Sinc medium (recommended) + Sinc średnia (zalecana) + + + + Sinc best (slowest) + Sinc najlepsza (najwolniejsza) + + + + Oversampling: + Nadpróbkowanie: + + + + 1x (None) + 1x (Brak) + + + + 2x + 2x + + + + 4x + 4x + + + + 8x + 8x + + + + Start + Rozpocznij + + + + Cancel + Anuluj + + + Could not open file Nie można otworzyć pliku - Export project to %1 - Eksportuj projekt do %11 - - - 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% - - + 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! - 24 Bit Integer - 24 Bit Integer + + Export project to %1 + Eksportuj projekt do %11 - Use variable bitrate - Użyj zmiennej przepływności + + ( Fastest - biggest ) + ( Najszybsze - największe ) - Stereo mode: - Tryb stereo: + + ( Slowest - smallest ) + ( Najwolniejsze - najmniejsze ) - Stereo - Stereo + + Error + Błąd - Joint Stereo - + + 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. - Mono - Mono - - - Compression level: - Poziom kompresji: - - - (fastest) - (najszybszy) - - - (default) - (domyślny) - - - (smallest) - (najdokładniejszy) - - - - Expressive - - Selected graph - Zaznaczony graf - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - + + 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: @@ -2162,14 +5103,27 @@ Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego FileBrowser + + User content + + + + + Factory content + + + + Browser Przeglądarka + Search Szukaj + Refresh list Odśwież listę @@ -2177,65 +5131,105 @@ Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego FileBrowserTreeWidget + Send to active instrument-track Wyślij do aktywnej ścieżki instrumentu - Open in new instrument-track/B+B Editor - Otwórz w nowej ścieżce instrumentu/edytora perkusji i basu + + 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. - --- Factory files --- - --- Pliki fabryczne --- - - - Open in new instrument-track/Song Editor - Otwórz w nowej ścieżce instrumentu/edytora kompozycji - - + Error BłądBłą - does not appear to be a valid - nie wydaje się być prawidłowy + + %1 does not appear to be a valid %2 file + - file - plik + + --- Factory files --- + --- Pliki fabryczne --- FlangerControls - Delay Samples - Opóźnienie próbek + + Delay samples + - Lfo Frequency - Częstotliwość LFOczę + + LFO frequency + Częstotliwość LFO + Seconds Sekundy + + Stereo phase + + + + Regen + Noise Szum + Invert Odwróć @@ -2243,146 +5237,516 @@ Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego FlangerControlsDialog - Delay Time: - Czas opóźnienia: - - - Feedback Amount: - Ilość reakcji: - - - White Noise Amount: - Ilość białego szumu: - - + 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 - Period: - Odstętp: + + 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 - FxLine + 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 + + + + + MixerLine + + Channel send amount Ilość wysyłania kanału - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Kanał FX odbiera wejście od jednego lub większej ilości ścieżek instrumentów. -To z kolei może być kierowane do wielu innych kanałów FX. LMMS automatycznie dba o to, aby zapobiec nieskończonemu zapętlaniu i nie pozwala na połączenie, które spowodowałoby nieskończoną pętlę. - -Żeby skierować kanał do innego kanału, wybierz kanał FX i kliknij przycisk "Send" do kanału, do którego chcesz wysłać. Pokrętło pod przyciskiem wysyłania reguluje poziom sygnału, który jest wysyłany do kanału. - -Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dostępne poprzez prawe kliknięcie na kanał FX. - - - + 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 + - FxMixer + MixerLineLcdSpinBox + + Assign to: + Przypisz do: + + + + New mixer Channel + Nowy kanał efektów + + + + Mixer + + Master Master - FX %1 + + + + Channel %1 FX %1 + Volume Głośność + Mute Wycisz + Solo Solo - FxMixerView + MixerView - FX-Mixer - FX-Mixer + + Mixer + Mixer - FX Fader %1 + + Fader %1 Fader FX %1 + Mute Wycisz - Mute this FX channel + + Mute this mixer channel Wycisz ten kanał FX + Solo Solo - Solo FX channel + + Solo mixer channel Kanał FX solo - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 Ilość do wysyłania z kanału %1 do kanału %2 @@ -2390,14 +5754,17 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost GigInstrument + Bank Bank + Patch Próbka + Gain Wzmocnienie @@ -2405,46 +5772,23 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost GigInstrumentView - Open other GIG file - Otwórz inny plik GIG - - - Click here to open another GIG file - Naciśnij tutaj, aby otworzyć inny plik GIG - - - Choose the patch - Wybierz próbkę - - - Click here to change which patch of the GIG file to use - Kliknij tutaj, aby zmienić patch'a do pliku GIG. - - - Change which instrument of the GIG file is being played - Zmień odtwarzany instrument pliku GIG. - - - Which GIG file is currently being used - Ten plik GIG jest już w użyciu. - - - Which patch of the GIG file is currently being used - Ten patch pliku GIG jest już w użyciu. - - - Gain - Wzmocnienie - - - Factor to multiply samples by - Czynnik mnożenia próbek przez - - + + Open GIG file Otwórz plik GIG + + Choose patch + Wybierz próbkę + + + + Gain: + Wzmocnienie: + + + GIG Files (*.gig) Pliki GIG (*.gig) @@ -2452,42 +5796,52 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost 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 @@ -2495,650 +5849,798 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost InstrumentFunctionArpeggio + Arpeggio Arpeggio + Arpeggio type Rodzaj arpeggio + Arpeggio range Zakres arpeggio - Arpeggio time - Okres arpeggio + + Note repeats + - 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ół - - - Random - Losowo - - - Free - Dowolnie - - - Sort - Posortowany - - - Sync - Synchronizacja - - - Down and up - W dół i w górę + + Cycle steps + Kroki cyklu + Skip rate Częstotliwość pominięcia + Miss rate Częstotliwość opuszczania - Cycle steps - Kroki cyklu + + 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 - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Arpeggio jest metodą odtwarzania (zwłaszcza krótkobrzmiących) instrumentów, która czyni muzykę o wiele żywszą. Struny takich instrumentów (np. harfy) są krótkobrzmiące niczym akordy. W odróżnieniu od zwyczajnego wykonania akordu, gdzie dźwięki odtwarzane są równocześnie w przypadku wykonywania arpeggio nuty uderzane są sekwencyjnie jedna po drugiej. Typowe arpeggia składają się z trójdźwięków durowych lub molowych ale istnieje też wiele innych akordów, które możesz zastosować. - - + RANGE ZAKRES + Arpeggio range: Zakres arpeggio: + octave(s) oktawa(y) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Użyj tego pokrętła do ustawienia rozpiętości arpeggio w oktawach. Wybrane arpeggio będzie odtwarzane w zakresie określonej liczby oktaw. + + REP + - TIME - OKRES + + Note repeats: + - Arpeggio time: - Okres arpeggio: - - - ms - ms - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Użyj tego pokrętła do ustawienia okresu arpeggio w milisekundach. Okres arpeggio ustala jak długo będzie odtwarzany każdy dźwięk. - - - GATE - BRAM. - - - Arpeggio gate: - Bramkowanie arpeggio: - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Użyj tego pokrętła do ustawienia bramkowania arpeggio. Bramka arpeggio określa procentowo jak długo ma być odtwarzana każda nuta arpeggio. Za jej pomocą można dokonać artykulacji dźwięków w formie staccato. - - - Chord: - Akord: - - - Direction: - Kierunek: - - - Mode: - Tryb: - - - SKIP - POMIŃ - - - Skip rate: - Częstotliwość pominięcia: - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - Ta funkcja pominięcia sprawia, że arpeggiator losowo wstrzymuje jeden krok. Od samego początku w pełnym położeniu przeciwnym do ruchu wskazówek zegara i bez efektu stopniowo osiąga pełną amnezję przy maksymalnym poziomie. - - - MISS - OPUŚĆ - - - Miss rate: - Częstotliwość opuszczania: - - - The miss function will make the arpeggiator miss the intended note. - Ta funkcja opuszczania sprawia, że arpeggiator opuszcza daną nutę. + + time(s) + raz(y) + CYCLE CYKL + Cycle notes: Nuty cyklu: + note(s) nuta(y) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - Przeskakuje między n krokami w arpeggio i powtarza, jeśli jesteśmy ponad zasięgiem nutowym. Jeżeli całkowity zasięg nutowy jest równomiernie podzielny przez liczbę przeskoczonych kroków, można utknąć w krótszym arpeggio a nawet jednej nucie. + + 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 + Melodic minor Minorowy melodyjny + Whole tone Cały ton + Diminished Zmniejszony + Major pentatonic Majorowy pentatoniczny + Minor pentatonic Minorowy pentatoniczny + 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 + Dorian Dorycki - Phrygolydian - Frygolidyjski + + Phrygian + Frygijski + Lydian Lidyjski + Mixolydian Miksolidyjski + Aeolian Eolski + Locrian Lokrycki - Chords - Akordy - - - Chord type - Typ akordu - - - Chord range - Zakres akordu - - + Minor Minor + Chromatic Chromatyczny + Half-Whole Diminished Półton-Cały ton Zmniejszony + 5 5 + Phrygian dominant Frygijski dominujący + Persian Perski + + + Chords + Akordy + + + + Chord type + Typ akordu + + + + Chord range + Zakres akordu + InstrumentFunctionNoteStackingView - RANGE - ZAKRES - - - Chord range: - Zakres akordu: - - - octave(s) - oktawa(y) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Użyj tego pokrętła aby ustawić zakres akordu w oktawach. Wybrany akord będzie odgrywany w ramach określonej liczby oktaw. - - + STACKING UKŁADANIE + Chord: Akord: + + + RANGE + ZAKRES + + + + Chord range: + Zakres akordu: + + + + octave(s) + oktawa(y) + InstrumentMidiIOView + ENABLE MIDI INPUT WŁĄCZ WEJŚCIE MIDI - CHANNEL - KANAŁ - - - VELOCITY - GŁOŚNOŚĆ UDERZENIA - - + ENABLE MIDI OUTPUT WŁĄCZ WYJŚCIE MIDI - PROGRAM - PROGRAM + + + 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 - NOTE - NUTA - - + 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% + + 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 @@ -3146,137 +6648,171 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost InstrumentMiscView + MASTER PITCH ODSTROJENIE GŁÓWNE - Enables the use of Master Pitch - Umożliwia użycie Odstrojenia Głównego + + Enables the use of master pitch + InstrumentSoundShaping + VOLUME GŁOŚNOŚĆ + Volume Głośność + CUTOFF CUTOFF + + Cutoff frequency Częstotliwość graniczna + RESO RESO + Resonance Zafalowanie charakterystyki + Envelopes/LFOs Obwiednie/Oscylatory LFO + Filter type Rodzaj filtru + Q/Resonance Dobroć/Zafalowanie charakterystyki - LowPass - Dolnoprzepustowy + + Low-pass + - HiPass - Górnoprzepustowy + + Hi-pass + - BandPass csg - Pasmowoprzepustowy csg + + Band-pass csg + - BandPass czpg - Pasmowoprzepustowy czpg + + Band-pass czpg + + Notch Pasmowozaporowy - Allpass - Wszechprzepustowy + + All-pass + + Moog Moog - 2x LowPass - 2xDolnoprzepustowy + + 2x Low-pass + - RC LowPass 12dB - RC Dolnoprzepustowy 12dB + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC Pasmowoprzepustowy 12dB + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC Górnoprzepustowy 12dB + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC Dolnoprzepustowy 24dB + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC Pasmowoprzepustowy 24dB + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC Górnoprzepustowy 24dB + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filtr wokalno-formantowy + + Vocal Formant + + 2x Moog 2x Moog - SV LowPass - SV Dolnoprzepustowy + + SV Low-pass + - SV BandPass - SV Pasmowoprzepustowy + + SV Band-pass + - SV HighPass - SV Górnoprzepustowy + + SV High-pass + + SV Notch SV Zaporowy + Fast Formant Szybki Formant + Tripole @@ -3284,50 +6820,42 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost InstrumentSoundShapingView + TARGET TARGET - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Te zakładki zawierają obwiednie. Są bardzo ważne przy modyfikacji dźwięku. Praktycznie zawsze są konieczne przy syntezie subtraktywnej. Przykładowo jeśli mamy do czynienia z obwiednią amplitudy możesz ustalić w których momentach dźwięk ma mieć określoną głośność. Jeśli chcesz stworzyć partię łagodnych smyków ich dźwięk powinien narastać i opadać bardzo powoli. Możesz to uzyskać przez ustawienie długich czasów ataku i wybrzmiewania. Podobnie jest w przypadku obwiedni innych parametrów jak panoramowanie czy częstotliwość graniczna. Możesz uzyskać atrakcyjne dźwięki modyfikując brzmienie już samej fali piłokształtnej za pomocą różnych obwiedni! - - + FILTER FILTR - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - W tym miejscu możesz wybrać wbudowany filtr, który chcesz nałożyć na tę ścieżkę instrumentu. Filtry są bardzo istotne z punktu kształtowania charakterystyki dźwięku. - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Użyj tego pokrętła aby ustawić częstotliwość graniczną wybranego filtru. Częstotliwość ta określa które częstotliwości będą wycinane przez filtr. Przykładowo filtr dolnoprzepustowy wycina całe pasmo częstotliwościowe powyżej częstotliwości granicznej. W przypadku filtru górnoprzepustowego jest odwrotnie i tak dalej... - - - RESO - RESO - - - Resonance: - Zafalowanie charakterystyki: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Użyj tego pokrętła aby ustawić dobroć albo zafalowanie charakterystyki wybranego filtru. Te parametry określają zachowanie filtru w okolicach częstotliwości granicznej. - - + FREQ FREQ - cutoff frequency: - częstotliwość graniczna: + + Cutoff frequency: + Częstotliwość graniczna: + + Hz + Hz + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. Obwiednie, LFO oraz filtry nie są wspierane przez ten instrument. @@ -3335,222 +6863,345 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost InstrumentTrack + + unnamed_track nienazwana ścieżka - Volume - Głośność - - - Panning - Panoramowanie - - - Pitch - Odstrojenie - - - FX channel - Kanał FX - - - Default preset - Ustawienia domyślne - - - With this knob you can set the volume of the opened channel. - Za pomocą tego pokrętła możesz określić głośność otwartego kanału. - - + Base note Nuta bazowa + + First note + Pierwsza nuta + + + + Last note + Ostatnia nuta + + + + Volume + Głośność + + + + Panning + Panoramowanie + + + + Pitch + Odstrojenie + + + Pitch range Zakres odstrojenia - Master Pitch + + 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 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS GŁÓWNE USTAWIENIA - Instrument volume - Głośność instrumentu + + 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 - FX channel - Kanał FX - - - FX - FX - - - Save preset - Zachowaj ustawienia - - - XML preset file (*.xpf) - Plik XML presetu (*.xpf) - - + 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 - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Kliknij tutaj, jeśli chcesz zapisać bieżące ustawienia ścieżki jako preset. Później możesz załadować ten preset, poprzez podwójne kliknięcie w wyszukiwarce presetów. - - - Use these controls to view and edit the next/previous track in the song editor. - Użyj tych ustawień, aby obejrzeć oraz edytować następną/poprzednią ścieżkę w edytorze kompozycji. - - + SAVE ZAPISZ + Envelope, filter & LFO + Chord stacking & arpeggio + Effects Efekty - MIDI settings - Ustawienia MIDI + + 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 + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + 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 - Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: + + + 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 @@ -3558,10 +7209,12 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost LadspaControlDialog + Link Channels Połącz kanały + Channel Kanał @@ -3569,28 +7222,46 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost LadspaControlView + Link channels Połącz kanały + Value: Wartość: - - Sorry, no help available. - Przepraszamy, pomoc jest niedostępna. - 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: @@ -3598,18 +7269,26 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost LeftRightNav + + + Previous Poprzedni + + + Next Następny + Previous (%1) Poprzedni (%1) + Next (%1) Następny (%1) @@ -3617,30 +7296,37 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost 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 @@ -3648,115 +7334,131 @@ Możesz usunąć i przenieść kanały FX w menu kontekstowym, które jest dost LfoControllerDialog + LFO LFO - LFO Controller - Kontroler LFO - - + BASE BASE - Base amount: - Współczynnik bazowy: + + Base: + - todo - do zrobienia + + FREQ + FREQ - SPD - SPD + + LFO frequency: + Częstotliwość LFO: - LFO-speed: - Prędkość LFO: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Użyj tego pokrętła aby ustawić szybkość LFO. Wyższe wartości przyspieszają drgania Generatora Przebiegów Wolnozmiennych. + + AMNT + ILOŚĆ + Modulation amount: Współczynnik modulacji: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Użyj tego pokrętła aby ustawić współczynnik modulacji sygnału przez LFO. Wyższe wartości zwiększają wpływ LFO na podłączone do niego regulatory (np. głośność lub częstotliwość graniczną). - - + PHS PHS + Phase offset: Przesunięcie fazowe: - degrees + + degrees stopni(e) - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Za pomocą tego pokrętła możesz ustawić przesunięcie fazowe LFO, czyli punkt w którym oscylator rozpoczyna przebieg. Przykładowo jeśli mamy do czynienia z falą sinusoidalną i wprowadzimy przesunięcie fazowe o wartości 180 stopni pierwsza połówka fali zostanie wygenerowana w dół a nie w górę jak bez przesunięcia. + + Sine wave + Fala sinusoidalna - Click here for a sine-wave. - Kliknij tutaj aby przestawić kształt fali na sinusoidalny. + + Triangle wave + Fala trójkątna - Click here for a triangle-wave. - Kliknij tutaj aby przestawić kształt fali na trójkątny. + + Saw wave + Fala piłokształtna - Click here for a saw-wave. - Kliknij tutaj aby przestawić kształt fali na piłokształtny. + + Square wave + Fala prostokątna - Click here for a square-wave. - Kliknij tutaj aby przestawić kształt fali na prostokątny. + + Moog saw wave + Fala piłokształtna Mooga - Click here for an exponential wave. - Kliknij tutaj aby przestawić kształt fali na wykładniczy. + + Exponential wave + Fala wykładnicza - Click here for white-noise. - Kliknij tutaj aby przestawić kształt fali na stochastyczny. + + White noise + Biały szum - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Kliknij aby przełączyć na przebieg zdefiniowany przez użytkownika. -Kliknij podwójnie, aby wybrać plik. + - Click here for a moog saw-wave. - Kliknij tutaj, aby przełączyć na przebieg piłokształtny Mooga. + + Mutliply modulation frequency by 1 + - AMNT - ILOŚĆ + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + - LmmsCore + 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 @@ -3764,397 +7466,510 @@ Kliknij podwójnie, aby wybrać plik. MainWindow - &New - &Nowy - - - &Open... - &Otwórz... - - - &Save - &Zapisz - - - Save &As... - Zapisz &Jako... - - - Import... - Import... - - - E&xport... - Eksport [&X]... - - - &Quit - Zakończ [&Q] - - - &Edit - &Edycja - - - Settings - Ustawienia - - - &Tools - &Narzędzia - - - &Help - &Pomoc - - - Help - Pomoc - - - What's this? - Co to jest? - - - 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 - - - Song Editor - Pokaż/ukryj Edytor Kompozycji - - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Poprzez naciśnięcie tego przycisku możesz pokazać lub ukryć Edytor Kompozycji. Za pomocą Edytora Kompozycji możesz modyfikować playlistę utworu oraz określić gdzie i kiedy ścieżki będą odtwarzane. Możesz też wstawiać sample bezpośrednio na playlistę. - - - Beat+Bassline Editor - Pokaż/ukryj Edytor Perkusji i Basu - - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Poprzez naciśnięcie tego przycisku możesz pokazać lub ukryć Edytor Perkusji i Basu. Edytor Perkusji i Basu służy do stworzenia linii perkusyjnej i basowej utworu. Możesz wprowadzać w nim zmiany podobne jak w Edytorze Kompozycji. - - - Piano Roll - Pokaż/ukryj Edytor Pianolowy - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Kliknij tutaj aby pokazać lub ukryć Edytor Pianolowy. Za jego pomocą możesz w prosty sposób modyfikować melodię. - - - Automation Editor - Pokaż/ukryj Edytor Automatyki - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Kliknij tutaj aby pokazać lub ukryć Edytor Automatyki. Za jego pomocą możesz w prosty sposób modyfikować dynamiczne wartości wszelkich regulatorów. - - - FX Mixer - Pokaż/ukryj Mikser Efektów - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Kliknij tutaj aby pokazać lub ukryć Mikser Efektów. Mikser Efektów jest potężnym narzędziem wspomagającym zarządzanie efektami i ścieżkami w Twojej produkcji. Możesz wstawiać wtyczki efektowe na różne kanały dodatkowo wzbogacając brzmienie utworu. - - - Project Notes - Pokaż/ukryj notatki projektu - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Kliknij tutaj aby pokazać lub ukryć okno z notatkami do projektu. W tym oknie możesz zapisywać wszystko co przychodzi Ci na myśl w związku z projektem. - - - Controller Rack - Pokaż/ukryj rack kontrolerów - - - Untitled - Nienazwane - - - LMMS %1 - LMMS %1 - - - 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? - - - 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. - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - Version %1 - Wersja %1 - - + 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 - Volumes - Głośność - - - Undo - Cofnij - - - Redo - Ponów - - - My Projects - Moje projekty - - - My Samples - Moje próbki - - - My Presets - Moje presety - - - My Home - Mój katalog domowy - - - My Computer - Mój komputer - - - &File - &Plik - - - &Recently Opened Projects - &Ostatnio Otwierane Projekty - - - Save as New &Version - Zapisz jako Nową &Wersję - - - E&xport Tracks... - Eksportuj Ścieżki... - - - Online Help - Pomoc Online - - - What's This? - Co to jest? - - - Open Project - Otwórz Projekt - - - Save Project - Zapisz Projekt - - - 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ąć. - - - Preparing plugin browser - Przygotowanie wyszukiwarki wtyczek - - - Preparing file browsers - Przygotowanie wyszukiwarki plików - - - Root directory - Katalog główny - - - Loading background artwork - Ładowanie grafiki tła - - - New from template - Nowy z szablonu - - - Save as default template - Zapisz jako domyślny szablon - - - &View - &Podgląd - - - Toggle metronome - Włącz metronom - - - Show/hide Song-Editor - Pokaż/ukryj Edytor Kompozycji - - - Show/hide Beat+Bassline Editor - Pokaż/ukryj Edytor Perkusji i Basu - - - Show/hide Piano-Roll - Pokaż/ukryj Edytor Pianolowy - - - Show/hide Automation Editor - Pokaż/ukryj Edytor Automatyki - - - Show/hide FX Mixer - Pokaż/ukryj Mikser Efektów - - - Show/hide project notes - Pokaż/ukryj notatki do projektu - - - Show/hide controller rack - Pokaż/ukryj rack kontrolerów - - - Recover session. Please save your work! - Odzyskana sesja. Zapisz swoją pracę! - - - 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ć? - - - LMMS Project - Projekt LMMS - - - LMMS Project Template - Szablon projektu LMMS - - - 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. - - - Smooth scroll - Płynne przewijanie - - - Enable note labels in piano roll - Włącz etykiety nut w edytorze pianolowym. - - - Save project template - Zapisz szablon projektu - - - Volume as dBFS - Głośność jako dBFS - - + 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 &MIDI... + + 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 @@ -4162,21 +7977,44 @@ Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego 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 @@ -4184,18 +8022,43 @@ Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego MidiImport + + Setup incomplete Konfiguracja niekompletna - You do not have 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 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 @@ -4203,541 +8066,911 @@ Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego 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. + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + 3/4 + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + 6/4 + + + + Measures: + Pomiary: + + + + + + 1 + + + + + 2 + 2 + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Plik + + + + &Edit + &Edycja + + + + &Quit + Zakończ [&Q] + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + 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 - Output MIDI program - Wyjściowy program MIDI - - - Receive MIDI-events - Odbieraj komunikaty MIDI - - - Send MIDI-events - Wysyłaj komunikaty MIDI - - + 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 + MidiSetupWidget - DEVICE - URZĄDZENIE + + Device + Urządzenie MonstroInstrument - Osc 1 Volume - Osc 1 Głośność + + Osc 1 volume + - Osc 1 Panning - Osc 1 Panoramowanie + + Osc 1 panning + - Osc 1 Coarse detune - Osc 1 Zgrubne odstrojenie + + Osc 1 coarse detune + - Osc 1 Fine detune left - Osc 1 Dokładne odstrojenie w lewo + + Osc 1 fine detune left + - Osc 1 Fine detune right - Osc 1 Dokładne odstrojenie w prawo + + Osc 1 fine detune right + - Osc 1 Stereo phase offset - Osc 1 Przesunięcie fazowe stereo + + Osc 1 stereo phase offset + - Osc 1 Pulse width - Osc 1 Współczynnik wypełnienia impulsu + + Osc 1 pulse width + - Osc 1 Sync send on rise - Osc 1 Wysyłanie Sync na wzroście + + Osc 1 sync send on rise + - Osc 1 Sync send on fall - Osc 1 Wysyłanie Sync na spadku + + Osc 1 sync send on fall + - Osc 2 Volume - Osc 2 Głośność + + Osc 2 volume + - Osc 2 Panning - Osc 2 Panoramowanie + + Osc 2 panning + - Osc 2 Coarse detune - Osc 2 Zgrubne odstrojenie + + Osc 2 coarse detune + - Osc 2 Fine detune left - Osc 2 Dokładne odstrojenie w lewo + + Osc 2 fine detune left + - Osc 2 Fine detune right - Osc 2 Dokładne odstrojenie w prawo + + Osc 2 fine detune right + - Osc 2 Stereo phase offset - Osc 2 Przesunięcie fazowe stereo + + Osc 2 stereo phase offset + - Osc 2 Waveform - Osc 2 Przebieg + + Osc 2 waveform + - Osc 2 Sync Hard - Osc 2 Sync twarde + + Osc 2 sync hard + - Osc 2 Sync Reverse - Osc 2 Sync odwrócone + + Osc 2 sync reverse + - Osc 3 Volume - Osc 3 Głośność + + Osc 3 volume + - Osc 3 Panning - Osc 3 Panoramowanie + + Osc 3 panning + - Osc 3 Coarse detune - Osc 3 Zgrubne odstrojenie + + Osc 3 coarse detune + + Osc 3 Stereo phase offset Osc 3 Przesunięcie fazowe stereo - Osc 3 Sub-oscillator mix - Osc 3 Sub-oscylator mix + + Osc 3 sub-oscillator mix + - Osc 3 Waveform 1 - Osc 3 Przebieg 1 + + Osc 3 waveform 1 + - Osc 3 Waveform 2 - Osc 3 Przebieg 2 + + Osc 3 waveform 2 + - Osc 3 Sync Hard - Osc 3 Sync twarde + + Osc 3 sync hard + - Osc 3 Sync Reverse - Osc 3 Sync odwrócone + + Osc 3 Sync reverse + - LFO 1 Waveform - LFO 1 Przebieg + + LFO 1 waveform + - LFO 1 Attack - LFO 1 Atak + + LFO 1 attack + - LFO 1 Rate - LFO 1 Tempo + + LFO 1 rate + - LFO 1 Phase - LFO 1 Faza + + LFO 1 phase + - LFO 2 Waveform - LFO 2 Przebieg + + LFO 2 waveform + - LFO 2 Attack - LFO 2 Atak + + LFO 2 attack + - LFO 2 Rate - LFO 2 Tempo + + LFO 2 rate + - LFO 2 Phase - LFO 2 Faza + + LFO 2 phase + - Env 1 Pre-delay - Obw 1 Opóźnienie wstępne + + Env 1 pre-delay + - Env 1 Attack - Obw 1 Atak + + Env 1 attack + - Env 1 Hold - Obw 1 Przetrzymanie + + Env 1 hold + - Env 1 Decay - Obw 1 Zanikanie + + Env 1 decay + - Env 1 Sustain - Obw 1 Podtrzymanie + + Env 1 sustain + - Env 1 Release - Obw 1 Wybrzmiewanie + + Env 1 release + - Env 1 Slope - Obw 1 Nachylenie + + Env 1 slope + - Env 2 Pre-delay - Obw 2 Opóźnienie wstępne + + Env 2 pre-delay + - Env 2 Attack - Obw 2 Atak + + Env 2 attack + - Env 2 Hold - Obw 2 Przetrzymanie + + Env 2 hold + - Env 2 Decay - Obw 2 Zanikanie + + Env 2 decay + - Env 2 Sustain - Obw 2 Podtrzymanie + + Env 2 sustain + - Env 2 Release - Obw 2 Wybrzmiewanie + + Env 2 release + - Env 2 Slope - Obw 2 Nachylenie + + Env 2 slope + - Osc2-3 modulation - Modulacja osc2-3 + + Osc 2+3 modulation + + Selected view Wybrany widok - Vol1-Env1 - Głośn1-Obw1 + + Osc 1 - Vol env 1 + - Vol1-Env2 - Głośn1-Obw2 + + Osc 1 - Vol env 2 + - Vol1-LFO1 - Głośn1-LFO1 + + Osc 1 - Vol LFO 1 + - Vol1-LFO2 - Głośn1-LFO2 + + Osc 1 - Vol LFO 2 + - Vol2-Env1 - Głośn2-Obw1 + + Osc 2 - Vol env 1 + - Vol2-Env2 - Głośn2-Obw2 + + Osc 2 - Vol env 2 + - Vol2-LFO1 - Głośn2-LFO1 + + Osc 2 - Vol LFO 1 + - Vol2-LFO2 - Głośn2-LFO2 + + Osc 2 - Vol LFO 2 + - Vol3-Env1 - Głośn3-Obw1 + + Osc 3 - Vol env 1 + - Vol3-Env2 - Głośn3-Obw2 + + Osc 3 - Vol env 2 + - Vol3-LFO1 - Głośn3-LFO1 + + Osc 3 - Vol LFO 1 + - Vol3-LFO2 - Głośn3-LFO2 + + Osc 3 - Vol LFO 2 + - Phs1-Env1 - Faza1-Obw1 + + Osc 1 - Phs env 1 + - Phs1-Env2 - Faza1-Obw2 + + Osc 1 - Phs env 2 + - Phs1-LFO1 - Faza1-LFO1 + + Osc 1 - Phs LFO 1 + - Phs1-LFO2 - Faza1-LFO2 + + Osc 1 - Phs LFO 2 + - Phs2-Env1 - Faza2-Obw1 + + Osc 2 - Phs env 1 + - Phs2-Env2 - Faza2-Obw2 + + Osc 2 - Phs env 2 + - Phs2-LFO1 - Faza2-LFO1 + + Osc 2 - Phs LFO 1 + - Phs2-LFO2 - Faza2-LFO2 + + Osc 2 - Phs LFO 2 + - Phs3-Env1 - Faza3-Obw1 + + Osc 3 - Phs env 1 + - Phs3-Env2 - Faza3-Obw2 + + Osc 3 - Phs env 2 + - Phs3-LFO1 - Faza3-LFO1 + + Osc 3 - Phs LFO 1 + - Phs3-LFO2 - Faza3-LFO2 + + Osc 3 - Phs LFO 2 + - Pit1-Env1 - Odstr1-Obw1 + + Osc 1 - Pit env 1 + - Pit1-Env2 - Odstr1-Obw2 + + Osc 1 - Pit env 2 + - Pit1-LFO1 - Odstr1-LFO1 + + Osc 1 - Pit LFO 1 + - Pit1-LFO2 - Odstr1-LFO2 + + Osc 1 - Pit LFO 2 + - Pit2-Env1 - Odstr2-Obw1 + + Osc 2 - Pit env 1 + - Pit2-Env2 - Odstr2-Obw2 + + Osc 2 - Pit env 2 + - Pit2-LFO1 - Odstr2-LFO1 + + Osc 2 - Pit LFO 1 + - Pit2-LFO2 - Odstr2-LFO2 + + Osc 2 - Pit LFO 2 + - Pit3-Env1 - Odstr3-Obw1 + + Osc 3 - Pit env 1 + - Pit3-Env2 - Odstr3-Obw2 + + Osc 3 - Pit env 2 + - Pit3-LFO1 - Odstr3-LFO1 + + Osc 3 - Pit LFO 1 + - Pit3-LFO2 - Odstr3-LFO2 + + Osc 3 - Pit LFO 2 + - PW1-Env1 - PW1-Obw1 + + Osc 1 - PW env 1 + - PW1-Env2 - PW1-Obw2 + + Osc 1 - PW env 2 + - PW1-LFO1 - PW1-LFO1 + + Osc 1 - PW LFO 1 + - PW1-LFO2 - PW1-LFO2 + + Osc 1 - PW LFO 2 + - Sub3-Env1 - Sub3-Obw1 + + Osc 3 - Sub env 1 + - Sub3-Env2 - Sub3-Obw2 + + Osc 3 - Sub env 2 + - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 + - Sub3-LFO2 - Sub3-LFO2 + + 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 Biały szum + 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 @@ -4745,294 +8978,240 @@ Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego MonstroView + Operators view Widok operatorowy - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - Widok Operatorowy zawiera wszystkie operatory. Obejmują one zarówno operatory słyszalne (oscylatory) oraz operatory niesłyszalne, czy modulatory: Generatory wolnych przebiegów oraz Obwiednie. - -Pokrętła i inne widgety w Widoku Operatorowym mają swoje własne co to jest -teksty, więc możesz w ten sposób uzyskać bardziej konkretną pomoc. - - + Matrix view Widok macierzowy - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - Widok Macierzowy zawiera macierz modulacyjną. Tutaj możesz zdefiniować relacje modulacji między różnymi operatorami: każdy słyszalny oscylator (oscylatory 1-3) ma 3-4 właściwości, które mogą być modulowane przez dowolny modulator. Korzystanie z większej liczby modulacji zużywa większą moc CPU. - -Widok jest podzielony na cele modulacji, grupowane przez oscylator docelowy. Dostępnymi celami są głośność, odstrojenie, faza, współczynnik wypełnienia impulsu, i zakres sub-oscylatorowy. Uwaga: niektóre cele są określone dla tylko jednego oscylatora. - -Każdy cel modulacyjny ma 4 pokrętła, jedno dla każdego modulatora. Domyślnie pokrętła są ustawione na 0, co oznacza brak modulacji. Obrócenie pokrętła do 1 sprawia, że modulator wpływa jak najdalej na cel modulacji. Obrócenie go do -1 zrobi to samo, ale modulacja jest odwrócona. - - - Mix Osc2 with Osc3 - Miksuj Osc2 z Osc3 - - - Modulate amplitude of Osc3 with Osc2 - Moduluj amplitudę Osc3 z Osc2 - - - Modulate frequency of Osc3 with Osc2 - Moduluj częstotliwość Osc3 z Osc2 - - - Modulate phase of Osc3 with Osc2 - Moduluj fazę Osc3 z Osc2 - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - Pokrętło CRS zmienia strojenie oscylatora 1 w półtonowe kroki. - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - Pokrętło CRS zmienia strojenie oscylatora 2 w półtonowe kroki. - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - Pokrętło CRS zmienia strojenie oscylatora 3 w półtonowe kroki. - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL i FTR zmieniają strojenie oscylatora odpowiednio dla lewego i prawego kanału. Mogą one dodać odstrojenie stereo do oscylatora, który rozszerza obraz stereo i spowoduję iluzję przestrzeni. - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - Pokrętło SPO modyfikuje różnicę w fazie między lewym i prawym kanałem. Większa różnica tworzy szerszy obraz stereo. - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - Pokrętło PW kontroluje współczynnik wypełnienia impulsu, znany również jako cykl pracy, oscylatora 1. Oscylator 1 jest oscylatorem cyfrowej fali impulsowej, nie tworzy pasmowo limitowanego wyjścia co oznacza, że możesz używać jako słyszalny oscylator, ale to spowoduje aliasing. Możesz też użyć jako niesłyzalne źródło sygnału sync, który może być użyty do synchronizacji oscylatorów 2 i 3. - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Wysyłanie Sync na wzroście: Jeśli włączone, sygnał Sync jest wysyłany za każdym razem, gdy oscylator 1 zmienia się z niskiego na wysoki, tj. gdy amplituda zmienia się z -1 do 1. Odstrojenie, faza i współczynnik wypełnienia impulsu oscylatora 1 mogą mieć wpływ na koordynację sync'ów, ale jego głośność nie ma na nie żadnego wpływu. Sygnały Sync są wysyłanie niezależnie dla lewego i prawego kanału. - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Wysyłanie Sync na wzroście: Jeśli włączone, sygnał Sync jest wysyłany za każdym razem, gdy oscylator 1 zmienia się z niskiego na wysoki, tj. gdy amplituda zmienia się z 1 do -1. Odstrojenie, faza i współczynnik wypełnienia impulsu oscylatora 1 mogą mieć wpływ na koordynację sync'ów, ale jego głośność nie ma na nie żadnego wpływu. Sygnały Sync są wysyłanie niezależnie dla lewego i prawego kanału. - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Twardy sync: Za każdym razem, gdy oscylator otrzymuje sygnał sync od oscylatora 1, jego faza jest resetowana do 0+, niezależnie od jego przesunięcia fazowego. - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Odwrócony sync: Za każdym razem, gdy oscylator otrzymuje sygnał sync od oscylatora 1, amplituda oscylatora zostaje odwrócona. - - - Choose waveform for oscillator 2. - Wybierz przebieg dla oscylatora 2 - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Wybierz przebieg dla pierwszego sub-oscylatora oscylatora 3. Oscylator 3 może łagodnie interpolować między dwoma różnymi przebiegami. - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Wybierz przebieg dla drugiego sub-oscylatora oscylatora 3. Oscylator 3 może łagodnie interpolować między dwoma różnymi przebiegami. - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - Pokrętło SUB zmienia stosunek mieszania dwóch sub-oscylatorów oscylatora 3. Każdy sub-oscylator może być ustawiony tak, aby wytworzyć inny przebieg, a oscylator 3 może łagodnie interpolować między nimi. Wszystkie przychodzące modulacje do oscylatora 3 są stosowane w obu sub-oscylatorach / przebiegach w dokładnie taki sam sposób. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - Oprócz dedykowanych modulatorów, Monstro pozwala modulować oscylator 3 przez wyjście oscylatora 2. - -Tryb mieszania oznacza brak modulacji: wyjścia oscylatorów są po prostu zmiksowane razem. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - Oprócz dedykowanych modulatorów, Monstro pozwala modulować oscylator 3 przez wyjście oscylatora 2. - -AM oznacza modulację amplitudową: amplituda oscylatora 3 (głośność) jest modulowana przez oscylator 2. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - Oprócz dedykowanych modulatorów, Monstro pozwala modulować oscylator 3 przez wyjście oscylatora 2. - -FM oznacza modulację częstotliwościową: częstotliwość (odstrojenie) oscylatora 3 jest modulowane przez oscylator 2. Modulacja częstotliwości jest wykonana jak modulacja fazowa, która daje bardziej stabilną ogólną skalę niż "czysta" modulacja częstotliwości. - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - Oprócz dedykowanych modulatorów, Monstro pozwala modulować oscylator 3 przez wyjście oscylatora 2. - -PM oznacza modulację fazową: faza oscylatora 3 jest modulowana przez oscylator 2. Różni się od modulacji częstotliwościowej tym, że zmiany fazowe nie są kumulatywne. - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Wybierz przebieg dla LFO 1. -"Losowe" oraz "Losowe gładkie" to specjalne przebiegi: wytwarzają losowe wyjście, gdzie częstotliwość LFO kontroluje, jak często zmienia się stan LFO. Gładka wersja interpoluje między tymi stanami interpolacją kosinusową. Te losowe tryby mogą być użyte, aby dodać "życia" twoim presetom - dodają trochę analogowej nieprzewidywalności... - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Wybierz przebieg dla LFO 2. -"Losowe" oraz "Losowe gładkie" to specjalne przebiegi: wytwarzają losowe wyjście, gdzie częstotliwość LFO kontroluje, jak często zmienia się stan LFO. Gładka wersja interpoluje między tymi stanami interpolacją kosinusową. Te losowe tryby mogą być użyte, aby dodać "życia" twoim presetom - dodają trochę analogowej nieprzewidywalności... - - - Attack causes the LFO to come on gradually from the start of the note. - Atak spowoduje stopniowe narastanie LFO od początku nuty. - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - Prędkość LFO, mierzona w milisekundach na cykl, jest ustawiana przez częstotliwość. Może być zsynchronizowana do tempa. - - - PHS controls the phase offset of the LFO. - Przesunięcie fazowe LFO jest kontrolowane przez PHS. - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE lub opóźnienie wstępne opóźnia początek obwiedni od początku nuty. 0 oznacza brak opóźnienia. - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - ATT lub atak kontroluje szybkość narastania obwiedni na początku, mierzoną w milisekundach. Wartość 0 oznacza natychmiast. - - - HOLD controls how long the envelope stays at peak after the attack phase. - HOLD lub przetrzymywanie określa, jak długo obwiednia pozostaje na szczycie po fazie ataku. - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - DEC lub zanikanie kontroluje szybkość opadania obwiedni od szczytu, mierzoną w milisekundach, zajmujące od szczytu do zera. Rzeczywiste zanikanie może być krótsze, jeśli podtrzymywanie jest użyte. - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - SUS lub podtrzymywanie określa poziom podtrzymywania obwiedni. Faza zanikania nie spadnie poniżej tego poziomu tak długo, jak długo trzymana jest nuta. - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - REL lub wybrzmiewanie określa długość wybrzmiewania nuty, mierzoną, jak długo zajęłoby opadanie ze szczytu do zera. Rzeczywiste wybrzmiewanie może być krótsze, zależnie od tego, w jakiej fazie nuta jest wybrzmiewana. - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - Pokrętło nachylenia kontroluje krzywą lub kształt obwiedni. Wartość 0 wytwarza proste wzniesienia oraz opadania. Wartości ujemne tworzą krzywe, które zaczynają wolno, osiągają maksimum szybko i powoli opadają. Wartości dodatnie tworzą krzywe, które zaczynają i kończą szybko oraz pozostają dłużej w pobliżu szczytów. - - + + + Volume Głośność + + + Panning Panoramowanie + + + Coarse detune Odstrojenie zgrubne + + + semitones półtony - Finetune left - Odstrojenie lewe + + + Fine tune left + + + + + cents centy - Finetune right - Odstrojenie prawe + + + Fine tune right + + + + Stereo phase offset Przesunięcie fazy stereo + + + + + deg 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 + + 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 + + + + + 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 Współczynnik modulacji @@ -5040,117 +9219,145 @@ PM oznacza modulację fazową: faza oscylatora 3 jest modulowana przez oscylator MultitapEchoControlDialog + Length Długość + Step length: Długość kroku: + Dry Suche - Dry Gain: - Wzmocnienie suchego: + + Dry gain: + + Stages Etapy - Lowpass stages: - Etapy dolnego przepustu: + + Low-pass stages: + + Swap inputs Zamień wejścia - Swap left and right input channel for reflections - Zamień lewy i prawy kanał wyjściowy dla odbicia + + Swap left and right input channels for reflections + NesInstrument - Channel 1 Coarse detune - Kanał 1 Zgrubne odstrojenie + + Channel 1 coarse detune + - Channel 1 Volume - Kanał 1 Głośność + + Channel 1 volume + Głośność kanału 1 - Channel 1 Envelope length - Kanał 1 Długość obwiedni + + Channel 1 envelope length + - Channel 1 Duty cycle - Kanał 1 Cykl pracy + + Channel 1 duty cycle + - Channel 1 Sweep amount - Kanał 1 Ilość wobulacji + + Channel 1 sweep amount + - Channel 1 Sweep rate - Kanał 1 Częstotliwość wobulacji + + Channel 1 sweep rate + + Channel 2 Coarse detune Kanał 2 Zgrubne odstrojenie + Channel 2 Volume Kanał 2 Głośność - Channel 2 Envelope length - Kanał 2 Długość obwiedni + + Channel 2 envelope length + - Channel 2 Duty cycle - Kanał 2 Cykl pracy + + Channel 2 duty cycle + - Channel 2 Sweep amount - Kanał 2 Ilość wobulacji + + Channel 2 sweep amount + - Channel 2 Sweep rate - Kanał 2 Częstotliwość wobulacji + + Channel 2 sweep rate + - Channel 3 Coarse detune - Kanał 3 Zgrubne odstrojenie + + Channel 3 coarse detune + - Channel 3 Volume - Kanał 3 Głośność + + Channel 3 volume + Głośność kanału 3 - Channel 4 Volume - Kanał 4 Głośność + + Channel 4 volume + Głośność kanału 4 - Channel 4 Envelope length - Kanał 4 Długość obwiedni + + Channel 4 envelope length + - Channel 4 Noise frequency - Kanał 4 Częstotliwość szumu + + Channel 4 noise frequency + - Channel 4 Noise frequency sweep - Kanał 4 Wobulacja częstotliwości szumu + + Channel 4 noise frequency sweep + + Master volume Głośność główna + Vibrato Vibrato @@ -5158,196 +9365,447 @@ PM oznacza modulację fazową: faza oscylatora 3 jest modulowana przez oscylator 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 + + 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. + Use note frequency for noise Użyj częstotliwości nuty dla szumu + Noise mode Tryb szumu - Master Volume + + Master volume Głośność główna + Vibrato Vibrato + + OpulenzInstrument + + + Patch + Próbka + + + + 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 + Atak + + + + + Decay + Zanikanie + + + + + Release + Wybrzmiewanie + + + + + Frequency multiplier + Mnożnik częstotliwości + + OscillatorObject - Osc %1 volume - Osc %1 głośność - - - Osc %1 panning - Osc %1 panoramowanie - - - Osc %1 coarse detuning - Osc %1 zgrubne odstrojenie - - - Osc %1 fine detuning left - Osc %1 dokładne odstrojenie lewo - - - Osc %1 fine detuning right - Osc %1 dokładne odstrojenie prawo - - - Osc %1 phase-offset - Osc %1 przesunięcie fazowe - - - 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 waveform Osc %1 przebieg + Osc %1 harmonic Osc %1 harmoniczne + + + + Osc %1 volume + Osc %1 głośność + + + + + Osc %1 panning + Osc %1 panoramowanie + + + + + Osc %1 fine detuning left + Osc %1 dokładne odstrojenie lewo + + + + Osc %1 coarse detuning + Osc %1 zgrubne odstrojenie + + + + Osc %1 fine detuning right + Osc %1 dokładne odstrojenie prawo + + + + Osc %1 phase-offset + Osc %1 przesunięcie fazowe + + + + 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 + + + + Oscilloscope + + + Oscilloscope + Oscyloskop + + + + Click to enable + Naciśnij, aby włączyć + 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 @@ -5355,77 +9813,85 @@ PM oznacza modulację fazową: faza oscylatora 3 jest modulowana przez oscylator PatmanView - Open other patch - Otwórz inny plik Patch - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Kliknij tutaj, aby otworzyć inny plik Patch. Ustawienia pętli i dostrojenia nie zostaną zresetowane. + + Open patch + + Loop Pętla + Loop mode Tryb zapętlenia - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - W tym miejscu możesz uruchomić tryb zapętlenia. Jeśli to zrobisz PatMan będzie używał informacji o pętli dostępnych w pliku. - - + Tune Dostrojenie + Tune mode Tryb dostrojenia - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - W tym miejscu możesz uruchomić tryb dostrojenia. Patman dostroi próbkę do częstotliwości nut. - - + No file selected Nie wybrano żadnego pliku + Open patch file Otwórz plik Patch + Patch-Files (*.pat) Pliki Patch (*.pat) - PatternView + MidiClipView + Open in piano-roll Otwórz w Edytorze Pianolowym + + Set as ghost in piano-roll + + + + Clear all notes Wyczyść wszystkie nuty + Reset name Zresetuj nazwę + Change name Zmień nazwę + Add steps Dodaj kroki + Remove steps Usuń kroki + Clone Steps Klonuj kroki @@ -5433,14 +9899,17 @@ PM oznacza modulację fazową: faza oscylatora 3 jest modulowana przez oscylator PeakController + Peak Controller Kontroler Szczytowy + 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. @@ -5448,10 +9917,12 @@ PM oznacza modulację fazową: faza oscylatora 3 jest modulowana przez oscylator PeakControllerDialog + PEAK PEAK + LFO Controller Kontroler LFO @@ -5459,327 +9930,519 @@ PM oznacza modulację fazową: faza oscylatora 3 jest modulowana przez oscylator PeakControllerEffectControlDialog + BASE BAZA - Base amount: - Współczynnik bazy: - - - Modulation amount: - Współczynnik modulacji: - - - Attack: - Atak: - - - Release: - Wybrzmiewanie: + + Base: + + AMNT ILOŚĆ + + Modulation amount: + Współczynnik modulacji: + + + MULT MNOŻ - Amount Multiplicator: - Mnożnik ilości: + + Amount multiplicator: + + ATCK ATAK + + Attack: + Atak: + + + DCAY ZANIK + + Release: + Wybrzmiewanie: + + + + TRSH + PRÓG: + + + Treshold: Próg: - TRSH - PRÓG: + + Mute output + Wycisz wyjście + + + + Absolute value + PeakControllerEffectControls + Base value Wartość bazowa + Modulation amount Współczynnik modulacji - Mute output - Wycisz wyjście - - + Attack Narastanie + Release Wybrzmiewanie - Abs Value - Wart. bezwzgl. - - - Amount Multiplicator - Mnożnik ilości - - + Treshold Próg + + + Mute output + Wycisz wyjście + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - Otwórz wzorzec podwójnym kliknięciem! - - - Last note - Ostatnia nuta - - - Note lock - Blokada nuty - - + Note Velocity Głośność Nuty + Note Panning Panoramowanie Nuty + Mark/unmark current semitone Zaznacz/odznacz bieżący półton - Mark current scale - Zaznacz bieżącą skalę - - - Mark current chord - Zaznacz bieżący akord - - - Unmark all - Odznacz wszystko - - - No scale - Brak skali - - - No chord - Brak akordu - - - Velocity: %1% - Prędkość: %1% - - - Panning: %1% left - Panoramowanie: %1% w lewo - - - Panning: %1% right - Panoramowanie: %1% w prawo - - - Panning: center - Panoramowanie: centrum - - - Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: - - + 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 + + + Note lock + Blokada nuty + + + + Last note + Ostatnia nuta + + + + No key + Brak klucza + + + + No scale + Brak skali + + + + No chord + Brak akordu + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + Głośność: %1% + + + + Panning: %1% left + Panoramowanie: %1% w lewo + + + + Panning: %1% right + Panoramowanie: %1% w prawo + + + + Panning: center + Panoramowanie: centrum + + + + 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! + + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość pomiędzy %1 a %2: + PianoRollWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) Odtwórz/wstrzymaj obecny wzorzec (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 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) Zatrzymaj odtwarzanie obecnego wzorca (spacja) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Kliknij tutaj jeśli chcesz odtworzyć bieżący wzorzec. Jest to użyteczne podczas edycji. Wzorzec zostanie automatycznie zapętlony, gdy osiąga koniec. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Kliknij tutaj, aby nagrać nuty z kontrolera MIDI lub wirtualnego pianina przypisanego do tego kanału. Podczas nagrywania wszystkie nuty które zagrasz zostaną zapisane na wzorzec i będziesz mógł odtworzyć i edytować je później. - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Kliknij tutaj, aby nagrać nuty z kontrolera MIDI lub wirtualnego pianina przypisanego do tego kanału. Podczas nagrywania będziesz słyszeć utwór lub linię perkusyjną/basową a wszystkie nuty które zagrasz zostaną zapisane na wzorzec. - - - Click here to stop playback of current pattern. - Kliknij tutaj jeśli chcesz zatrzymać odtwarzanie bieżącego wzorca. - - - Draw mode (Shift+D) - Tryb rysowania (Shift+D) - - - Erase mode (Shift+E) - Tryb wymazywania (Shift+E) - - - Select mode (Shift+S) - Tryb zaznaczania (Shift+S) - - - Detune mode (Shift+T) - Tryb odstrojenia (Shift+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Kliknij tutaj, aby przejść do trybu rysowania. W tym trybie możesz dodawać, przemieszczać i zmieniać rozmiar nut To domyślny tryb, który będziesz używać przez większość czasu. Możesz go aktywować z poziomu klawiatury za pomocą skrótu 'Shift+D'. Przytrzymaj klawisz '%1' aby czasowo przejść do trybu zaznaczenia. - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Kliknij tutaj, aby przejść do trybu kasowania. W tym trybie możesz usuwać nuty. Możesz go aktywować z poziomu klawiatury za pomocą skrótu 'Shift+E'. - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Kliknij tutaj, aby przejść do trybu zaznaczania. W tym trybie możesz zaznaczać pojedyncze nuty lub całe ich grupy. Alternatywnie możesz przytrzymać klawisz '%1' w trybie rysowania aby tymczasowo przejść do trybu zaznaczania. - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - Kliknij tutaj, aby przejść do trybu odstrojenia. W tym trybie możesz odstrajać nuty w oknie, które otworzy się po kliknięciu na nie. Ten tryb możesz aktywować z poziomu klawiatury przez wciśnięcie kombinacji 'Shift+T'. - - - Cut selected notes (%1+X) - Wytnij zaznaczone nuty (%1+X) - - - Copy selected notes (%1+C) - Skopiuj zaznaczone nuty (%1+C) - - - Paste notes from clipboard (%1+V) - Wklej nuty ze schowka (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Kliknij tutaj a zaznaczone nuty zostaną wycięte i umieszczone w schowku. Możesz wkleić je gdziekolwiek w dowolnym wzorcu za pomocą przycisku 'Wklej'. - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Kliknij tutaj a zaznaczone nuty zostaną skopiowane do schowka. Możesz wkleić je gdziekolwiek w dowolnym wzorcu za pomocą przycisku 'Wklej'. - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Kliknij tutaj a nuty ze schowka zostaną przeklejone w miejsce zaznaczenia. - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Kontroluje ono powiększenie osi. Może być pomocne w wyborze powiększenia dla konkretnego zadania. Do zwykłego edytowania powiększenie powinno być dopasowane do najmniejszych nut. - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - 'Q' oznacza kwantyzację, kontroluje ona nuty o rozmiarze siatki oraz punkty kontrolne. Wraz z mniejszymi wartościami kwantyzacji, możesz rysować mniejsze nuty w Edytorze Pianolowym oraz dokładniejsze punkty kontrolne w Edytorze Automatyki. - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - Pozwala ono na wybranie długości nowych nut. 'Ostatnia Nuta' oznacza, że długość ostatnio edytowanej nuty zostanie użyta. - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - Ta właściwość jest bezpośrednio podłączona z menu kontekstowym na wirtualnej klawiaturze, na lewo w Piano Roll'u. Po wybraniu skali, której chcesz w rozwijanym menu, możesz kliknąć prawy przycisk myszy we wirtualnej klawiaturze i następnie wybrać 'Zaznacz bieżącą skalę'. LMMS wyświetli wszystkie nuty należące do wybranej skali, w wybranym klawiszu. - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - Wybierz akord, który LMMS może rysować lub podświetlić. Możesz znaleźć najbardziej znane akordy w rozwijanym menu. Po wybraniu akordu, kliknij gdziekolwiek, aby umieścić ten akord i kliknij prawym przyciskiem myszy na wirtualnej klawiaturze, aby otworzyć menu kontekstowe oraz podświetlić akord. Aby powrócić do umieszczenia pojedynczej nuty, musisz wybrać 'Brak akordu' w rozwijanym menu. - - + Edit actions Edytuj akcje + + 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) + + + + + Quantize + Kwantyzuj + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + Copy paste controls Regulacja kopiuj wklej + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + Timeline controls Kontrola osi czasu + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + Zoom and note controls Regulacja nut i powiększenia + + Horizontal zooming + Powiększenie poziome + + + + Vertical zooming + Powiększenie pionowe + + + + Quantization + Kwantyzacja + + + + Note length + Długość nuty + + + + Key + Klucz + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + Piano-Roll - %1 Edytor Pianolowy - %1 - Piano-Roll - no pattern + + + Piano-Roll - no clip Edytor Pianolowy - brak wzorca - Quantize - Kwantyzuj + + + 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 Nuta podstawowa + + + First note + Pierwsza nuta + + + + Last note + Ostatnia nuta + 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 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"! @@ -5787,221 +10450,1295 @@ Powód: "%2" 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. - Instrument Plugins - Wtyczki instrumentów + + 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. + + + + PluginDatabaseW + + + 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 + + + + PluginEdit + + + 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 - Edit Actions - Edytuj akcje - - - &Undo - C&ofnij - - - %1+Z - %1+Z - - - &Redo - Powtó&rz - - - %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 - - - &Bold - Pogru&bienie - - - %1+B - %1+B - - - &Italic - Pochylen&ie - - - %1+I - %1+I - - - &Underline - P&odkreślenie - - - %1+U - %1+U - - - &Left - Do &lewej - - - %1+L - %1+L - - - C&enter - &Do środka - - - %1+E - %1+E - - - &Right - Do p&rawej - - - %1+R - %1+R - - - &Justify - Wy&justuj - - - %1+J - %1+J - - - &Color... - &Kolor… - - + Project Notes Pokaż/ukryj notatki projektu + Enter project notes here Wprowadź notatki dotyczące projektu + + + Edit Actions + Edytuj akcje + + + + &Undo + C&ofnij + + + + %1+Z + %1+Z + + + + &Redo + Powtó&rz + + + + %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 + + + + &Bold + Pogru&bienie + + + + %1+B + %1+B + + + + &Italic + Pochylen&ie + + + + %1+I + %1+I + + + + &Underline + P&odkreślenie + + + + %1+U + %1+U + + + + &Left + Do &lewej + + + + %1+L + %1+L + + + + C&enter + &Do środka + + + + %1+E + %1+E + + + + &Right + Do p&rawej + + + + %1+R + %1+R + + + + &Justify + Wy&justuj + + + + %1+J + %1+J + + + + &Color... + &Kolor… + ProjectRenderer - WAV-File (*.wav) - Plik WAV (*.wav) + + WAV (*.wav) + WAV (*.wav) - Compressed OGG-File (*.ogg) - Skompresowany plik OGG (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) - Plik FLAC (*.flac) + + OGG (*.ogg) + OGG (*.ogg) - Compressed MP3-File (*.mp3) - Skompresowany plik MP3 (*.mp3) + + 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 - File: %1 - Plik: %1 + + &Recently Opened Projects + &Ostatnio Otwierane Projekty RenameDialog + Rename... Zmień nazwę… @@ -6009,717 +11746,1606 @@ Powód: "%2" ReverbSCControlDialog + Input Wejście - Input Gain: + + Input gain: Wzmocnienie wejścia: + Size Rozmiar + Size: Rozmiar: + Color Kolor + Color: Kolor: + Output Wyjście - Output Gain: + + Output gain: Wzmocnienie wyjścia: ReverbSCControls - Input Gain + + Input gain Wzmocnienie wejścia + Size Rozmiar + Color Kolor - Output Gain + + Output gain Wzmocnienie wyścia + + SaControls + + + Pause + + + + + 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 + + + + + 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 + Ustwawienia zaawansowane + + + + Access advanced settings + Dostęp do zaawansowanych ustawień + + + + + FFT block size + + + + + + FFT window type + + + SampleBuffer - Open audio file - Otwórz plik dźwiękowy - - - 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) - - - 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) - - + 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) - - - SampleTCOView - double-click to select sample - naciśnij dwukrotnie, aby wybrać sampel + + 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 + + + + Delete (middle mousebutton) Usuń (środkowy przycisk myszy) + + Delete selection (middle mousebutton) + Usuń zaznaczone (środkowy przycisk myszy) + + + Cut Wytnij + + Cut selection + Wytnij zaznaczone + + + Copy - Kopiu + Kopiuj + + Copy selection + Kopiuj zaznaczone + + + Paste - klej + 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 + + + + + Use track color + Użyj koloru ścieżki + SampleTrack - Sample track - Ścieżka audio - - + Volume Głośność + Panning Panoramowanie + + + Mixer channel + Kanał FX + + + + + 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 + + + + SampleTrackWindow + + + GENERAL SETTINGS + GŁÓWNE USTAWIENIA + + + + Sample volume + + + + + Volume: + Głośność: + + + + VOL + VOL + + + + Panning + Panoramowanie + + + + Panning: + Panoramowanie: + + + + PAN + PAN + + + + Mixer channel + Kanał FX + + + + CHANNEL + FX + + + + SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + SetupDialog - Setup LMMS - Konfiguracja LMMS + + Reset to default value + - General settings - Ustawienia ogólne + + Use built-in NaN handler + - BUFFER SIZE - ROZMIAR BUFORU + + Settings + Ustawienia - Reset to default-value - Przywróć do domyślnej wartości + + + General + - MISC - DODATKOWE + + Graphical user interface (GUI) + + + Display volume as dBFS + Wyświetlaj głośność jako dBFS + + + Enable tooltips Włącz podpowiedzi - Show restart warning after changing settings - Wyświetlaj przypomnienia o ponownym uruchomieniu po zmianie ustawień + + Enable master oscilloscope by default + - Compress project files per default + + Enable all note labels in piano roll + Włącz etykiety wszystkich nut w edytorze pianowym. + + + + 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 + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Projects + + + + + Compress project files by default Domyślnie kompresuj pliki projektu - One instrument track window mode - Tryb jednego, wspólnego okna dla wszystkich instrumentów + + Create a backup file when saving a project + - HQ-mode for output audio-device - Tryb wysokiej jakości wyjścia urządzenia audio + + Reopen last project on startup + Ponownie otwórz ostatni projekt przy uruchomieniu - Compact track buttons - Kompaktowe przyciski ścieżek + + Language + + + + Performance + + + + + Autosave + + + + + Enable autosave + Włącz automatyczny zapis + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + Płynne przewijanie w edytorze kompozycji + + + + Display playback cursor in AudioFileProcessor + + + + + 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 + + + + Keep plugin windows on top when not embedded + + + + Sync VST plugins to host playback Synchronizuj wtyczki VST z hostem - Enable note labels in piano roll - Włącz etykiety nut w edytorze pianolowym. - - - Enable waveform display by default - Włącz domyślnie wyświetlanie przebiegu - - + Keep effects running even without input Pozostaw efekty włączone, nawet bez wejścia - Create backup file when saving a project - Twórz kopię zapasową przy zapisywaniu pliku + + + Audio + Audio - LANGUAGE - JĘZYK + + Audio interface + - Paths - Ścieżki + + HQ mode for output audio device + + + Buffer size + + + + + + MIDI + MIDI + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + LMMS working directory Katalog roboczy LMMS - VST-plugin directory + + VST plugins directory Katalog wtyczek VST + + LADSPA plugins directories + Katalog wtyczek LADSPA + + + + SF2 directory + Katalog SF2 + + + + Default SF2 + Domyślne SF2 + + + + GIG directory + Katalog GIG + + + + Theme directory + Katalog motywu + + + Background artwork Grafika w tle - STK rawwave directory - Katalog STK rawwave + + Some changes require restarting. + - Default Soundfont File - Domyślny plik SoundFont + + Autosave interval: %1 + - Performance settings - Ustawienia wydajności + + Choose the LMMS working directory + - UI effects vs. performance - Efekty interfejsu a wydajność + + Choose your VST plugins directory + - Smooth scroll in Song Editor - Płynne przewijanie w Edytorze kompozycji + + Choose your LADSPA plugins directory + - Show playback cursor in AudioFileProcessor - Wyświetlaj wskaźnik odtwarzania w AudioFileProcessorze + + Choose your default SF2 + - Audio settings - Ustawienia dźwięku + + Choose your theme directory + - AUDIO INTERFACE - INTERFEJS AUDIO + + Choose your background picture + - MIDI settings - Ustawienia MIDI - - - MIDI INTERFACE - INTERFEJS MIDI + + + Paths + Ścieżki + OK OK + Cancel Anuluj - Restart LMMS - Uruchom ponownie LMMS - - - Please note that most changes won't take effect until you restart LMMS! - Większość zmian będzie zauważalna dopiero po zrestartowaniu LMMS! - - + Frames: %1 Latency: %2 ms Ramki: %1 Opóźnienie: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Tutaj możesz ustawić rozmiar wewnętrznego bufora używanego przez LMMS. Niższe wartości skutkują mniejszą latencją ale mogą powodować zniekształcenia dźwięku lub kiepską wydajność, zwłaszcza na starszych komputerach lub kernelach bez obsługi czasu rzeczywistego. - - - Choose LMMS working directory - Wybierz katalog roboczy LMMS - - - Choose your VST-plugin directory - Wybierz katalog na wtyczki VST - - - Choose artwork-theme directory - Wybierz katalog motywów graficznych - - - Choose LADSPA plugin directory - Wybierz katalog wtyczek LADSPA - - - Choose STK rawwave directory - Wybierz katalog STK rawwave - - - Choose default SoundFont - Wybierz domyślny SoundFont - - - Choose background artwork - Wybierz obraz tła - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - Tutaj możesz wybrać preferowany interfejs audio. W zależności od konfiguracji Twojego systemu podczas kompilacji możesz wybierać pomiędzy ALSA, JACK, OSS i innymi. Poniżej znajduje się sekcja w której możesz zmienić ustawienia wybranego interfejsu. - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - Tutaj możesz wybrać preferowany interfejs MIDI. W zależności od konfiguracji systemu podczas kompilacji możesz wybierać pomiędzy ALSA, OSS i innymi. Poniżej znajduje się sekcja w której możesz zmienić ustawienia wybranego interfejsu. - - - Reopen last project on start - Otwórz ostatni projekt przy uruchomieniu - - - Directories - Katalogi - - - Themes directory - Katalog motywów - - - GIG directory - Katalog GIG - - - SF2 directory - Katalog SF2 - - - LADSPA plugin directories - Katalogi wtyczek LADSPA - - - Auto save - Automatyczny zapis - - + Choose your GIG directory Wybierz katalog GIG + Choose your SF2 directory Wybierz swój katalog z SF2 + minutes minuty + minute minuta - Display volume as dBFS - Wyświetlaj głośność jako dBFS - - - Enable auto-save - Włącz automatyczny zapis - - - Allow auto-save while playing - Zezwalaj na automatyczny zapis podczas odtwarzania - - + Disabled Wyłączono + + + SidInstrument - Auto-save interval: %1 - Częstotliwość automatycznego zapisu: %1 + + Cutoff frequency + Częstotliwość graniczna - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Ustaw czas między automatycznym utworzeniem kopii zapasowej do %1. -Pamiętaj również o ręcznym zapisaniu projektu. Możesz wyłączyć zapis podczas odtwarzania, w niektórych starszych systemach może być trudno. + + Resonance + Zafalowanie charakterystyki + + + + Filter type + Rodzaj filtru + + + + Voice 3 off + Wyłącz głos 3 + + + + Volume + Głośność + + + + Chip model + Rodzaj scalaka + + + + SidInstrumentView + + + Volume: + Głośność: + + + + Resonance: + Zafalowanie charakterystyki: + + + + + Cutoff frequency: + Częstotliwość graniczna: + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + MOS6581 SID + + + + MOS8580 SID + MOS8580 SID + + + + + Attack: + Atak: + + + + + Decay: + Zanikanie: + + + + Sustain: + Podtrzymanie: + + + + + Release: + Zwolnienie: + + + + Pulse Width: + Współczynnik wypełnienia impulsu: + + + + Coarse: + Zgrubne odstrojenie: + + + + Pulse wave + + + + + Triangle wave + Fala trójkątna + + + + Saw wave + Fala piłokształtna + + + + Noise + Szum + + + + Sync + Synchronizacja + + + + Ring modulation + + + + + Filtered + Filtrowany + + + + Test + Test + + + + Pulse width: + + + + + SideBarWidget + + + Close + Zamkni Song + Tempo Tempo + Master volume Głośność główna + Master pitch Odstrojenie główne - Project saved - Zapisano projekt + + Aborting project load + - The project %1 is now saved. - Projekt %1 został zapisany. + + Project file contains local paths to plugins, which could be used to run malicious code. + - 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 - - - Empty project - Pusty projekt - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Eksportowanie pustego projektu nie wydaje się mieć sens… Dodaj coś do Edytora kompozycji! - - - Select directory for writing exported tracks... - Wybierz katalog zapisu eksportowanych utworów… - - - untitled - bez tytułu - - - Select file for project-export... - Wybierz plik do wyeksportowania projektu… - - - The following errors occured while loading: - Podczas ładowania wystąpiły następujące błędy: - - - MIDI File (*.mid) - Plik MIDI (*.mid) + + Can't load project: Project file contains local paths to plugins. + + LMMS Error report Zgłoszenie błędu LMMS - Save project - Zapisz projekt + + (repeated %1 times) + (powtórzone %1 razy) + + + + The following errors occurred while loading: + SongEditor + Could not open file Nie można otworzyć pliku - Could not write file - Nie można zapisać 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. + + 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. + + + + + Failed to copy resources. + + + + + Could not write file + Nie można zapisać pliku + + + + 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 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. - Tempo - Tempo - - - TEMPO/BPM - TEMPO/BPM - - - tempo of song - tempo piosenki - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - Tempo piosenki jest wyrażane w uderzeniach na minutę (BPM, Beats Per Minute). Jeśli chcesz zmienić szybkość swojej piosenki zmodyfikuj tę wartość. Każdy takt zawiera cztery uderzenia, stąd tempo w BPM wyraża jak wiele taktów / 4 powinno być odtworzone w ciągu minuty (albo - jeśli wolisz - jak wiele taktów ma być odtworzonych w ciągu 4 minut). - - - High quality mode - Tryb wysokiej jakości - - - Master volume - Głośność główna - - - master volume - głośność główna - - - Master pitch - Odstrojenie główne - - - master pitch - odstrojenie główne - - - Value: %1% - Wartość: %1% - - - Value: %1 semitones - Wartość: %1 półtonów - - - 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 udało się otworzyć pliku %1 do zapisu. Prawdopodobnie nie posiadasz uprawnień do zapisu tego pliku. -Upewnij się, że masz przynajmniej uprawnienia zapisu tego pliku a następnie spróbuj ponownie. - - - template - szablon - - - project - projekt - - + Version difference Różnica wersji - This %1 was created with LMMS %2. - Ten %1 został utworzony w LMMS %2. + + template + szablon + + + + project + projekt + + + + Tempo + Tempo + + + + TEMPO + + + + + Tempo in BPM + + + + + High quality mode + Tryb wysokiej jakości + + + + + + Master volume + Głośność główna + + + + + + Master pitch + Odstrojenie główne + + + + Value: %1% + Wartość: %1% + + + + Value: %1 semitones + Wartość: %1 półtonów SongEditorWindow + Song-Editor Edytor kompozycji + Play song (Space) Odtwórz (Spacja) + 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) - Add beat/bassline - Dodaj linię perkusyjną/basową - - - Add sample-track - Dodaj próbkę - - - Add automation-track - Dodaj ścieżkę automatyki - - - Draw mode - Tryb rysowania - - - Edit mode (select and move) - Tryb edycji (zaznacz i przenieś) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Kliknij tutaj, jeśli chcesz odtworzyć całą kompozycję. Odtwarzanie rozpocznie się od znacznika pozycji (zielony). Możesz go przemieszczać w trakcie odtwarzania. - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Kliknij tutaj, jeśli chcesz zatrzymać odtwarzanie kompozycji. Znacznik pozycji zostanie ustawiony na początek utworu. - - + Track actions Operacje na ścieżce + + Add beat/bassline + Dodaj linię perkusyjną/basową + + + + Add sample-track + Dodaj próbkę + + + + Add automation-track + Dodaj ścieżkę automatyki + + + Edit actions Edytuj akcje + + Draw mode + Tryb rysowania + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + Tryb edycji (zaznacz i przenieś) + + + Timeline controls Kontrola osi czasu + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + Zoom controls Kontrola powiększenia - - - SpectrumAnalyzerControlDialog - Linear spectrum - Spektrum liniowe + + Horizontal zooming + Powiększenie poziome - Linear Y axis - Oś liniowa Y + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - Spektrum liniowe + + Hint + Wskazówka - Linear Y axis - Oś liniowa Y - - - Channel mode - Tryb kanału + + Move recording curser using <Left/Right> arrows + SubWindow + Close Zamkni + Maximize Minimalizuj + Restore Przywróć @@ -6727,81 +13353,110 @@ Upewnij się, że masz przynajmniej uprawnienia zapisu tego pliku a następnie s TabWidget + + Settings for %1 Ustawienia %1 + + TemplatesMenu + + + New from template + Nowy z szablonu + + TempoSyncKnob + + 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 + Custom... Własne... + Custom Własne + 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 @@ -6809,76 +13464,88 @@ Upewnij się, że masz przynajmniej uprawnienia zapisu tego pliku a następnie s TimeDisplayWidget - click to change time units - naciśnij, aby zmienić jednostkę czasu + + Time units + + MIN MIN + SEC SEK + MSEC MILISEK + BAR TAKT + BEAT RYTM + TICK - CYK + TICK TimeLineWidget - Enable/disable auto-scrolling - Wyłącz/włącz automatyczne przewijanie + + Auto scrolling + - Enable/disable loop-points - Włącz/wyłącz znaczniki pętli + + Loop points + - After stopping go back to begin - Po zatrzymaniu powróć do początku + + After stopping go back to beginning + + After stopping go back to position at which playing was started Po zatrzymaniu powróć do pozycji z której rozpoczęto odtwarzanie + After stopping keep position Po zatrzymaniu zapamiętaj pozycję + Hint Wskazówka + Press <%1> to disable magnetic loop points. Naciśnij <%1> aby wyłączyć magnetyczne punkty pętli. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Przytrzymaj<Shift>aby przesunąć początkowy punkt pętli. Naciśnij <%1> aby wyłączyć magnetyczne punkty pętli. - Track + Mute Wycisz + Solo Solo @@ -6886,305 +13553,492 @@ Upewnij się, że masz przynajmniej uprawnienia zapisu tego pliku a następnie s 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ć… - Importing MIDI-file... - Importowanie pliku MIDI… + + 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… + - TrackContentObject + Clip + Mute Wycisz - TrackContentObjectView + ClipView + Current position Obecne położenie - Hint - Wskazówka - - - Press <%1> and drag to make a copy. - Przytrzymaj <%1> i przeciągnij, aby skopiować. - - + Current length Obecna dlugość - Press <%1> for free resizing. - Przytrzymaj <%1> aby dowolnie zmieniać rozmiar. - - + + %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 - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Naciśnij <%1> podczas przeciągania elementu kursorem aby rozpocząć nową akcję 'przeciągnij i upuść'. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + - Actions for this track - Operacje dla tej ścieżki + + Actions + + + Mute Wycisz + + Solo Solo - Mute this track - Wycisz tą ścieżkę + + 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 Sklonuj tą ścieżkę + Remove this track Usuń tą ścieżkę + Clear this track Wyczyść tą ścieżkę - FX %1: %2 + + Channel %1: %2 FX %1: %2 + + Assign to new mixer Channel + Przypisz do nowego kanału efektów + + + Turn all recording on + Turn all recording off - Assign to new FX Channel - Przypisz do nowego kanału efektów + + Change color + Zmień kolor + + + + Reset color to default + Ustaw kolor domyślny + + + + Set random color + Ustaw losowy kolor + + + + Clear clip colors + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - Użyj modulacji fazowej aby zmodulować oscylator 2 oscylatorem 1 + + Modulate phase of oscillator 1 by oscillator 2 + - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Użyj modulacji amplitudowej aby zmodulować oscylator 2 oscylatorem 1 + + Modulate amplitude of oscillator 1 by oscillator 2 + - Mix output of oscillator 1 & 2 - Miksuj wyjścia oscylatorów 1 & 2 + + Mix output of oscillators 1 & 2 + + Synchronize oscillator 1 with oscillator 2 Synchronizuj oscylator 1 z oscylatorem 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Użyj modulacji częstotliwościowej aby zmodulować oscylator 2 oscylatorem 1 + + Modulate frequency of oscillator 1 by oscillator 2 + - Use phase modulation for modulating oscillator 2 with oscillator 3 - Użyj modulacji fazowej aby zmodulować oscylator 3 oscylatorem 2 + + Modulate phase of oscillator 2 by oscillator 3 + - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Użyj modulacji amplitudowej aby zmodulować oscylator 3 oscylatorem 2 + + Modulate amplitude of oscillator 2 by oscillator 3 + - Mix output of oscillator 2 & 3 - Miksuj wyjścia oscylatorów 2 & 3 + + Mix output of oscillators 2 & 3 + + Synchronize oscillator 2 with oscillator 3 Synchronizuj oscylator 2 z oscylatorem 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Użyj modulacji częstotliwościowej aby zmodulować oscylator 3 oscylatorem 2 + + Modulate frequency of oscillator 2 by oscillator 3 + + Osc %1 volume: Osc %1 - głośność: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Za pomocą tego pokrętła możesz ustawić głośność oscylatora %1. Jeśli zadasz wartość 0 oscylator zostanie wyłączony. - - + Osc %1 panning: Osc %1 - panoramowanie: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Za pomocą tego pokrętła możesz ustawić panoramowanie oscylatora %1. Wartość -100 przesuwa oscylator 100% w lewo, wartość 100 - 100% w prawo. - - + Osc %1 coarse detuning: Osc %1 - zgrubne odstrojenie: + semitones półtony - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Za pomocą tego pokrętła możesz ustawić zgrubne odstrojenie oscylatora %1. Możesz odstrajać oscylator o 24 półtonów (dwie oktawy) w górę lub w dół. - - + Osc %1 fine detuning left: Osc %1 - dokładne odstrojenie w lewo: + + cents centy - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Za pomocą tego pokrętła możesz ustawić dokładne odstrojenie oscylatora %1 dla lewego kanału. Zakres regulacji mieści się w przedziale od -100 do +100 centów. - - + Osc %1 fine detuning right: Osc %1 - dokładne odstrojenie w prawo: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Za pomocą tego pokrętła możesz ustawić dokładne odstrojenie oscylatora %1 dla prawego kanału. Zakres regulacji mieści się w przedziale od -100 do +100 centów. - - + Osc %1 phase-offset: Osc %1 - przesunięcie fazowe: + + degrees stopni - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Za pomocą tego pokrętła możesz ustawić przesunięcie fazowe oscylatora %1. Oznacza to, że możesz przemieścić w czasie moment w którym oscylator rozpoczyna drgania. Na przykład jeśli mamy do czynienie z falą sinusoidalną, wprowadzenie przesunięcia fazowego o wartości 180 stopni spowoduje, że pierwsza połówka fali zacznie być generowana w stronę wartości ujemnych, odwrotnie niż w przypadku przesunięcia fazowego o wartości 0 stopni. - - + Osc %1 stereo phase-detuning: Osc %1 - odstrojenie fazy stereo: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Za pomocą tego pokrętła możesz ustawić odstrojenie fazy stereo oscylatora %1. Oznacza to, że masz wpływ na różnicę fazy pomiędzy lewym i prawym kanałem. Ta gałka pomoże Ci stworzyć szeroko brzmiące dźwięki. + + Sine wave + Fala sinusoidalna - Use a sine-wave for current oscillator. - Użyj fali sinusoidalnej dla bieżącego oscylatora. + + Triangle wave + Fala trójkątna - Use a triangle-wave for current oscillator. - Użyj fali trójkątnej dla bieżącego oscylatora. + + Saw wave + Fala piłokształtna - Use a saw-wave for current oscillator. - Użyj fali piłokształtnej dla bieżącego oscylatora. + + Square wave + Fala prostokątna - Use a square-wave for current oscillator. - Użyj fali prostokątnej dla bieżącego oscylatora. + + Moog-like saw wave + - Use a moog-like saw-wave for current oscillator. - Użyj piłokształtnego przebiegu Mooga dla bieżącego oscylatora. + + Exponential wave + Fala wykładnicza - Use an exponential wave for current oscillator. - Użyj fali wykładniczej dla bieżącego oscylatora. + + White noise + Biały szum - Use white-noise for current oscillator. - Użyj białego szumu dla bieżącego oscylatora. + + User-defined wave + + + + + VecControls + + + Display persistence amount + - Use a user-defined waveform for current oscillator. - Użyj fali zdefiniowanej przez użytkownika. + + 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 Zwiększ numer wersji o jeden + Decrement version number Zminiejsz numer wersji o jeden + + Save Options + + + + already exists. Do you want to replace it? już istnieje. Czy chcesz go zastąpić? @@ -7192,156 +14046,117 @@ Upewnij się, że masz uprawnienia do odczytu tego pliku i katalogu zawierające VestigeInstrumentView - Open other VST-plugin - Otwórz inną wtyczkę VST - - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Kliknij tutaj jeśli chcesz otworzyć inną wtyczkę VST. Po kliknięciu otworzy się okno dialogowe w którym będziesz mógł zaznaczyć wybrany plik. - - - Show/hide GUI - Pokaż/ukryj GUI - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Kliknij tutaj aby pokazać graficzny interfejs użytkownika (GUI) wtyczki VST. - - - Turn off all notes - Wycisz wszystkie nuty - - - Open VST-plugin + + + Open VST plugin Otwórz wtyczkę VST - DLL-files (*.dll) - Pliki DLL (*.dll) + + Control VST plugin from LMMS host + - EXE-files (*.exe) - Pliki EXE (*.exe) - - - No VST-plugin loaded - Nie załadowano wtyczki VST - - - Control VST-plugin from LMMS host - Kontroluj wtyczkę VST z hosta LMMS - - - Click here, if you want to control VST-plugin from host. - Kliknij tutaj, jeśli chcesz kontrolować wtyczkę VST z hosta LMMS. - - - Open VST-plugin preset - Otwórz preset wtyczki VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Kliknij tutaj, jeśli chcesz otworzyć inny preset wtyczki VST w formacie *.fxp lub *.fxb. + + Open VST plugin preset + + Previous (-) Poprzedni (-) - Click here, if you want to switch to another VST-plugin preset program. - Naciśnij tutaj, aby przełączyć preset wtyczki VST na inny. - - + Save preset Zapisz preset - Click here, if you want to save current VST-plugin preset program. - Kliknij tutaj, jeśli chcesz zapisać bieżący program presetów wtyczki VST. - - + Next (+) Następny (+) - Click here to select presets that are currently loaded in VST. - Kliknij tutaj, aby zaznaczyć presety aktualnie załadowane do wtyczki VST. + + Show/hide GUI + Pokaż/ukryj GUI + + Turn off all notes + Wycisz wszystkie nuty + + + + DLL-files (*.dll) + Pliki DLL (*.dll) + + + + EXE-files (*.exe) + Pliki EXE (*.exe) + + + + No VST plugin loaded + + + + Preset Preset + by autorstwa + - VST plugin control - kontrola wtyczki VST - - VisualizationWidget - - click to enable/disable visualization of master-output - Kliknij tutaj, aby włączyć/wyłączyć wizualizację kanału master - - - Click to enable - Naciśnij, aby włączyć - - VstEffectControlDialog + Show/hide Pokaż/ukryj - Control VST-plugin from LMMS host - Kontroluj wtyczkę VST z hosta LMMS + + Control VST plugin from LMMS host + - Click here, if you want to control VST-plugin from host. - Kliknij tutaj, jeśli chcesz kontrolować wtyczkę VST z hosta LMMS. - - - Open VST-plugin preset - Otwórz preset wtyczki VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Kliknij tutaj, jeśli chcesz otworzyć inny preset wtyczki VST w formacie *.fxp lub *.fxb. + + Open VST plugin preset + + Previous (-) Poprzedni (-) - Click here, if you want to switch to another VST-plugin preset program. - Naciśnij tutaj, aby przełączyć preset wtyczki VST na inny. - - + Next (+) Następny (+) - Click here to select presets that are currently loaded in VST. - Kliknij tutaj, jeśli chcesz zaznaczyć presety aktualnie załadowane do wtyczki VST. - - + Save preset Zapisz preset - Click here, if you want to save current VST-plugin preset program. - Kliknij tutaj, jeśli chcesz zapisać bieżący program presetów wtyczki VST. - - + + Effect by: Efekt autorstwa: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7349,173 +14164,207 @@ Upewnij się, że masz uprawnienia do odczytu tego pliku i katalogu zawierające VstPlugin - Loading plugin - Ładowanie wtyczki + + + 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 - Please wait while loading VST plugin... - Poczekaj, trwa ładowanie wtyczki VST… + + Loading plugin + Ładowanie wtyczki - The VST plugin %1 could not be loaded. - Wtyczka VST %1 nie może zostać załadowana. + + 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 @@ -7523,2802 +14372,2251 @@ Upewnij się, że masz uprawnienia do odczytu tego pliku i katalogu zawierające WatsynView - 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 - - - - Modulate amplitude of A1 with output of A2 - Moduluj amplitudę A1 z wyjściem A2 - - - Ring-modulate A1 and A2 - Moduluj pierścieniowo A1 i A2 - - - Modulate phase of A1 with output of A2 - Moduluj fazę A1 z wyjściem A2 - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - Moduluj amplitudę B1 z wyjściem B2 - - - Ring-modulate B1 and B2 - Moduluj pierścieniowo B1 i B2 - - - Modulate phase of B1 with 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. - - - Load waveform - Załaduj kształt fali - - - Click to load a waveform from a sample file - Naciśnij, aby załadować kształt fali z pliku - - - Phase left - - - - Click to shift phase by -15 degrees - Kliknij, aby przesunąć fazę o -15 stopni - - - Phase right - - - - Click to shift phase by +15 degrees - Kliknij, aby przesunąć fazę o +15 stopni - - - Normalize - Normalizacja - - - Click to normalize - Naciśnij, aby normalizować - - - Invert - Odwróć - - - Click to invert - Naciśnij, aby odwrócić - - - Smooth - Wygładzanie - - - Click to smooth - Naciśnij, aby wygładzić - - - Sine wave - Fala sinusoidalna - - - Click for sine wave - Naciśnij, aby uzyskać falę sinoidalną - - - Triangle wave - Fala trójkątna - - - Click for triangle wave - Naciśnij, aby uzyskać falę trójkątną - - - Click for saw wave - Naciśnij, aby uzyskać falę piłokształtną - - - Square wave - Fala prostokątna - - - Click for square wave - Naciśnij, aby uzyskać falę kwadratową - - + + + + Volume Głośność + + + + Panning Panoramowanie + + + + Freq. multiplier Mnożnik częst. + + + + Left detune Odstrojenie w lewo + + + + + + + + cents centy + + + + Right detune Odstrojenie w prawo + A-B Mix Miks A-B + Mix envelope amount + Mix envelope attack + Mix envelope hold + Mix envelope decay + Crosstalk + + + 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 + + + + + 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. + Narysuj swój własny przebieg przeciągając kursorem po tym wykresie. + + + + Load waveform + Załaduj kształt fali + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + Normalizacja + + + + + Invert + Odwróć + + + + + Smooth + Wygładzanie + + + + + Sine wave + Fala sinusoidalna + + + + + + Triangle wave + Fala trójkątna + + + + Saw wave + Fala piłokształtna + + + + + Square wave + Fala prostokątna + + + + Xpressive + + + 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 - Częstotliwość Filtra + + Filter frequency + - Filter Resonance - Zafalowanie Filtra + + Filter resonance + + Bandwidth Szerokość Pasma - FM Gain - Wzmocnienie FM + + FM gain + - Resonance Center Frequency - Częstotliwość Środkowa Zafalowania + + Resonance center frequency + - Resonance Bandwidth - Szerokość Pasma Zafalowania + + Resonance bandwidth + - Forward MIDI Control Change Events - Przekaż Zdarzenia MIDI typu Control Change + + Forward MIDI control change events + ZynAddSubFxView - Show GUI - Pokaż GUI - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Kliknij tutaj, aby pokazać lub ukryć graficzny interfejs użytkownika (GUI) syntezatora ZynAddSubFX. - - + Portamento: Portamento: + PORT PORT - Filter Frequency: - Częstotliwość Filtra: + + Filter frequency: + + FREQ FREQ - Filter Resonance: - Zafalowanie Filtra: + + Filter resonance: + + RES RES + Bandwidth: Szerokość Pasma: + BW BW - FM Gain: - Wzmocnienie FM: + + 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 - Przekaż zdarzenia MIDI typu Control Change + + Forward MIDI control changes + + + + + Show GUI + Pokaż GUI - audioFileProcessor + AudioFileProcessor + Amplify Wzmacniaj + Start of sample Początek sampla + End of sample Koniec sampla - Reverse sample - Odwróć próbkę - - - Stutter - - - + 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 + BitInvader - Samplelength - Długość próbki + + Sample length + - bitInvaderView + BitInvaderView - Sample Length - Długość Próbki - - - Sine wave - Fala sinusoidalna - - - Triangle wave - Fala trójkątna - - - Saw wave - Fala piłokształtna - - - Square wave - Fala prostokątna - - - White noise wave - Biały szum - - - User defined wave - Przebieg zdefiniowany przez użytkownika - - - Smooth - Wygładzanie - - - Click here to smooth waveform. - Kliknij tutaj, aby wygładzić przebieg. - - - Interpolation - Interpolacja - - - Normalize - Normalizacja + + 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. - Click for a sine-wave. - Kliknij aby przełączyć na przebieg sinusoidalny. + + + Sine wave + Fala sinusoidalna - Click here for a triangle-wave. - Kliknij aby przełączyć na przebieg trójkątny. + + + Triangle wave + Fala trójkątna - Click here for a saw-wave. - Kliknij aby przełączyć na przebieg piłokształtny. + + + Saw wave + Fala piłokształtna - Click here for a square-wave. - Kliknij aby przełączyć na przebieg prostokątny. + + + Square wave + Fala prostokątna - Click here for white-noise. - Kliknij aby przełączyć na przebieg stochastyczny. + + + White noise + Biały szum - Click here for a user-defined shape. - Kliknij aby przełączyć na przebieg zdefiniowany przez użytkownika. - - - - dynProcControlDialog - - INPUT - WEJŚCIE - - - Input gain: - Wzmocnienie wejścia: - - - OUTPUT - WYJŚCIE - - - Output gain: - Wzmocnienie wyjścia: - - - ATTACK - NARASTANIE - - - Peak attack time: + + + User-defined wave - RELEASE - WYBRZMIEWANIE - - - Peak release time: - - - - Reset waveform - Resetuj kształt przebiegu - - - Click here to reset the wavegraph back to default - Kliknij tutaj, aby przywrócić kształt przebiegu do domyślnego - - + + Smooth waveform Gładki kształt przebiegu - Click here to apply smoothing to wavegraph - Kliknij tutaj, aby wygładzić przebieg. + + Interpolation + Interpolacja - Increase wavegraph amplitude by 1dB - Zwiększ amplitudę wykresu falowego o 1dB + + Normalize + Normalizacja + + + + DynProcControlDialog + + + INPUT + WEJŚCIE - Click here to increase wavegraph amplitude by 1dB - Kliknij aby zwiększyć amplitudę wykresu falowego o 1dB + + Input gain: + Wzmocnienie wejścia: - Decrease wavegraph amplitude by 1dB - Zmniejsz amplitudę wykresu falowego o 1dB + + OUTPUT + WYJŚCIE - Click here to decrease wavegraph amplitude by 1dB - Kliknij aby zmniejszyć amplitudę wykresu falowego o 1dB + + Output gain: + Wzmocnienie wyjścia: - Stereomode Maximum + + 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 - Stereomode Average + + Stereo mode: average + Process based on the average of both stereo channels - Stereomode Unlinked + + Stereo mode: unlinked + Process each stereo channel independently - dynProcControls + DynProcControls + Input gain Wzmocnienie wejścia + Output gain Wzmocnienie wyścia + Attack time Czas narastania + Release time Czas wybrzmiewania + Stereo mode Tryb stereo - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - Otwórz okno pomocy - - - Sine wave - Fala sinusoidalna - - - Click for a sine-wave. - Kliknij tutaj, aby przełączyć na przebieg sinusoidalny. - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - Fala wykładnicza - - - Click for an exponential wave. - - - - Saw wave - Fala piłokształtna - - - Click here for a saw-wave. - Kliknij tutaj, aby przełączyć na przebieg piłokształtny. - - - User defined wave - Przebieg zdefiniowany przez użytkownika - - - Click here for a user-defined shape. - Kliknij aby przełączyć na przebieg zdefiniowany przez użytkownika. - - - 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. - - - White noise wave - Biały Szum - - - Click here for white-noise. - Kliknij tutaj, aby przełączyć na przebieg stochastyczny. - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - Panoramowanie O1: - - - O2 panning: - Panoramowanie O2: - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - Assign to: - Przypisz do: - - - New FX Channel - Nowy kanał efektów - - graphModel + Graph Wykres - kickerInstrument + KickerInstrument + Start frequency Częstotliwość początkowa + End frequency Częstotliwość końcowa - Gain - Wzmocnienie - - + Length Długość - Distortion Start - Początek zniekształcenia + + Start distortion + - Distortion End - Koniec zniekształcenia + + End distortion + - Envelope Slope - Nachylenie obwiedni + + Gain + Wzmocnienie + + Envelope slope + + + + Noise Szum + Click Kliknięcie - Frequency Slope - Nachylenie częstotliwości + + Frequency slope + + Start from note Zacznij od nuty + End to note Zakończ nutą - kickerInstrumentView + KickerInstrumentView + Start frequency: Częstotliwość początkowa: + End frequency: Częstotliwość końcowa: + + Frequency slope: + + + + Gain: Wzmocnienie: - Frequency Slope: - Nachylenie częstotliwości: + + Envelope length: + - Envelope Length: - Długość obwiedni: - - - Envelope Slope: - Nachylenie obwiedni: + + Envelope slope: + + Click: Kliknięcie: + Noise: Szum: - Distortion Start: - Początek zniekształcenia: + + Start distortion: + - Distortion End: - Koniec zniekształcenia: + + End distortion: + - ladspaBrowserView + LadspaBrowserView + + Available Effects Dostępne Efekty + + Unavailable Effects Niedostępne Efekty + + Instruments Instrumenty + + Analysis Tools Narzędzia Analizujące + + Don't know Nieznane - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - To okno dialogowe wyświetla informacje o wszystkich wtyczkach LADSPA jakie LMMS był w stanie zlokalizować. Wtyczki są podzielone na pięć kategorii bazujących na intepretacji ich portów i nazw. - -Efekty dostępne to te, które mogą zostać użyte przez LMMS. Aby wtyczka efektowa mogła zostać wykorzystana musi posiadać zarówno kanały wejściowe jak i wyjściowe. Kanały wejściowe są identyfikowane jako zawierające wyraz 'in' w nazwie kanału, kanały wyjściowe natomiast powinny w nazwie zawierać słowo 'out'. Ponadto efekt musi posiadać taką samą liczbę wejść i wyjść a także obsługiwać tryb pracy w czasie rzeczywistym. - -Efekty niedostępne to takie, które posiadają różną liczbę wejść i wyjść albo nie potrafią pracować w czasie rzeczywistym. - -Instrumenty to wtyczki, w których udało się zidentyfikować jedynie kanały wyjściowe. - -Narzędzia Analizujące to wtyczki, w których rozpoznano tylko kanały wejściowe. - -Nieznane to wtyczki, których kanały zarówno wejściowe jak i wyjściowe pozostają niezidentyfikowane. - -Podwójne kliknięcie na którejkolwiek wtyczce otworzy okienko z informacjami o dostępnych portach. - - + Type: Rodzaj: - ladspaDescription + LadspaDescription + Plugins Wtyczki + Description Opis - ladspaPortDialog + 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 + 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 + 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 + MalletsInstrument + Hardness Twardość + Position Pozycja - Vibrato Gain - Vibrato - Wzmocnienie + + Vibrato gain + - Vibrato Freq - Vibrato - Częstotliwość + + Vibrato frequency + - Stick Mix - Stick Mix + + Stick mix + + Modulator Modulator + Crossfade Crossfade - LFO Speed - LFO - Szybkość + + LFO speed + Szybkość LFO - LFO Depth - LFO - Głębokość + + 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 - Wood1 - Wood1 + + Wood 1 + + Reso Rezonans - Wood2 - Wood2 + + Wood 2 + + Beats Uderzenia - Two Fixed - Dwa Stałe + + Two fixed + + Clump Stąpnięcie - Tubular Bells - Dzwony Rurowe - - - Uniform Bar - Jednolity taki - - - Tuned Bar + + Tubular bells + + Uniform bar + + + + + Tuned bar + + + + Glass Harfa Szklana - Tibetan Bowl - Misy Tybetańskie + + Tibetan bowl + - malletsInstrumentView + MalletsInstrumentView + Instrument Instrument + Spread Rozstrzał + Spread: Rozstrzał: - Hardness - Twardość - - - Hardness: - Twardość: - - - Position - Pozycja - - - Position: - Pozycja: - - - Vib Gain - Vib-Wzm - - - Vib Gain: - Vib-Wzm: - - - Vib Freq - Vib-Częst - - - Vib Freq: - Vib-Częst: - - - Stick Mix - Stick Mix - - - Stick Mix: - Stick Mix: - - - Modulator - Modulator - - - Modulator: - Modulator: - - - Crossfade - Crossfade - - - Crossfade: - Crossfade: - - - LFO Speed - LFO - Szybkość - - - LFO Speed: - LFO - Szybkość: - - - LFO Depth - LFO - Głębokość - - - LFO Depth: - LFO - Głębokość: - - - ADSR - ADSR - - - ADSR: - ADSR: - - - Pressure - Ciśnienie - - - Pressure: - Ciśnienie: - - - Speed - Prędkość - - - Speed: - Prędkość: - - + 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 + ManageVSTEffectView + - VST parameter control - kontrola parametrów VST - VST Sync + + VST sync Synchronizacja VST - Click here if you want to synchronize all parameters with VST plugin. - Kliknij tutaj, jeśli chcesz zsynchronizować wszystkie parametry z wtyczką VST. - - + + Automated Automatyzowane - Click here if you want to display automated parameters only. - Kliknij tutaj aby wyświetlić tylko zautomatyzowane parametry. - - + Close Zamknij - - Close VST effect knob-controller window. - Zamknij okno kontrolera pokręteł efektu VST. - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - kontrola wtyczki VST + VST Sync Synchronizacja VST - Click here if you want to synchronize all parameters with VST plugin. - Kliknij tutaj, jeśli chcesz zsynchronizować wszystkie parametry z wtyczką VST. - - + + Automated Automatyzowane - Click here if you want to display automated parameters only. - Kliknij tutaj aby wyświetlić tylko zautomatyzowane parametry. - - + Close Zamknij - - Close VST plugin knob-controller window. - Zamknij okno kontrolera pokręteł wtyczki VST. - - opl2instrument - - Patch - Próbka - - - Op 1 Attack - Op 1 Atak - - - Op 1 Decay - Op 1 Zanikanie - - - Op 1 Sustain - Op 1 Podtrzymanie - - - Op 1 Release - Op 1 Wybrzmiewanie - - - Op 1 Level - Op 1 Poziom - - - Op 1 Level Scaling - Op 1 Skalowanie poziomu - - - Op 1 Frequency Multiple - - - - Op 1 Feedback - - - - Op 1 Key Scaling Rate - - - - Op 1 Percussive Envelope - Op 1 Obwiednia perkusyjna - - - Op 1 Tremolo - Op 1 Tremolo - - - Op 1 Vibrato - Op 1 Vibrato - - - Op 1 Waveform - Op 1 Przebieg - - - Op 2 Attack - Op 2 Atak - - - Op 2 Decay - Op 2 Zanikanie - - - Op 2 Sustain - Op 2 Podtrzymanie - - - Op 2 Release - Op 2 Wybrzmiewanie - - - Op 2 Level - Op 2 Poziom - - - Op 2 Level Scaling - Op 2 Skalowanie poziomu - - - Op 2 Frequency Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - Op 2 Obwiednia perkusyjna - - - Op 2 Tremolo - Op 2 Tremolo - - - Op 2 Vibrato - Op 2 Vibrato - - - Op 2 Waveform - Op 2 Przebieg - - - FM - FM - - - Vibrato Depth - Głębia vibrato - - - Tremolo Depth - Głębia tremolo - - - - opl2instrumentView - - Attack - Atak - - - Decay - Zanikanie - - - Release - Wybrzmiewanie - - - Frequency multiplier - Mnożnik częstotliwości - - - - organicInstrument + OrganicInstrument + Distortion Zniekształcenie + Volume Głośność - organicInstrumentView + 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: - cents - cent(y) - - - The distortion knob adds distortion to the output of the instrument. - Pokrętło deformacji dodaje zniekształcenie do wyjścia instrumentu - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - Pokrętło głośności steruje głośnością wyjścia instrumentu. Łączy się z kontrolą głośności okna instrumentu. - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - Przycisk losowania randomizuje wszystkie pokrętła z wyjątkiem pokręteł harmonicznych, głośności głównej i zniekształceń. - - + Osc %1 stereo detuning Osc %1 odstrojenie stereo + + cents + cent(y) + + + Osc %1 harmonic: Osc %1 harmoniczne: - FreeBoyInstrument - - Sweep time - Okres wobulacji - - - Sweep direction - Kierunek wobulacji - - - Sweep RtShift amount - Ilość wobulacji RtShift - - - Wave Pattern Duty - - - - 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 - - - Right Output level - Poziom Wyjścia Prawego - - - Left Output level - Poziom Wyjścia Lewego - - - 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 - - - Shift Register width - Szerokość rejestru przesuwnego - - - - FreeBoyInstrumentView - - Sweep Time: - Okres wobulacji: - - - Sweep Time - Okres wobulacji - - - Sweep RtShift amount: - Ilość wobulacji RtShift: - - - Sweep RtShift amount - Ilość wobulacji RtShift - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - Kanał kwadratowy 1 Głośność: - - - Length of each step in sweep: - Długość każdego kroku wobulacji: - - - Length of each step in sweep - Długość każdego kroku wobulacji - - - Wave pattern duty - - - - Square Channel 2 Volume: - Kanał kwadratowy 2 Głośność: - - - Square Channel 2 Volume - Kanał kwadratowy 2 Głośność - - - Wave Channel Volume: - Głośność kanału fali: - - - Wave Channel Volume - Głośność kanału 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 - - - Channel1 to SO1 (Right) - Kanał1 do SO1 (prawy) - - - Channel2 to SO1 (Right) - Kanał2 do SO1 (prawy) - - - Channel3 to SO1 (Right) - Kanał3 do SO1 (prawy) - - - Channel4 to SO1 (Right) - Kanał4 do SO1 (prawy) - - - Channel1 to SO2 (Left) - Kanał 1 do SO2 (lewy) - - - Channel2 to SO2 (Left) - Kanał2 do SO2 (lewy) - - - Channel3 to SO2 (Left) - Kanał 3 do SO2 (lewy) - - - Channel4 to SO2 (Left) - Kanał4 do SO2 (lewy) - - - Wave Pattern - - - - The amount of increase or decrease in frequency - - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - Odstęp między zmianą kroku - - - Draw the wave here - Narysuj przebieg - - - - patchesDialog + 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 - - - Incomplete monophonic imitation tb303 - Niezupełna monofoniczna emulacja syntezatora tb303. - - - Plugin for freely manipulating stereo output - Wtyczka do nieograniczonego manipulowania wyjściami stereofonicznymi. - - - Plugin for controlling knobs with sound peaks - Wtyczka do kontrolowania regulatorów za pośrednictwem szczytów dźwięku. - - - Plugin for enhancing stereo separation of a stereo input file - Wtyczka rozszerzająca bazę stereo. - - - List installed LADSPA plugins - Pokaż zainstalowane wtyczki LADSPA - - - GUS-compatible patch instrument - Instrument kompatybilny z standardem sampli GUS. - - - Additive Synthesizer for organ-like sounds - Syntezator Addytywny umożliwiający stworzenie dźwięków zbliżonych brzmieniem do organów. - - - Tuneful things to bang on - Melodyjny instrument pałeczkowy. - - - 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 LADSPA-effects inside LMMS. - Wtyczka umożliwiająca załadowanie dowolnego efektu LADSPA wewnątrz LMMS. - - - Filter for importing MIDI-files into LMMS - Filtr do importowania plików MIDI do 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. - - - Player for SoundFont files - Odtwarzacz plików SoundFont. - - - Emulation of GameBoy (TM) APU - Emulator układu APU GameBoy'a (TM). - - - Customizable wavetable synthesizer - Konfigurowalny syntezator tablicowy (wavetable). - - - Embedded ZynAddSubFX - Wbudowany syntezator ZynAddSubFX. - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - Filtr importujący pliki Hydrogen do LMMS - - - LMMS port of sfxr - Port sxfr dla LMMS - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - Natywna wtyczka wzmacniacza - - - Carla Rack Instrument - - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - wtyczka kształtująca falę - - - Boost your bass the fast and simple way - Łatwo i szybko podbij bas - - - Versatile drum synthesizer - - - - 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 - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - - - - plugin for using arbitrary VST effects inside LMMS. - wtyczka pozwalająca na korzystanie z efektów VST w LMMS. - - - Graphical spectrum analyzer plugin - Wtyczka graficznego podglądu spektrum - - - A NES-like synthesizer - Syntezator odwzorowujący NES-a - - - A native delay plugin - Natywna wtyczka opóźnienia - - - Player for GIG files - Odtwarzacz plików GIG - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - Natywna wtyczka korektora graficznego - - - A 4-band Crossover Equalizer - Czterozakresowy korektor krzyżowy - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - Filtr służący do eksportowania plików MIDI z LMMS - - - Reverb algorithm by Sean Costello - Algorytm pogłosu Seana Costello - - - Mathematical expression parser - - - - - sf2Instrument + Sf2Instrument + Bank Bank + Patch Próbka + Gain Wzmocnienie + Reverb Pogłos - Reverb Roomsize + + Reverb room size Rozmiar pomieszczenia - Reverb Damping + + Reverb damping Tłumienie pogłosu - Reverb Width + + Reverb width Rozpiętość pogłosu - Reverb Level + + Reverb level Poziom pogłosu + Chorus Chorus - Chorus Lines - Linie chorusu + + Chorus voices + - Chorus Level - Poziom chorusu + + Chorus level + - Chorus Speed - Prędkość chorusu + + Chorus speed + - Chorus Depth - Głębokość chorusu + + Chorus depth + + A soundfont %1 could not be loaded. Soundfont %1 nie może zostać załadowany. - sf2InstrumentView - - Open other SoundFont file - Otwórz inny plik SoundFont - - - Click here to open another SF2 file - Kliknij tutaj, aby otworzyć inny plik SF2 - - - Choose the patch - Wybierz próbkę - - - Gain - Wzmocnienie - - - Apply reverb (if supported) - Nałóż pogłos (jeśli wspierane) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Ten przycisk włącza pogłos. Działa tylko na plikach, które wspierają tę funkcję. - - - Reverb Roomsize: - Rozmiar pomieszczenia: - - - Reverb Damping: - Tłumienie pogłosu: - - - Reverb Width: - Rozpiętość pogłosu: - - - Reverb Level: - Poziom pogłosu: - - - Apply chorus (if supported) - Nałóż chorus (jeśli wspierane) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Ten przycisk włącza chorus. Działa tylko na plikach, które wspierają tę funkcję. - - - Chorus Lines: - Linie chorusu: - - - Chorus Level: - Poziom chorusu: - - - Chorus Speed: - Prędkość chorusu: - - - Chorus Depth: - Głębokość chorusu: - + Sf2InstrumentView + + Open SoundFont file Otwórz plik SoundFont - SoundFont2 Files (*.sf2) - Pliki SoundFont2 (*.sf2) + + 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 + SfxrInstrument - Wave Form - Kształt przebiegu + + Wave + Fala - sidInstrument + StereoEnhancerControlDialog - Cutoff - Częstotliwość graniczna - - - Resonance - Zafalowanie charakterystyki - - - Filter type - Rodzaj filtru - - - Voice 3 off - Wyłącz głos 3 - - - Volume - Głośność - - - Chip model - Rodzaj scalaka - - - - sidInstrumentView - - Volume: - Głośność: - - - Resonance: - Zafalowanie charakterystyki: - - - Cutoff frequency: - Częstotliwość graniczna: - - - High-Pass filter - Filtr górnoprzepustowy - - - Band-Pass filter - Filtr pasmowoprzepustowy - - - Low-Pass filter - Filtr dolnoprzepustowy - - - Voice3 Off - Wyłącz głos 3 - - - MOS6581 SID - MOS6581 SID - - - MOS8580 SID - MOS8580 SID - - - Attack: - Atak: - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Wartość ataku (Attack) określa jak szybko sygnał wyjściowy głosu %1 narasta od zera do wartości szczytowej. - - - Decay: - Zanikanie: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - Wartość zanikania (Decay) decyduje jak szybko sygnał wyjściowy opada od wartości szczytowej do ustalonego poziomu podtrzymania (Sustain). - - - Sustain: - Podtrzymanie: - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - Sygnał wyjściowy głosu %1 będzie utrzymywał poziom podtrzymania (Sustain) tak długo, jak nuta będzie odtwarzania (klawisz klawiatury muzycznej będzie wciśnięty). - - - Release: - Zwolnienie: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - Sygnał wyjściowy głosu %1 opadnie od poziomu podtrzymania (Sustain) do poziomu zerowego po czasie określonym przez parametr wybrzmiewania (Release). - - - Pulse Width: - Współczynnik wypełnienia impulsu: - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - Współczynnik wypełnienia impulsu określa stosunek czasu trwania impulsu do okresu tego impulsu. Pozwala na płynną zmianę wysokości tonu bez dostrzegalnego przejścia między dźwiękami. Należy wybrać prostokątny kształt fali oscylatora %1 aby dostrzec jakikolwiek słyszalny efekt. - - - Coarse: - Zgrubne odstrojenie: - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - Zgrubne odstrojenie pozwala zmienić wysokość głosu %1 o oktawę w górę lub w dół. - - - Pulse Wave - Przebieg Prostokątny - - - Triangle Wave - Przebieg Trójkątny - - - SawTooth - Przebieg Piłokształtny - - - Noise - Szum - - - Sync - Synchronizacja - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Synchronizacja koordynuje w czasie fundamentalne częstotliwości oscylatorów %1 i %2 tworząc efekty "Hard Sync". - - - Ring-Mod - Modulacja Pierścieniowa - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Modulacja Pierścieniowa (kołowa) podmienia sygnał trójkątny na wyjściu oscylatora %1 na pierścieniowo zmodulowaną kombinację oscylatorów %1 i %2. - - - Filtered - Filtrowany - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Kiedy włączona jest filtracja, głos %1 będzie przetwarzany przez filtr. Kiedy filtracja jest wyłączona, głos %1 pojawi się bezpośrednio na wyjściu, bez filtracji. - - - Test - Test - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Kiedy włączony jest Test, oscylator %1 zostanie czasowo zresetowany i zablokowany. - - - - stereoEnhancerControlDialog - - WIDE - ROZSZERZ + + WIDTH + SZEROKOŚĆ + Width: Szerokość: - stereoEnhancerControls + StereoEnhancerControls + Width Szerokość - stereoMatrixControlDialog + 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 + 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 + VestigeInstrument + Loading plugin Ładowanie wtyczki - Please wait while loading VST-plugin... - Ładowanie wtyczki VST. Proszę czekać... + + Please wait while loading the VST plugin... + Proszę poczekać, trwa ładowanie wtyczki VST… - vibed + 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 - Pan %1 - Panoramowanie %1 + + String %1 panning + - Detune %1 - Odstrojenie %1 + + String %1 detune + - Fuzziness %1 - Rozmycie %1 + + String %1 fuzziness + - Length %1 - Długość %1 + + String %1 length + + Impulse %1 Impuls %1 - Octave %1 - Oktawa %1 + + String %1 + - vibedView + VibedView - Volume: - Głośność: - - - The 'V' knob sets the volume of the selected string. - Pokrętło 'V' ustala głośność wybranej struny. + + String volume: + + String stiffness: Sztywność struny: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - Pokrętło 'S' ustala sztywność wybranej struny. Sztywność struny określa jak długo będzie ona drgać. Niższe sztywności wydłużają czas drgań. - - + Pick position: Punkt Wymuszenia: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - Pokrętło 'P' ustala pozycję punktu w którym wymuszenie zostanie przyłożone do struny. - - + Pickup position: Punkt Monitorowania: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - Pokrętło 'PU' ustala pozycję punktu w którym będą monitorowane (nasłuchiwane) drgania struny. + + String panning: + - Pan: - Panoramowanie: + + String detune: + - The Pan knob determines the location of the selected string in the stereo field. - Pokrętło 'Pan' determinuje położenie wybranej struny w przestrzeni stereo. + + String fuzziness: + - Detune: - Odstrojenie: + + String length: + - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - Pokrętło 'Odstrojenie' modyfikuje wysokość tonu wybranej struny. Wartości niższe niż zero powodują spłaszczenie brzmienia. Wartości powyżej zera skutkują wyostrzeniem brzmienia. - - - Fuzziness: - Rozmycie: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - Pokrętło Slap dodaje nieco efektu fuzz do wybranej struny, słyszalnego zwłaszcza podczas fazy ataku. Może być używane aby uczynić brzmienie struny bardziej 'metalicznym'. - - - Length: - Długość: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - Pokrętło długości służy do zmiany długości wybranej struny. Dłuższa struna będzie drgać dłużej i jaśniej, jednak zużyje więcej mocy obliczeniowej procesora. - - - Impulse or initial state - Wymuszenie lub stan początkowy - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - Przełącznik 'Imp' określa czy przebieg z wykresu ma być wymuszeniem przyłożonym struny czy ma odpowiadać za początkowy jej stan (kształt). + + Impulse + Impuls + Octave Oktawa - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - Przełącznik oktawy służy do wyboru, na jakich częstotliwościach harmonicznych będzie drgać struna. Na przykład ustawienie wartości -2 sprawi, że otrzymamy dźwięk dwie oktawy niższy od częstotliwości podstawowej struny, wartość 'F' oznacza, że otrzymany dźwięk będzie miał częstotliwość zgodną z częstotliwością fundamentalną zaś wartość '6' przesunie częstotliwość drgań o 6 oktaw w górę. - - + Impulse Editor Edytor Impulsu - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - Edytor kształtu przebiegu pozwala kontrolować strukturę impulsu, który powoduje wzbudzenie drgań struny. Przycisk po prawej umożliwia wybór kształtu fali. Przycisk '?' załaduje przebieg z pliku - jedynie pierwsze 128 próbek zostanie załadowanych. - -Przebieg może zostać narysowany ręcznie. - -Przycisk 'S' wygładza przebieg. - -Przycisk 'N' normalizuje przebieg. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Symulator do dziewięciu niezależnych, wibrujących strun. Przełącznik struny umożliwia wybór strun, które mają być edytowane. Przełącznik oktawy określa częstotliwości harmoniczne, na których będzie drgać struna. - -Wykres umożliwia zadanie kształtu wymuszenia, które wprawia strunę w drgania. - -Pokrętło 'V' reguluje głośność. Gałka 'S' modyfikuje sztywność struny. Pokrętło 'P' zmienia położenie Punktu Wymuszenia. Gałka 'PU' zmienia położenie Punktu Monitorowania. - -Pokrętło 'Slap' dodaje do dźwięku struny trochę efektu fuzz. - -Pokrętło 'Długość' reguluje długość struny. - -Kontrolka LED w prawym dolnym rogu edytora kształtu fali pokazuje, czy wybrana struna jest aktywna. - - + Enable waveform Włącz przebieg - Click here to enable/disable waveform. - Kliknij tutaj, aby włączyć/wyłączyć przebieg. + + Enable/disable string + + String Struna - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - Przełącznik struny służy wyboru struny, którą będziemy modyfikować. Instrument Vibed może zawierać do 9 niezależnych układów drgających. Kontrolka LED w prawym dolnym rogu edytora kształtu fali pokazuje, czy wybrana struna jest aktywna. - - + + Sine wave Przebieg Sinusoidalny + + Triangle wave Przebieg Trójkątny + + Saw wave Przebieg Piłokształtny + + Square wave Przebieg Prostokątny - White noise wave - Biały Szum + + + White noise + Biały szum - User defined wave - Przebieg zdefiniowany przez użytkownika + + + User-defined wave + - Smooth - Wygładzanie + + + Smooth waveform + Gładki kształt przebiegu - Click here to smooth waveform. - Kliknij tutaj, aby wygładzić przebieg. - - - Normalize - Normalizacja - - - Click here to normalize waveform. - Kliknij tutaj, aby znormalizować przebieg. - - - Use a sine-wave for current oscillator. - Użyj fali sinusoidalnej dla bieżącego oscylatora. - - - Use a triangle-wave for current oscillator. - Użyj fali trójkątnej dla bieżącego oscylatora. - - - Use a saw-wave for current oscillator. - Użyj fali piłokształtnej dla bieżącego oscylatora. - - - Use a square-wave for current oscillator. - Użyj fali prostokątnej dla bieżącego oscylatora. - - - Use white-noise for current oscillator. - Użyj białego szumu dla bieżącego oscylatora. - - - Use a user-defined waveform for current oscillator. - Użyj fali zdefiniowanej przez użytkownika dla bieżącego oscylatora. + + + Normalize waveform + - voiceObject + 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 + WaveShaperControlDialog + INPUT WEJŚCIE + Input gain: Wzmocnienie wejścia: + OUTPUT WYJŚCIE + Output gain: Wzmocnienie wyjścia: - Reset waveform - Resetuj kształt przebiegu - - - Click here to reset the wavegraph back to default - Kliknij tutaj, aby przywrócić kształt przebiegu do domyślnego - - - Smooth waveform - Gładki kształt przebiegu - - - Click here to apply smoothing to wavegraph - Kliknij tutaj, aby wygładzić przebieg. - - - Increase graph amplitude by 1dB + + + Reset wavegraph - Click here to increase wavegraph amplitude by 1dB - Kliknij aby zwiększyć amplitudę wykresu falowego o 1dB + + + Smooth wavegraph + Płynny wykres falowy - Decrease graph amplitude by 1dB + + + Increase wavegraph amplitude by 1 dB - Click here to decrease wavegraph amplitude by 1dB - Kliknij aby zmniejszyć amplitudę wykresu falowego o 1dB + + + Decrease wavegraph amplitude by 1 dB + + Clip input Przytnij wejście - Clip input signal to 0dB - Przytnij sygnał wejścia do 0dB + + Clip input signal to 0 dB + - waveShaperControls + WaveShaperControls + Input gain Wzmocnienie wejścia + Output gain Wzmocnienie wyścia - \ No newline at end of file + diff --git a/data/locale/pt.ts b/data/locale/pt.ts index f1a2386f3..b375e289f 100644 --- a/data/locale/pt.ts +++ b/data/locale/pt.ts @@ -2,95 +2,112 @@ AboutDialog + About LMMS Sobre o LMMS - Version %1 (%2/%3, Qt %4, %5) - Versão %1 (%2/%3, Qt %4, %5) - - - About - Sobre - - - LMMS - easy music production for everyone - LMMS - produção musical fácil para todos - - - Authors - Autores - - - Translation - Tradução - - - 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! - Este programa foi traduzido para o idioma português de forma voluntária. - -Qualquer sugestão para tradução, entre em contato pela lista de desenvolvedores do LMMS ou pelo meu email: <emviveros/arroba/users/ponto/sourceforge/ponto/net>. Sua contribuição é muito bem vinda! - -Esteban Viveros - - - License - Licença - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + Versão %1 (%2/%3, Qt %4, %5). + + + + About + Sobre + + + + LMMS - easy music production for everyone. + LMMS-produção de música fácil para todos. + + + + Copyright © %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> + + + + Authors + Autores + + + Involved Envolvidos + Contributors ordered by number of commits: Contribuidores ordenados por número de contribuição: - Copyright © %1 - Direitos autorais © %1 + + Translation + Tradução - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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! + Idioma atual não traduzido (ou inglês nativo). +Se você estiver interessado em traduzir LMMS para outro idioma ou quer melhorar as traduções atuais, fique à vontade para nos ajudar! Simplesmente contate o mantenedor! + + + + License + Licença AmplifierControlDialog + VOL VOL + Volume: Volume: + PAN PAN + Panning: Panorâmico: + LEFT - LEFT + ESQUERDA + Left gain: Ganho na esquerda: + RIGHT - RIGHT + DIREITA + Right gain: Ganho na Direita: @@ -98,18 +115,22 @@ Esteban Viveros AmplifierControls + Volume Volume + Panning Panorâmico + Left gain Ganho na Esquerda + Right gain Ganho na Direita @@ -117,10 +138,12 @@ Esteban Viveros AudioAlsaSetupWidget + DEVICE DISPOSITIVO + CHANNELS CANAIS @@ -128,85 +151,60 @@ Esteban Viveros AudioFileProcessorView - Open other sample - Abrir outra amostra - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Clique aqui se você precisa abrir outro arquivo de áudio. O diálogo irá aparecer você puder selecionar seu arquivo. Configurações como modo de loop, ponto de início e de final, valor de amplificação, e todo o resto não serão resetados. Mas não vai mais soar como a amostra original. + + Open sample + Abrir amostra + Reverse sample Inverter amostra - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Se você ativar este botão, toda a amostra será invertida. Isto é útil para fazer uns efeitos legais, ex. um ruído elétrico ao contrário. - - - Amplify: - Amplificar: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Bom este botão você pode aumentar a proporção.Quando você coloca um valor de 100% sua amostra não mudará. De outro maneira ela será amplificada para mais ou para menos (o arquivo original da amostra não será modificado!) - - - Startpoint: - Ponto de início: - - - Endpoint: - Ponto final: - - - Continue sample playback across notes - Continua a tocar a amostra entre as notas - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Ativando esta opção a amostra continuará tocando entre diferentes notas - se você mudar a altura, ou o comprimento da nota antes do fim da amostra, a próxima nota irá continuar onde a anterior parou. Para retornar a reprodução a partir do começo, utilize uma nota na parte inferior do teclado (< 20 Hz) - - + Disable loop Desabilitar loop - This button disables looping. The sample plays only once from start to end. - Este botão desabilita o looping. A amostra toca só um do início ao fim. - - + Enable loop Habilitar Loop - This button enables forwards-looping. The sample loops between the end point and the loop point. - Este botão ativa o looping progressivo. A amostra circula entre o ponto final e o ponto do ciclo. + + Enable ping-pong loop + Habilitar loop ping-pong - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Este botão ativa o looping em ping-pong. A amostra circula para trás e para frente entre o ponto final e o ponto do ciclo. + + Continue sample playback across notes + Continua a tocar a amostra entre as notas - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Com este botão você pode definir aonde o AudioFileProcesor deve começar a tocar sua amostra. + + Amplify: + Amplificar: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Com este botão você pode definir aonde o AudioFileProcessor deve parar de tocar sua amostra. + + Start point: + Ponto de início: + + End point: + Ponto de fim: + + + Loopback point: Ponto de auto-retorno: - - With this knob you can set the point where the loop starts. - Com este botão você pode marcar aonde o loop começa. - AudioFileProcessorWaveView + Sample length: Tamanho da amostra: @@ -214,447 +212,469 @@ Esteban Viveros 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 + + Client name + Nome do cliente - CHANNELS - CANAIS + + Channels + Canais - AudioOss::setupWidget + AudioOss - DEVICE - DISPOSITIVO + + Device + Dispositivo - CHANNELS - CANAIS + + Channels + Canais AudioPortAudio::setupWidget - BACKEND - BACKEND + + Backend + - DEVICE - DISPOSITIVO + + Device + Dispositivo - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - DISPOSITIVO + + Device + Dispositivo - CHANNELS - CANAIS + + Channels + Canais AudioSdl::setupWidget - DEVICE - DISPOSITIVO + + Device + Dispositivo - AudioSndio::setupWidget + AudioSndio - DEVICE - DISPOSITIVO + + Device + Dispositivo - CHANNELS - CANAIS + + Channels + Canais AudioSoundIo::setupWidget - BACKEND - BACKEND + + Backend + - DEVICE - DISPOSITIVO + + 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 - 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... - - + 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 - Please open an automation pattern with the context menu of a control! + + 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! - - Values copied - Valores copiados - - - All selected values were copied to the clipboard. - Todos os valores selecionados foram copiados para a área de transferência. - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) Tocar/Parar padrão atual (Espaço) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Clique aqui se você quiser tocar a sequência atual. Isto é útil enquanto se está editando. A sequência entra em loop automaticamente quando chega ao fim. - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Parar de tocar a sequência atual (Espaço) - Click here if you want to stop playing of the current pattern. - Clique aqui se você quiser parar de tocar o padrão atual. - - - Draw mode (Shift+D) - Desenhar modo (Shift+D) - - - Erase mode (Shift+E) - Apagar modo (Shift+E) - - - Flip vertically - Virar verticalmente - - - Flip horizontally - Virar horizontalmente - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Clique aqui e o padrão vai ser invertido. Os pontos são virados na direção Y. - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Clique aqui e o padrão vai ser revertido. Os pontos são virados na direção X. - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Clique aqui e o modo desenho será ativado. Neste modo você pode adicionar e mover valores simples. Este é o modo padrão que é usado na maioria das vezes. Você pode também apertar 'Shift+D' no seu teclado para ativar o modo. - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Clique aqui e o modo apagar será ativado. Neste modo você pode apagar valores simples. Você pode também apertar 'Shift+E' no seu teclado para ativar o modo. - - - 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 - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Um valor de tensão maior pode suavizar mais uma curva, porém pode exagerar alguns valores. Um valor de tensão baixo fará com que a inclinação da curva seja nivelada em cada ponto de controle. - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Clique aqui para escolher progressões discretas para esta sequência de automação. O valor do objeto conectado permanecerá constante entre os pontos de controle e será substituído imediatamente pelo novo valor quando cada ponto de controle for alcançado. - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Clique aqui para escolher as progressões lineares para esta sequência de automação. O valor do objeto conectado irá variar constantemente ao longo do tempo entre os pontos de controle para alcançar o valor correto em cada ponto sem uma mudança brusca. - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Clique aqui para escolher as progressões cúbicas de hermite para esta sequência de automação. O valor do objeto conectado se tornará uma curva suave e facilitará as coisas. - - - Cut selected values (%1+X) - Cortar valores selecionados (%1+X) - - - Copy selected values (%1+C) - Copiar valores selecionados (%1+C) - - - Paste values from clipboard (%1+V) - Colar valores para a área de transferência (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Clique aqui e os valores selecionados vão ser cortados na área de transferência. Você pode colar eles em qualquer padrão clicando no botão colar. - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Clique aqui e os valores selecionados vão ser copiados na área de transferência. Você pode colar eles em qualquer padrão clicando no botão colar. - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Clique aqui e os valores da área de transferência serão colados na primeira medida visível. - - - Tension: - Tensão: - - - Automation Editor - no pattern - Editor de Automação - sem padrão - - - Automation Editor - %1 - Editor de Automação - %1 - - + 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 - Timeline controls - Controles de cronograma + + 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 - Model is already connected to this pattern. - O modelo já está conectado para este padrão. - - + Quantization Quantização - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Quantização. Define o menor tamanho da etapa possível para o Ponto de Automação. Por padrão, isto também define a largura, limpando outros pontos do intervalo. Pressione <Ctrl> para sobrepor este comportamento. + + + 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. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> Arraste o controle enquanto pressiona a tecla <%1> - AutomationPatternView + AutomationClipView + Open in Automation editor Abra dentro do Editor de Automação + Clear Limpar + Reset name Restaurar nome + Change name Mudar nome - %1 Connections - %1 Conexões - - - Disconnect "%1" - Desconectar "%1" - - + Set/clear record Selecionar/limpar gravação + Flip Vertically (Visible) Virar Verticalmente (Visível) + Flip Horizontally (Visible) Virar Horizontalmente (Visível) - Model is already connected to this pattern. + + %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 - BBEditor + 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) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Clique aqui para tocar a base atual. A base é automaticamente reiniciada quando chega ao fim. - - - Click here to stop playing of current beat/bassline. - Clique aqui para parar de tocar a base atual. - - - Add beat/bassline - Add linha de base - - - Add automation-track - Add automação de faixa - - - Remove steps - Remover passo - - - Add steps - Adicionar passo - - + Beat selector Seletor de batida + Track and step actions Faixa e ações da etapa - Clone Steps - Clonar Etapas + + 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 + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor Abrir Editor de Bases + Reset name Restaurar nome + Change name Mudar nome - - Change color - Mudar cor - - - Reset color to default - Reiniciar para a cor padrão - - BBTrack + PatternTrack + Beat/Bassline %1 Batida/Linha de Baixo %1 + Clone of %1 Clone de %1 @@ -662,26 +682,32 @@ Esteban Viveros BassBoosterControlDialog + FREQ FREQ + Frequency: Frequência: + GAIN GANHO + Gain: Ganho: + RATIO RELAÇÃO + Ratio: Relação: @@ -689,14 +715,17 @@ Esteban Viveros BassBoosterControls + Frequency Frequência + Gain Ganho + Ratio Relação @@ -704,107 +733,2346 @@ Esteban Viveros BitcrushControlDialog + IN - IN + DENTRO + OUT - OUT + FORA + + GAIN GANHO - Input Gain: - Ganho da entrada: - - - Input Noise: - Ruído de entrada: - - - Output Gain: - Ganho de saída: - - - CLIP - - - - Output Clip: - Clipe de Saída: - - - Rate Enabled - Taxa Habilitada - - - Enable samplerate-crushing - Ativar compressor de amostragem - - - Depth Enabled - Profundidade habilitada - - - Enable bitdepth-crushing - Ativar compressor de bitdepth - - - Sample rate: - Taxa de amostragem: - - - Stereo difference: - Diferença de Stereo: - - - Levels: - Níveis: + + 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 - 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 - CaptionMenu + CarlaAboutW + + About Carla + Sobre Carla + + + + About + Sobre + + + + About text here + + + + + Extended licensing here + + + + + 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: + + + + + LADSPA: + + + + + + + + + + + + TextLabel + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Arquivo + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help Aj&uda - Help (not available) - Ajuda (não disponível) + + toolBar + + + + + Disk + + + + + + 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... + + + + + 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 + + + + + &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 + + + + + &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... + + + + + CarlaHostWindow + + + Export as... + Exportar como... + + + + + + + Error + Erro + + + + Failed to load project + + + + + Failed to save project + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - Clique aqui para mostrar ou esconder a interface gráfica do usuário (GUI) do Carla. + + Settings + Opções + + + + main + principal + + + + canvas + + + + + engine + motor + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + Experimental + + + + <b>Main</b> + <b>Principal</b> + + + + Paths + Caminhos + + + + Default project folder: + Pasta padrão do projeto: + + + + Interface + Interface + + + + 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 + + + + 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 + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + 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 + + + + + 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) + + + + + 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: + 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 @@ -812,58 +3080,73 @@ Esteban Viveros 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. @@ -871,18 +3154,22 @@ Esteban Viveros 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. @@ -890,116 +3177,158 @@ Esteban Viveros ControllerView + Controls Controles - Controllers are able to automate the value of a knob, slider, and other controls. - Os controladores estão prontos para alterar o valor de botões, barras deslizantes e outros controles automaticamente. - - + 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 - - LFO - LFO - CrossoverEQControlDialog - Band 1/2 Crossover: - 1/2 Cruzamento de Banda: + + Band 1/2 crossover: + - Band 2/3 Crossover: - 2/3 Cruzamento de Banda: + + Band 2/3 crossover: + - Band 3/4 Crossover: - 3/4 Cruzamento de Banda: + + Band 3/4 crossover: + - Band 1 Gain: - Banda 1 Ganho: + + Band 1 gain + - Band 2 Gain: - Banda 2 Ganho: + + Band 1 gain: + - Band 3 Gain: - Banda 3 Ganho: + + Band 2 gain + - Band 4 Gain: - Banda 4 Ganho: + + Band 2 gain: + - Band 1 Mute - Banda 1 Mudo + + Band 3 gain + - Mute Band 1 - Silenciar Banda 1 + + Band 3 gain: + - Band 2 Mute - Banda 2 Mudo + + Band 4 gain + - Mute Band 2 - Silenciar Banda 2 + + Band 4 gain: + - Band 3 Mute - Banda 3 Mudo + + Band 1 mute + - Mute Band 3 - Silenciar Banda 3 + + Mute band 1 + - Band 4 Mute - Banda 4 Mudo + + Band 2 mute + - Mute Band 4 - Silenciar Banda 4 + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + DelayControls - Delay Samples - Amostras de atraso + + Delay samples + + Feedback Retorno - Lfo Frequency - Lfo Frequência + + LFO frequency + - Lfo Amount - Lfo Quantidade + + LFO amount + + Output gain Ganho de saída @@ -1007,228 +3336,528 @@ Esteban Viveros DelayControlsDialog - Lfo Amt - - - - Delay Time - Tempo de atraso - - - Feedback Amount - Quantidade de Retorno - - - Lfo - Lfo - - - Out Gain - Ganho - - - Gain - Ganho - - + 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 + + + + + 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: + Taxa de amostragem: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + + DualFilterControlDialog - Filter 1 enabled - Filtro 1 habilitado - - - Filter 2 enabled - Filtro 2 habilitado - - - Click to enable/disable Filter 1 - Clique para habilitar/desabilitar o Filtro 1 - - - Click to enable/disable Filter 2 - Clique para habilitar/desabilitar o Filtro 2 - - + + 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 1 frequency - Frequência de corte 1 + + 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 2 frequency - Frequência de corte 2 + + Cutoff frequency 2 + + Q/Resonance 2 Q/Ressonância 2 + Gain 2 Ganho 2 - LowPass - Passa Baixa + + + Low-pass + - HiPass - Passa Alta + + + Hi-pass + - BandPass csg - Passa Banda csg + + + Band-pass csg + - BandPass czpg - Passa Banda czpg + + + Band-pass czpg + + + Notch Vale - Allpass - Passa todas + + + All-pass + + + Moog Moog - 2x LowPass - 2x Passa Baixa + + + 2x Low-pass + - RC LowPass 12dB - RC PassaBaixa 12dB + + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC PassaBanda 12dB + + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC PassaAlta 12dB + + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC PassaBaixa 24dB + + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC PassaBanda 24dB + + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC PassaAlta 24dB + + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filtro de Formante Vocal + + + Vocal Formant + + + 2x Moog - SV LowPass + + + SV Low-pass - SV BandPass + + + SV Band-pass - SV HighPass + + + SV High-pass + + SV Notch + + Fast Formant Formato Rápido + + Tripole @@ -1236,41 +3865,55 @@ Esteban Viveros Editor + + Transport controls + Controles de transporte + + + Play (Space) Tocar (Espaço) + Stop (Space) Parar (Espaço) + Record Gravar + Record while playing Gravar enquanto toca - Transport controls - Controles de transporte + + Toggle Step Recording + Effect + Effect enabled Efeito ativado + Wet/Dry mix Mix Processada/Limpa + Gate Portal + Decay Decaimento @@ -1278,6 +3921,7 @@ Esteban Viveros EffectChain + Effects enabled Efeitos ativados @@ -1285,10 +3929,12 @@ Esteban Viveros EffectRackView + EFFECTS CHAIN CADEIA DE EFEITOS + Add effect Adicionar Efeito @@ -1296,22 +3942,28 @@ Esteban Viveros EffectSelectDialog + Add effect Adicionar Efeito + + Name Nome + Type Tipo + Description Descrição + Author Autor @@ -1319,90 +3971,57 @@ Esteban Viveros EffectView - Toggles the effect on or off. - Mantém o efeito ligado ou desligado. - - + On/Off Liga/Desliga + W/D P/L + Wet Level: Nível de Processamento: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - O botão de Processado/Limpo especifica a quantidade de sinal de entrada que será afetado pelo efeito. - - + DECAY DEC + Time: Tempo: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - O botão de Decaimento controla quanto tempo demora até que o processamento seja interrompido. Valores pequenos irão reduzir o consumo de CPU mas em contrapartida você correrá o risco de saturar o final do sinal ao utilizar efeitos de reverberação e atraso (delay). - - + GATE PORTAL + Gate: Portal: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - O botão Portal (Gate) controla a passagem de sínal de acordo no o seu nível de intensidade (volume). o que estiver acima no nível definido passa, se o nível for menor que o definido haverá silêncio. - - + Controls Controles - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Os plugins de efeitos terão o sinal processado de cima para baixo quando estiverem na cadeia de efeitos. - -O botão de Liga/Desliga permite que você pule o plugin selecionado a qualquer momento. - -O botão de Processado/Limpo controla a quantidade de processamento do efeito que vai para o sinal (som). A entrada de um plugin é a saída do plugin anterior. Então o sinal "Limpo" de um efeito posicionado na parte de baixo na cadeia conterá o processamento de todos os efeitos situados acima na cadeia. - -O botão de Decaimento controla quanto tempo o sinal continuará sendo processado após a nota não estar mais sendo apertada. O efeito irá parar o processamento quando o volume estiver abaixo de um limite dado um tempo específico. Tempos grandes precisarão de mais potência da CPU (processador), este número deverá ser pequeno para a maioria dos efeitos. Será necessário aumentar para efeitos que precisam ocupar períodos de silêncio como os efeitos de Atraso por exemplo... - -O botão de Portal (Gate) especificará o nível, o limite que o efeito parará de atuar. Por exemplo, um relógio começa a funcionar sempre que o nível de sinal estiver abaixo do especificado por este botão. - -O botão Controles abre uma caixa de diálogo para edição de parâmetros do efeito. - -Clicar com o botão direito no mouse irá exibir um menu de contexto onde você pode alterar a ordem em que os efeitos são processados ou também apagar um efeito, tudo ao mesmo tempo. - - + Move &up Para &Cima + Move &down Para &Baixo + &Remove this plugin &Remover este plugin @@ -1410,408 +4029,409 @@ Clicar com o botão direito no mouse irá exibir um menu de contexto onde você EnvelopeAndLfoParameters - Predelay - Pré-atraso + + Env pre-delay + - Attack - Ataque + + Env attack + - Hold - Espera + + Env hold + - Decay - Decaimento + + Env decay + - Sustain - Sustentação + + Env sustain + - Release - Relaxamento + + Env release + - Modulation - Modulação + + Env mod amount + - LFO Predelay - LFO - Pré-atraso + + LFO pre-delay + - LFO Attack - LFO - Ataque + + LFO attack + - LFO speed - LFO - Velocidade + + LFO frequency + - LFO Modulation - LFO - Modulação + + LFO mod amount + - LFO Wave Shape - LFO - Forma de Onda + + LFO wave shape + - Freq x 100 - Freq x 100 + + LFO frequency x 100 + - Modulate Env-Amount - Modular Tanto-de-Envelope + + Modulate env amount + EnvelopeAndLfoView + + DEL ATRASO - Predelay: - Pré-atraso: - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Use este botão para ajustar o pré-atraso do envelope atual. Quanto maior este valor, mais longo o tempo antes de iniciar o envelope atual. + + + Pre-delay: + + + ATT ATQ + + Attack: Ataque: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Use este botão para ajustar o tempo de ataque do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisará para aumentar o nível de ataque. - - + HOLD DURAR + Hold: Duração: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Use este botão para ajustar o tempo de duração do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope segura o nível de ataque antes de diminuir para o nível sustentável. - - + DEC DEC + Decay: Decaimento: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Use este botão para ajustar o tempo de decaimento do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisa para diminuir do nível de ataque para o nível sustentável. Escolha um valor pequeno para instrumentos como piano. - - + SUST SUST + Sustain: Sustentação: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Use este botão para ajustar o nível de sustentação do envelope atual. Quanto maior este valor, maior será o nível que o envelope espera antes de ir para zero. - - + REL REL + Release: Relaxamento: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Use este botão para ajustar o tempo de relaxamento do envelope atual. Quanto maior este valor, mais longo o tempo que o envelope precisa para diminuir do nível de sustentação para zero. Escolha um valor grande para instrumentos com cordas. - - + + AMT QNT + + Modulation amount: Quantidade de modulação: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Use este botão para ajustar a quantidade de modulação do envelope atual. Quanto maior este valor, mais o tamanho do acorde (ex. volume ou frequência de corte) será influênciado pelo envelope. - - - LFO predelay: - Pré-atraso do LFO: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Use este botão para ajustar o tempo de pré-atraso do LFO atual. Quanto maior este valor, maior o tempo ontes do LFO começar a oscilar. - - - LFO- attack: - Ataque do LFO: - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Use este botão para ajustar o tempo de ataque do LFO atual. Quanto maior este valor, mais o tempo o LFO leva para atingir sua amplitude máxima. - - + SPD VEL - LFO speed: - Velocidade do LFO: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Use este botão para ajustar a velocidade do LFO atual. Quanto maior este valor, mais rapidamente o LFO oscila e mais rápido será seu efeito. - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Use este botão para ajustar a quantidade de modulação do LFO atual. Quanto maior este valor, mais o tamanho (ex. volume ou frequência de corte) será influênciado pelo LFO. - - - Click here for a sine-wave. - Clique aqui para usar uma onda senoidal. - - - Click here for a triangle-wave. - Clique aqui para usar uma onda triangular. - - - Click here for a saw-wave for current. - Clique aqui para usar uma onda dente-de-serra. - - - Click here for a square-wave. - Clique aqui para usar uma onda quadrada. - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Clique aqui para usar uma forma de onda definida manualmente. Depois, arraste o aquivo com a amostra de áudio correspondente dentro do gráfico de LFO. + + Frequency: + Frequência: + FREQ x 100 FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. - Clique aqui se quiser que a frequência deste LFO seja multiplicada por 100. + + Multiply LFO frequency by 100 + - multiply LFO-frequency by 100 - Multiplica a frequência do LFO por 100 + + MODULATE ENV AMOUNT + - MODULATE ENV-AMOUNT - MODULAR QNT-ENV - - - Click here to make the envelope-amount controlled by this LFO. - Clique aqui para que a quantidade do envelope seja controlada por este LFO. - - - control envelope-amount by this LFO - Controla a quantidade do envelope por este LFO + + Control envelope amount by this LFO + + ms/LFO: ms/LFO: + Hint Sugestão - Drag a sample from somewhere and drop it in this window. - Arraste uma amostra de qualquer lugar para esta janela. - - - Click here for random wave. - Clique aqui para Onda Aleatória. + + Drag and drop a sample into this window. + EqControls + Input gain Ganho de entrada + Output gain Ganho de saída - Low shelf gain + + 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 + + High-shelf gain + HP res - Low Shelf res + + Low-shelf res + Peak 1 BW + Peak 2 BW + Peak 3 BW + Peak 4 BW - High Shelf res + + High-shelf res + LP res + HP freq - Low Shelf freq + + Low-shelf freq + Peak 1 freq + Peak 2 freq + Peak 3 freq + Peak 4 freq - High shelf freq + + High-shelf freq + LP freq + HP active - Low shelf active + + Low-shelf active + Peak 1 active + Peak 2 active + Peak 3 active + Peak 4 active - High shelf 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 + + Low-pass type - high pass type + + High-pass type + Analyse IN + Analyse OUT @@ -1819,85 +4439,108 @@ Clicar com o botão direito no mouse irá exibir um menu de contexto onde você EqControlsDialog + HP HP - Low Shelf + + Low-shelf + Peak 1 + Peak 2 + Peak 3 + Peak 4 - High Shelf + + High-shelf + LP LP - In Gain - + + Input gain + Ganho de entrada + + + Gain Ganho - Out Gain - Ganho + + Output gain + Ganho de saída + Bandwidth: Largura de Banda: + + Octave + Oitava + + + Resonance : Ressonância: + Frequency: Frequência: - lp grp + + LP group - hp grp + + HP group - - Octave - Oitava - EqHandle + Reso: Reso: + BW: BW: + + Freq: Freq: @@ -1905,253 +4548,271 @@ Clicar com o botão direito no mouse irá exibir um menu de contexto onde você ExportProjectDialog + Export project Renderizar projeto - Output - Saída - - - File format: - Formato do arquivo: - - - Samplerate: - Taxa de Amostragem: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - Velocidade em bits: - - - 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 - - - Depth: - Precisão: - - - 16 Bit Integer - 16 Bits Inteiro - - - 32 Bit Float - 32 Bits Decimal - - - Quality settings - Configurações de qualidade - - - Interpolation: - Interpolação: - - - Zero Order Hold - Retentor de Ordem Zero - - - Sinc Fastest - Sincronização Rápida - - - Sinc Medium (recommended) - Sincronização Média (recomendada) - - - Sinc Best (very slow!) - Sincronização Melhor (muito lenta) - - - Oversampling (use with care!): - Sobreamostragem (use com cuidado): - - - 1x (None) - 1x (Nada) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - Começar - - - Cancel - Cancelar - - - Export as loop (remove end silence) - Renderizar como loop (remove silêncio no final) + + Export as loop (remove extra bar) + + Export between loop markers Exportar entre os marcadores de repetição + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + Formato do arquivo: + + + + 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: + Modo estéreo + + + + Mono + Mono + + + + Stereo + Estéreo + + + + Joint stereo + + + + + Compression level: + + + + + Bitrate: + Velocidade em bits: + + + + 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 + + + + + Quality settings + Configurações de qualidade + + + + Interpolation: + Interpolação: + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + 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 - Export project to %1 - Exportar projeto para %1 - - - 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% - - + 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! - 24 Bit Integer + + Export project to %1 + Exportar projeto para %1 + + + + ( Fastest - biggest ) - Use variable bitrate + + ( Slowest - smallest ) - Stereo mode: - + + Error + Erro - Stereo - + + 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. - Joint Stereo - - - - Mono - - - - Compression level: - - - - (fastest) - - - - (default) - - - - (smallest) - - - - - Expressive - - Selected graph - - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - + + 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: @@ -2159,14 +4820,27 @@ Please make sure you have write permission to the file and the directory contain FileBrowser + + User content + + + + + Factory content + + + + Browser Navegador + Search + Refresh list @@ -2174,65 +4848,105 @@ Please make sure you have write permission to the file and the directory contain FileBrowserTreeWidget + Send to active instrument-track Enviar para a faixa de instrumento ativa - Open in new instrument-track/B+B Editor + + 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... - --- Factory files --- - --- Arquivos de fábrica --- - - - Open in new instrument-track/Song Editor - - - + Error Erro - does not appear to be a valid - não parece ser válido + + %1 does not appear to be a valid %2 file + - file - arquivo + + --- Factory files --- + --- Arquivos de fábrica --- FlangerControls - Delay Samples - Amostras de atraso + + Delay samples + - Lfo Frequency - Lfo Frequência + + LFO frequency + + Seconds Segundos + + Stereo phase + + + + Regen + Noise Ruído + Invert Inverter @@ -2240,140 +4954,516 @@ Please make sure you have write permission to the file and the directory contain FlangerControlsDialog - Delay Time: - Tempo de Atraso: - - - Feedback Amount: - - - - White Noise Amount: - Quantidade de Ruído Branco: - - + 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 - Period: + + 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 - FxLine + MixerLine + Channel send amount Quantidade de envio de canal - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - + 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 + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + Atribuir a: + + + + New mixer Channel + Novo Canal FX + + + + Mixer + + Master Mestre - FX %1 + + + + Channel %1 FX %1 + Volume Volume + Mute Mudo + Solo Solo - FxMixerView + MixerView - FX-Mixer + + Mixer Mixer de Efeitos - FX Fader %1 + + Fader %1 FX Fader %1 + Mute Mudo - Mute this FX channel + + Mute this mixer channel Este canal FX mudo + Solo Solo - Solo FX channel + + Solo mixer channel Canal FX solo - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 Quantidade para enviar do canal %1 para o canal %2 @@ -2381,14 +5471,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument + Bank Banco + Patch Programação + Gain Ganho @@ -2396,46 +5489,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - Open other GIG file - Abrir outro arquivo GIG - - - Click here to open another GIG file - Clique aqui para abrir outro arquivo GIG - - - Choose the patch - Escolher o patch - - - Click here to change which patch of the GIG file to use - - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - - - - Gain - Ganho - - - Factor to multiply samples by - - - + + Open GIG file Abrir arquivo GIG + + Choose patch + + + + + Gain: + Ganho: + + + GIG Files (*.gig) Arquivos GIG (*.gig) @@ -2443,42 +5513,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 @@ -2486,650 +5566,798 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio + Arpeggio Arpegio + Arpeggio type Tipo de Arpegio + Arpeggio range Escala de Arpejo - Arpeggio time - Tempo de Arpejo + + Note repeats + - Arpeggio gate - Portal de Arpejo - - - Arpeggio direction - Direção do Arpejo - - - Arpeggio mode - Modo do Arpejo - - - Up - Para Cima - - - Down - Para Baixo - - - Up and down - Para cima e para baixo - - - Random - Aleatório - - - Free - Livre - - - Sort - Tipo - - - Sync - Sincronização - - - Down and up - Para baixo e para cima + + Cycle steps + + Skip rate + Miss rate - Cycle steps - + + 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 - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Arpegio é uma técnica instrumental (especialmente para instrumentos musicais de cordas pinçadas - Violão, Viola Caipira, Contra-baixo, etc) que consiste em tocar repetidamente uma série de notas. Quando pinçamos mais de uma corda ao mesmo tempo em um violão por exemplo, podemos criar um acorde, no arpegio, podemos tocar as notas de um acorde em tempos diferentes, nunca ao mesmo tempo. Arpegios típicos são os das triades mair e menor, mas é possivel arpejar qualquer acorde que seja possível selecionar. - - + RANGE EXTENSÃO + Arpeggio range: Extensão do arpejo: + octave(s) oitava(s) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Use este botão para escolher a extensão do arpejo em oitavas. O arpejo selecionado será tocado dentro do número de oitavas especificado. - - - TIME - TEMPO - - - Arpeggio time: - Tempo de arpejo: - - - ms - ms - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Use este botão para ajustar o tempo de arpejo em milissegundos. O tempo do arpejar especifica qual longo cada nota do arpejo será tocada. - - - GATE - PORTAL - - - Arpeggio gate: - Portal de arpejo: - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Use este botão para ajustar o portal de arpejo. O Portal de arpejo especifica o quanto deve ser tocado o arpejo. Isto permite que você faça arpejos stacatos bem legais. - - - Chord: - Acorde: - - - Direction: - Direção: - - - Mode: - Modo: - - - SKIP + + REP - Skip rate: + + Note repeats: - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - MISS - - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. + + time(s) + CYCLE + Cycle notes: + note(s) nota(s) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + 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 - Phrygolydian - Frígio + + Phrygian + + Lydian Lídio + Mixolydian Mixolídio + Aeolian Eólio + Locrian Lócrio - Chords - Acordes - - - Chord type - Tipo de acorde - - - Chord range - Extensão do acorde - - + Minor Menor + Chromatic Cromático + Half-Whole Diminished + 5 5 + Phrygian dominant + Persian Persa + + + Chords + Acordes + + + + Chord type + Tipo de acorde + + + + Chord range + Extensão do acorde + InstrumentFunctionNoteStackingView - RANGE - EXTENSÃO - - - Chord range: - Extensão do acorde: - - - octave(s) - oitava(s) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Use este botão para definir a extensão do acorde em oitavas. O acorde selecionado será tocado no número de oitavas especificado. - - + STACKING EMPILHAMENTO + Chord: Acorde: + + + RANGE + EXTENSÃO + + + + Chord range: + Extensão do acorde: + + + + octave(s) + oitava(s) + InstrumentMidiIOView + ENABLE MIDI INPUT HABILITAR ENTRADA MIDI - CHANNEL - CANAL - - - VELOCITY - VELOCITY - - + ENABLE MIDI OUTPUT HABILITAR SAÍDA MIDI - PROGRAM - PROGRAMA + + + 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 - NOTE - NOTA - - + CUSTOM BASE VELOCITY - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + BASE VELOCITY @@ -3137,137 +6365,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView + MASTER PITCH - Enables the use of 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 - LowPass - Passa Baixa + + Low-pass + - HiPass - Passa Alta + + Hi-pass + - BandPass csg - Passa Banda csg + + Band-pass csg + - BandPass czpg - Passa Banda czpg + + Band-pass czpg + + Notch Vale - Allpass - Passa todas + + All-pass + + Moog Moog - 2x LowPass - 2x Passa Baixa + + 2x Low-pass + - RC LowPass 12dB - RC PassaBaixa 12dB + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC PassaBanda 12dB + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC PassaAlta 12dB + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC PassaBaixa 24dB + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC PassaBanda 24dB + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC PassaAlta 24dB + + RC High-pass 24 dB/oct + - Vocal Formant Filter - Filtro de Formante Vocal + + Vocal Formant + + 2x Moog - SV LowPass + + SV Low-pass - SV BandPass + + SV Band-pass - SV HighPass + + SV High-pass + SV Notch + Fast Formant Formato Rápido + Tripole @@ -3275,50 +6537,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView + TARGET OBJETO - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Estas abas contém envelopes. Eles são muito importantes para modificar o som sendo especialmente úteis toda vez que você precisar fazer uma síntese subtrativa. Por exemplo, se você tem um envelope de volume, você pode fazer com que o volume do som varie de forma específica. Se você quiser criar um instrumento virtual onde seu som tem fade de entrada e saída bem suaves (fade no nosso caso é o aumento ou diminuição de volume no começo ou fim de um evento sonoro), isto poderá ser feito colocanto tempos de ataque e relaxamento longos. Outros exemplos seriam fazer um envelope para o panorâmico (som no alto-falante esquerdo ou no direito), para frequência de corte para o filtro que está sendo usado e por aí vai... Apenas pense sobre isso! Você consegue fazer muitos sons legais apenas com uma onda dente-de-serra e alguns envelopes...! - - + FILTER FILTRO - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Aqui você pode selecionar o filtro embutido que você precisar para sua pista de instrumento. Filtros são muito importantes para mudar as características do som. - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Use este botão para modificar a frequência de corte do filtro selecionado. A frequência de corte especifica a frequência na qual o sinal vai ser filtrado. Por exemplo, um filtro Passa Baixa filtra todas as frequências que estiverem depois da frequência de corte. Um filtro PassaAlta filtra todas as frequências que estiverem antes da frequência de corte, e por aí vai... - - - RESO - RESS - - - Resonance: - Ressonância: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Use este botão para modificar o Q/Ressonância para o filtro selecionado. o Q/Ressonância diz o quanto será filtrado das frequências próximas à frequência de corte. - - + FREQ FREQ - cutoff frequency: - frequência de corte: + + Cutoff frequency: + Frequência de corte: + + Hz + Hz + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. @@ -3326,222 +6580,345 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack + + unnamed_track pista_sem_nome - Volume - Volume - - - Panning - Panorâmico - - - Pitch - Altura - - - FX channel - Canal de Efeitos - - - Default preset - Pré configuração padrão - - - With this knob you can set the volume of the opened channel. - Com este botão você pode ajustar o volume do canal aberto. - - + Base note Nota base + + First note + + + + + Last note + Última nota + + + + Volume + Volume + + + + Panning + Panorâmico + + + + Pitch + Altura + + + Pitch range Extensão - Master Pitch + + Mixer channel + Canal de Efeitos + + + + Master pitch + Altura Final + + + + Enable/Disable MIDI CC + + + CC Controller %1 + + + + + + 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 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow + GENERAL SETTINGS AJUSTES GERAIS - Instrument volume - Volume do instrumento + + Volume + Volume + Volume: Volume: + VOL VOL + Panning Panorâmico + Panning: Panorâmico: + PAN PAN + Pitch Altura + Pitch: Altura: + cents centésimos + PITCH ALTURA - FX channel - Canal de Efeitos - - - FX - EFEITOS - - - Save preset - Salvar pré definição - - - XML preset file (*.xpf) - Arquivo de pré definições XML (*.xpf) - - + 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 - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Clique aqui, se deseja salvar as definições de faixa de instrumento atuais em um arquivo predefinido. Você pode carregar essa predefinição ao clicar duas vezes nele no buscador de predefinições. - - - Use these controls to view and edit the next/previous track in the song editor. - Use esses controles para ver e editar a próxima/anterior faixa no editor de som. - - + SAVE SALVAR + Envelope, filter & LFO + Chord stacking & arpeggio + Effects - + Efeitos - MIDI settings - Configurações MIDI + + MIDI + MIDI + Miscellaneous + Miscelânea + + + + Save preset + Salvar pré definição + + + + XML preset file (*.xpf) + Arquivo de pré definições XML (*.xpf) + + + + Plugin + + + + + JackApplicationW + + + NSM applications cannot use abstract or absolute paths - Plugin + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + 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 %1 and %2: - Por favor coloque um novo valor entre %1 e %2: - - + 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 @@ -3549,10 +6926,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlDialog + Link Channels Conectar Canais + Channel Canal @@ -3560,28 +6939,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView + Link channels Conectar canais + Value: Valor: - - Sorry, no help available. - Desculpe, ajuda indisponível. - 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: @@ -3589,18 +6986,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri LeftRightNav + + + Previous Anterior + + + Next Próximo + Previous (%1) Anterior (%1) + Next (%1) Próximo (%1) @@ -3608,30 +7013,37 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 @@ -3639,511 +7051,641 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoControllerDialog + LFO LFO - LFO Controller - Controlador de LFO - - + BASE CENTRO - Base amount: - Ponto de Referência: + + Base: + - todo - O botão "CENTRO" regula o ponto de referência onde o seu oscilador irá variar. Podendo o "CENTRO" variar entre os valores zero e um, o ponto de referência será um valor entre zero e um no qual se iniciará o processo de oscilação do LFO (Oscilador de baixa frequência). + + FREQ + FREQ - SPD - VEL + + LFO frequency: + - LFO-speed: - LFO - Velocidade: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Use este botão para mudar a velocidade do LFO. Quanto maior for este valor, mais rápido oscila o LFO e assim também o efeito a sofrer a modulação. + + AMNT + QNTD + Modulation amount: Quantidade de modulação: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Use este botão para mudar a quantidade de modulação do LFO. Quanto maior for este valor, mais influenciado será o controle conectado (controle de volume ou frequência de corte por exemplo) pelo LFO. - - + PHS DFS + Phase offset: Defasamento: - degrees - graus - - - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Com este botão você pode mudar a posição da fase da onda de LFO. Fase é em que ponto a onda inicia o processo de oscilação, desta maneira você pode definir onde você quer que comece o processo de oscilação. Por exemplo, se você tiver uma onda senoidal com defasamento de 180 graus, ela vai começar para baixo. O mesmo acontece com outras formas de onda, como a dente de serra por exemplo. - - - Click here for a sine-wave. - Clique aqui para usar uma onda senoidal. - - - Click here for a triangle-wave. - Clique aqui para usar uma onda triangular. - - - Click here for a saw-wave. - Clique aqui para usar uma onda dente-de-serra. - - - Click here for a square-wave. - Clique aqui para usar uma onda quadrada. - - - 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. - - - Click here for a user-defined shape. -Double click to pick a file. - Clique aqui para usar uma forma de onda definida manualmente. Dê dois cliques para buscar um arquivo. - - - Click here for a moog saw-wave. + + degrees - AMNT - QNTD + + 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 + - LmmsCore + 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 - What's this? - O que é isso? - - + 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 - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Pressionando este botão você pode mostrar ou esconder o Editor de Arranjo. Com a ajuda do Editor de Arranjo você pode editar os trechos da sua música especificando quando eles serão tocados. Você também pode mover amostras (ex. amostras ou loops de rap ou funk) diretamente para o Editor de Arranjo. - - + + Beat+Bassline Editor Mostrar/esconder Editor de Bases - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Pressionando este botão você pode mostrar ou esconder o Editor de Bases. No Editor de Bases você pode criar as batidas e a linha de baixo para sua base adicionando ou removendo canais, copiando e colando sequências de batidas e/ou sequências de linha de baixo, ou o que mais você quiser. - - + + Piano Roll Mostrar/esconder Editor de Notas MIDI - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Clique aqui para mostrar ou esconder o Editor de Notas MIDI. Com ele você pode editar melodias facilmente. - - + + Automation Editor Mostrar/esconder Editor de Automação - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Clique aqui para mostrar ou esconder o Editor de Automação. Com ele você pode editar os valores dinâmicos de automação facilmente. - - - FX Mixer + + + Mixer Mostrar/esconder Mixer de Efeitos - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Clique aqui para mostrar ou esconder o Mixer de Efeitos. O Mixer de Efeitos é uma poderosa ferramenta para gerenciar os efeitos utilizados na sua música. Você pode inserir efeitos em diferentes canais de efeito. + + Show/hide controller rack + - Project Notes - Mostrar/esconder comentários do projeto - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Clique aqui para mostrar ou esconder a janela com comentários do projeto. Nela você pode escrever comentários e observações sobre o seu projeto. - - - Controller Rack - Mostrar/esconder a Estante de Controladorer + + 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. - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) + + Controller Rack + Mostrar/esconder a Estante de Controladorer - Version %1 - Versão %1 + + Project Notes + Mostrar/esconder comentários do projeto - 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 - - - Volumes - Volumes - - - Undo - Desfazer - - - Redo - Refazer - - - My Projects - Meus Projetos - - - My Samples - Minhas Amostras - - - My Presets - Minhas predefinições - - - My Home - Meu Início - - - My Computer - Meu Computador - - - &File - &Arquivo - - - &Recently Opened Projects - &Projetos Abertos Recentes - - - Save as New &Version - Salvar como Nova &Versão - - - E&xport Tracks... - Exportar Faixas... - - - Online Help - Ajuda Online - - - What's This? - O que é isto? - - - Open Project - Abrir Projeto - - - Save Project - Salvar Projeto - - - 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? + + Fullscreen - 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. - - - - Preparing plugin browser - - - - Preparing file browsers - - - - Root directory - Diretório raiz - - - Loading background artwork - Carregando papel de parede - - - New from template - Novo modelo - - - Save as default template - Salvar como modelo padrão - - - &View - &Ver - - - Toggle metronome - - - - Show/hide Song-Editor - Mostrar/esconder editor de arranjo - - - Show/hide Beat+Bassline Editor - Mostrar/Esconder Editor de Bases - - - Show/hide Piano-Roll - Mostrar/Esconder Piano-Roll - - - Show/hide Automation Editor - Mostrar/Esconder Pista de Automação - - - Show/hide FX Mixer - - - - Show/hide project notes - - - - Show/hide controller rack - - - - Recover session. Please save your work! - - - - 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? - - - - LMMS Project - Projeto LMMS - - - LMMS Project Template - Modelo de Projeto LMMS - - - Overwrite default template? - - - - This will overwrite your current default template. - + + Volume as dBFS + Volume como dBFS + Smooth scroll Rolagem suave + Enable note labels in piano roll - Save project template + + MIDI File (*.mid) + Arquivo MIDI (*.mid) + + + + + untitled + sem título + + + + + Select file for project-export... - Volume as dBFS + + Select directory for writing exported tracks... - Could not open file - Não é possível abrir o arquivo + + Save project + Guardar projeto - 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 saved + Projeto salvo - Export &MIDI... - Exportar &MIDI... + + 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 @@ -4151,21 +7693,44 @@ Please make sure you have write permission to the file and the directory contain 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 @@ -4173,18 +7738,43 @@ Please make sure you have write permission to the file and the directory contain MidiImport + + Setup incomplete Configuração incompleta - You do not have 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 configurou um banco de sons (soundfont) padrão na caixa de diálogo (Editar->Opções). Desta maneira nenhum som será tocado depois de importar um arquivo MIDI. Você pode baixar o banco de sons General MIDI soundfont dentro da caixa de diálogo de opções e tentar novamente. + + 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 @@ -4192,541 +7782,911 @@ Please make sure you have write permission to the file and the directory contain 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 + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + &Arquivo + + + + &Edit + &Editar + + + + &Quit + Sai&r + + + + &Insert Mode + + + + + 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 - Output MIDI program - Saída do programa MIDI - - - Receive MIDI-events - Receber eventos MIDI - - - Send MIDI-events - Enviar eventos MIDI - - + 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 + + Device + Dispositivo MonstroInstrument - Osc 1 Volume - Osc 1 Volume - - - Osc 1 Panning - Panorâmico Osc 1 - - - Osc 1 Coarse detune - Osc 1 Ajuste bruto - - - Osc 1 Fine detune left + + Osc 1 volume - Osc 1 Fine detune right + + Osc 1 panning - Osc 1 Stereo phase offset + + Osc 1 coarse detune - Osc 1 Pulse width + + Osc 1 fine detune left - Osc 1 Sync send on rise + + Osc 1 fine detune right - Osc 1 Sync send on fall + + Osc 1 stereo phase offset - Osc 2 Volume - Osc 2 Volume - - - Osc 2 Panning - Panorâmico Osc 2 - - - Osc 2 Coarse detune + + Osc 1 pulse width - Osc 2 Fine detune left + + Osc 1 sync send on rise - Osc 2 Fine detune right + + Osc 1 sync send on fall - Osc 2 Stereo phase offset + + Osc 2 volume - Osc 2 Waveform + + Osc 2 panning - Osc 2 Sync Hard + + Osc 2 coarse detune - Osc 2 Sync Reverse + + Osc 2 fine detune left - Osc 3 Volume - Osc 3 Volume - - - Osc 3 Panning - Panorâmico Osc 3 - - - Osc 3 Coarse detune + + 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 sub-oscillator mix - Osc 3 Waveform 1 + + Osc 3 waveform 1 - Osc 3 Waveform 2 + + Osc 3 waveform 2 - Osc 3 Sync Hard + + Osc 3 sync hard - Osc 3 Sync Reverse + + Osc 3 Sync reverse - LFO 1 Waveform + + LFO 1 waveform - LFO 1 Attack - LFO 1 Ataque - - - LFO 1 Rate + + LFO 1 attack - LFO 1 Phase + + LFO 1 rate - LFO 2 Waveform + + LFO 1 phase - LFO 2 Attack - LFO 2 Ataque - - - LFO 2 Rate + + LFO 2 waveform - LFO 2 Phase + + LFO 2 attack - Env 1 Pre-delay + + LFO 2 rate - Env 1 Attack + + LFO 2 phase - Env 1 Hold + + Env 1 pre-delay - Env 1 Decay + + Env 1 attack - Env 1 Sustain + + Env 1 hold - Env 1 Release + + Env 1 decay - Env 1 Slope + + Env 1 sustain - Env 2 Pre-delay + + Env 1 release - Env 2 Attack + + Env 1 slope - Env 2 Hold + + Env 2 pre-delay - Env 2 Decay + + Env 2 attack - Env 2 Sustain + + Env 2 hold - Env 2 Release + + Env 2 decay - Env 2 Slope + + Env 2 sustain - Osc2-3 modulation + + Env 2 release + + Env 2 slope + + + + + Osc 2+3 modulation + + + + Selected view Vista selecionada - Vol1-Env1 + + Osc 1 - Vol env 1 - Vol1-Env2 + + Osc 1 - Vol env 2 - Vol1-LFO1 - Vol1-LFO1 - - - Vol1-LFO2 - Vol1-LFO2 - - - Vol2-Env1 + + Osc 1 - Vol LFO 1 - Vol2-Env2 + + Osc 1 - Vol LFO 2 - Vol2-LFO1 - Vol2-LFO1 - - - Vol2-LFO2 - Vol2-LFO2 - - - Vol3-Env1 + + Osc 2 - Vol env 1 - Vol3-Env2 + + Osc 2 - Vol env 2 - Vol3-LFO1 - Vol3-LFO1 - - - Vol3-LFO2 - Vol3-LFO2 - - - Phs1-Env1 + + Osc 2 - Vol LFO 1 - Phs1-Env2 + + Osc 2 - Vol LFO 2 - Phs1-LFO1 + + Osc 3 - Vol env 1 - Phs1-LFO2 + + Osc 3 - Vol env 2 - Phs2-Env1 + + Osc 3 - Vol LFO 1 - Phs2-Env2 + + Osc 3 - Vol LFO 2 - Phs2-LFO1 + + Osc 1 - Phs env 1 - Phs2-LFO2 + + Osc 1 - Phs env 2 - Phs3-Env1 + + Osc 1 - Phs LFO 1 - Phs3-Env2 + + Osc 1 - Phs LFO 2 - Phs3-LFO1 + + Osc 2 - Phs env 1 - Phs3-LFO2 + + Osc 2 - Phs env 2 - Pit1-Env1 + + Osc 2 - Phs LFO 1 - Pit1-Env2 + + Osc 2 - Phs LFO 2 - Pit1-LFO1 + + Osc 3 - Phs env 1 - Pit1-LFO2 + + Osc 3 - Phs env 2 - Pit2-Env1 + + Osc 3 - Phs LFO 1 - Pit2-Env2 + + Osc 3 - Phs LFO 2 - Pit2-LFO1 + + Osc 1 - Pit env 1 - Pit2-LFO2 + + Osc 1 - Pit env 2 - Pit3-Env1 + + Osc 1 - Pit LFO 1 - Pit3-Env2 + + Osc 1 - Pit LFO 2 - Pit3-LFO1 + + Osc 2 - Pit env 1 - Pit3-LFO2 + + Osc 2 - Pit env 2 - PW1-Env1 + + Osc 2 - Pit LFO 1 - PW1-Env2 + + Osc 2 - Pit LFO 2 - PW1-LFO1 + + Osc 3 - Pit env 1 - PW1-LFO2 + + Osc 3 - Pit env 2 - Sub3-Env1 + + Osc 3 - Pit LFO 1 - Sub3-Env2 + + Osc 3 - Pit LFO 2 - Sub3-LFO1 + + Osc 1 - PW env 1 - Sub3-LFO2 + + 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 @@ -4734,278 +8694,240 @@ Please make sure you have write permission to the file and the directory contain MonstroView + Operators view Visão do operador - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - + Matrix view Ver matriz - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - + + + Volume Volume + + + Panning Panorâmico + + + Coarse detune + + + semitones semitons - Finetune left + + + Fine tune left + + + + cents - Finetune right + + + 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 @@ -5013,117 +8935,145 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator MultitapEchoControlDialog + Length Comprimento + Step length: + Dry Seco - Dry Gain: - Ganho seco: + + Dry gain: + + Stages Estágios - Lowpass stages: + + Low-pass stages: + Swap inputs - Swap left and right input channel for reflections + + Swap left and right input channels for reflections NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune - Channel 1 Volume - Canal 1 Volume + + Channel 1 volume + Canal 1 volume - Channel 1 Envelope length + + Channel 1 envelope length - Channel 1 Duty cycle + + Channel 1 duty cycle - Channel 1 Sweep amount + + Channel 1 sweep amount - Channel 1 Sweep rate + + Channel 1 sweep rate + Channel 2 Coarse detune + Channel 2 Volume Canal 2 Volume - Channel 2 Envelope length + + Channel 2 envelope length - Channel 2 Duty cycle + + Channel 2 duty cycle - Channel 2 Sweep amount + + Channel 2 sweep amount - Channel 2 Sweep rate + + Channel 2 sweep rate - Channel 3 Coarse detune + + Channel 3 coarse detune - Channel 3 Volume - Canal 3 Volume + + Channel 3 volume + Canal 3 volume - Channel 4 Volume - Canal 4 Volume + + Channel 4 volume + Canal 4 volume - Channel 4 Envelope length + + Channel 4 envelope length - Channel 4 Noise frequency + + Channel 4 noise frequency - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep + Master volume Volume Final + Vibrato Vibrato @@ -5131,196 +9081,447 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 Mestre + + 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 volume - Volume Osc %1 - - - Osc %1 panning - Panorâmico Osc %1 - - - Osc %1 coarse detuning - Ajuste bruto Osc %1 - - - Osc %1 fine detuning left - Ajuste fino esquerdo 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 - - + 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 + Bank Banco + Program selector + Patch Programação + Name Nome + OK OK + Cancel Cancelar @@ -5328,77 +9529,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - Abrir outro patch - - - Click here to open another patch-file. Loop and Tune settings are not reset. - Clique aqui para abrir outro aquivo com patch. Configurações de Loop e Afinação não serão perdidas. + + Open patch + + Loop Loop + Loop mode Modo de loop - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Aqui você pode ligar ou desligar o modo de Loop. Se ligado, PartMan irá utilizar a informação disponível no arquivo para loop. - - + Tune Afinar + Tune mode Modo de afinação - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Aqui você pode ligar ou desligar o Modo de afinação. Se ligado, PatMan irá afinar a sua amostra de acordo com a frequência da nota. - - + No file selected Nenhum arquivo selecionado + Open patch file Abrir arquivo de patch + Patch-Files (*.pat) Arquivos de Patch (*.pat) - PatternView + 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 @@ -5406,14 +9615,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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. @@ -5421,10 +9633,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK Pico + LFO Controller Controlador de LFO @@ -5432,327 +9646,519 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog + BASE BASE - Base amount: - Quantidade de base: - - - Modulation amount: - Quantidade de modulação: - - - Attack: - Ataque: - - - Release: - Relaxamento: + + Base: + + AMNT QNTD + + Modulation amount: + Quantidade de modulação: + + + MULT MULT - Amount Multiplicator: - Multiplicador de quantidade: + + Amount multiplicator: + + ATCK ATQU + + Attack: + Ataque: + + + DCAY DCAI + + Release: + Relaxamento: + + + + TRSH + + + + Treshold: - TRSH + + Mute output + Deixar saída muda + + + + Absolute value PeakControllerEffectControls + Base value Valor base + Modulation amount Quantidade de modulação - Mute output - Deixar saída muda - - + Attack Ataque + Release Relaxamento - Abs Value - Valor Abs - - - Amount Multiplicator - Multiplicador de quantidade - - + Treshold + + + Mute output + Deixar saída muda + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - Por favor abra um a sequência com um duplo clique sobre ela! - - - Last note - Última nota - - - Note lock - Travar nota - - + Note Velocity Volume da nota + Note Panning Panorâmico da nota + Mark/unmark current semitone Marcar/desmarcar o semitom atual - Mark current scale - Marcar a escala atual - - - Mark current chord - Marcar o acorde atual - - - Unmark all - Desmarcar tudo - - - No scale - Sem escala - - - No chord - Sem acorde - - - Velocity: %1% - Velocidade: %1% - - - Panning: %1% left - Panorâmico: %1% Esquerda - - - Panning: %1% right - Panorâmico: %1% Direita - - - Panning: center - Panorâmico: Centro - - - Please enter a new value between %1 and %2: - Por favor coloque um valor entre %1 e %2: - - + 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 pattern (Space) + + 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 - Stop playing of current pattern (Space) + + 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) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - - - - Draw mode (Shift+D) - Desenhar modo (Shift+D) - - - Erase mode (Shift+E) - Apagar modo (Shift+E) - - - Select mode (Shift+S) - Selecionar modo (Shift+S) - - - Detune mode (Shift+T) - Modo de desafinação (Shift+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - Cortar notas selecionadas (%1+X) - - - Copy selected notes (%1+C) - Copiar notas selecionadas (%1+C) - - - Paste notes from clipboard (%1+V) - Cole notas na área de transferência (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Clique aqui e os valores selecionados vão ser cortados na área de transferência. Você pode colar eles em qualquer padrão clicando no botão colar. - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Clique aqui e os valores selecionados vão ser copiados na área de transferência. Você pode colar eles em qualquer padrão clicando no botão colar. - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Clique aqui e os valores da área de transferência serão colados na primeira medida visível. - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - - - + 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 pattern + + + Piano-Roll - no clip - Quantize - Quantizar + + + 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"! @@ -5760,221 +10166,1293 @@ Motivo: "%2" 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. - Instrument Plugins + + no description + sem descrição + + + + 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 + Sintetizador de formas de onda customizáveis + + + + An oversampling bitcrusher + + + + + Carla Patchbay Instrument + + + + + Carla Rack Instrument + Instrumento do Rack Carla + + + + 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 + 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 + + + + + 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 + + + + 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 + Filtro para importação de arquivos MIDI para o LMMS + + + + Monstrous 3-oscillator synth with modulation matrix + + + + + A multitap echo delay plugin + + + + + A NES-like synthesizer + + + + + 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 + + + + + Player for SoundFont files + Tocador de arquivos de SounFont + + + + 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. + + + + + 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 + + + + + A stereo field visualizer. + + + + + 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. + + + + + 4-oscillator modulatable wavetable synth + + + + + plugin for waveshaping + + + + + Mathematical expression parser + + + + + Embedded ZynAddSubFX + Poderoso sintetizador ZynAddSubFx embutido no LMMS + + + + PluginDatabaseW + + + Carla - Add New + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + 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 + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + Controle + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Opções + + + + 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: + Tipo: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: PluginFactory + Plugin not found. Plugin não achado. + 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 + Fechar + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + Liga/Desliga + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - 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... - - + 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-File (*.wav) - Arquivo WAV (*.wav) - - - Compressed OGG-File (*.ogg) - Arquivo OGG compactado (*.ogg) - - - FLAC-File (*.flac) + + WAV (*.wav) - Compressed MP3-File (*.mp3) + + FLAC (*.flac) + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QObject + + + Reload Plugin + + + + + Show GUI + Mostrar GUI + + + + Help + Ajuda + 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 - File: %1 - Arquivo: %1 + + &Recently Opened Projects + &Projetos Abertos Recentes RenameDialog + Rename... Renomear... @@ -5982,714 +11460,1605 @@ Motivo: "%2" ReverbSCControlDialog + Input Entradas - Input Gain: - Ganho da entrada: + + Input gain: + Ganho de entrada: + Size Tamanho + Size: Tamanho: + Color Cor + Color: Cor: + Output Saídas - Output Gain: + + Output gain: Ganho de saída: ReverbSCControls - Input Gain - + + Input gain + Ganho de entrada + Size Tamanho + Color Cor - Output Gain + + Output gain + Ganho de saída + + + + SaControls + + + Pause + Pausar + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + Estéreo + + + + 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 + Grave + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + SaControlsDialog + + + 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 SampleBuffer - Open audio file - Abrir arquivo de áudio - - - 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) - - - 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) - - + Fail to open file + Audio files are limited to %1 MB in size and %2 minutes of playing time - - - SampleTCOView - double-click to select sample - Duplo clique para selecionar amostra + + 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 - Sample track - Áudio Amostras - - + Volume Volume + Panning Panorâmico + + + Mixer channel + Canal de Efeitos + + + + + Sample track + Áudio Amostras + SampleTrackView + 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) + + SetupDialog - Setup LMMS - Configurar LMMS - - - General settings - Configurações gerais - - - BUFFER SIZE + + Reset to default value - Reset to default-value - Reiniciar para valor padrão - - - MISC + + Use built-in NaN handler + + Settings + Opções + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + Enable tooltips Ativar Dicas - Show restart warning after changing settings + + Enable master oscilloscope by default - Compress project files per default + + Enable all note labels in piano roll - One instrument track window mode + + Enable compact track buttons - HQ-mode for output audio-device + + Enable one instrument-track-window mode - Compact track buttons + + 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 + 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 - Enable note labels in piano roll - - - - Enable waveform display by default - - - + Keep effects running even without input - Create backup file when saving a project + + + Audio + Áudio + + + + Audio interface - LANGUAGE - LINGUAGEM + + HQ mode for output audio device + - Paths - Caminhos + + Buffer size + + + + MIDI + MIDI + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + LMMS working directory Diretório de trabalho LMMS - VST-plugin directory - Diretório de VST-plugin + + VST plugins directory + + + LADSPA plugins directories + + + + + SF2 directory + Diretório SF2 + + + + Default SF2 + + + + + GIG directory + Diretório GIG + + + + Theme directory + + + + Background artwork - STK rawwave directory + + Some changes require restarting. - Default Soundfont File - Arquivo padrão de Soundfont - - - Performance settings - Configuração de Performance - - - UI effects vs. performance + + Autosave interval: %1 - Smooth scroll in Song Editor + + Choose the LMMS working directory - Show playback cursor in AudioFileProcessor + + Choose your VST plugins directory - Audio settings - Configurações de áudio + + Choose your LADSPA plugins directory + - AUDIO INTERFACE - INTERFACE DE ÁUDIO + + Choose your default SF2 + - MIDI settings - Configurações MIDI + + Choose your theme directory + - MIDI INTERFACE - INTERFACE DO MIDI + + Choose your background picture + + + + Paths + Caminhos + + + OK OK + Cancel Cancelar - Restart LMMS - Reiniciar LMMS - - - Please note that most changes won't take effect until you restart LMMS! - - - + Frames: %1 Latency: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - Escolha o diretório de trabalho LMMS - - - Choose your VST-plugin directory - Escolha seu diretório VST-plugin - - - Choose artwork-theme directory - - - - Choose LADSPA plugin directory - Escolha o diretório de plugin LADSPA - - - Choose STK rawwave directory - - - - Choose default SoundFont - Escolha o Banco de som padrão - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - - - - Directories - Diretórios - - - Themes directory - Diretório de temas - - - GIG directory - Diretório GIG - - - SF2 directory - Diretório SF2 - - - LADSPA plugin directories - Diretórios de plugin LADSPA - - - Auto save - Auto salvar - - + Choose your GIG directory Escolha seu diretório GIG + Choose your SF2 directory Escolha seu diretório SF2 + minutes minutos + minute minuto - Display volume as dBFS - - - - Enable auto-save - - - - Allow auto-save while playing - - - + Disabled Desativado + + + SidInstrument - Auto-save interval: %1 + + 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 - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + 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 + + + Close + Fechar + Song + Tempo Andamento + Master volume Volume Final + Master pitch Altura Final - 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 - - - Empty project - Projeto vazio - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! + + Aborting project load - Select directory for writing exported tracks... + + Project file contains local paths to plugins, which could be used to run malicious code. - untitled - sem título - - - Select file for project-export... + + Can't load project: Project file contains local paths to plugins. - The following errors occured while loading: - - - - MIDI File (*.mid) - Arquivo MIDI (*.mid) - - + LMMS Error report Reportar erro LMMS - Save project - Guardar projeto + + (repeated %1 times) + + + + + The following errors occurred while loading: + SongEditor + Could not open file Não é possível abrir o arquivo - Could not write file - Não é possivel salvar 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 + + + + 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. - Tempo - Andamento - - - TEMPO/BPM - ANDAMENTO/BPM - - - tempo of song - andamento da música - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - o andamento de uma música é especificado em batidas por minuto (BPM). Se voc6e precisar mudar o andamento de sua música, mude esse valor. Todo compasso tem 4 batidas, logo o andamento em BPM especificara a quantidade de batidas dividida por 4. - - - High quality mode - Modo de alta qualidade - - - Master volume - Volume Final - - - master volume - volume final - - - Master pitch - Altura Final - - - master pitch - altura final - - - Value: %1% - Valor: %1% - - - Value: %1 semitones - Valor: %1 semitons - - - 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. - Não foi possível abrir %1 para escrita. Provavelmente você não tem permissão para escrita deste arquivo. Por favor, certifique-se de ter permissão para escrever nesse arquivo e tente novamente. - - - template - modelo - - - project - projeto - - + Version difference - This %1 was created with LMMS %2. + + template + modelo + + + + project + projeto + + + + Tempo + Andamento + + + + TEMPO + + + Tempo in BPM + + + + + High quality mode + Modo de alta qualidade + + + + + + Master volume + Volume Final + + + + + + Master pitch + Altura Final + + + + Value: %1% + Valor: %1% + + + + Value: %1 semitones + Valor: %1 semitons + SongEditorWindow + Song-Editor Editor de Som + Play song (Space) Tocar som (Espaço) + Record samples from Audio-device + Record samples from Audio-device while playing song or BB track + Stop song (Space) Parar som (Espaço) - Add beat/bassline - Add linha de base - - - Add sample-track - Adicionar faixa de amostra - - - Add automation-track - Add automação de faixa - - - Draw mode - - - - Edit mode (select and move) - Editar modo (selecionar e mover) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - + Track actions + + Add beat/bassline + Add linha de base + + + + Add sample-track + Adicionar faixa de amostra + + + + Add automation-track + Add automação de faixa + + + Edit actions Editar ações + + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum - Espectro linear + + Horizontal zooming + Zoom horizontal - Linear Y axis + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - Espectro linear + + Hint + Sugestão - Linear Y axis + + Move recording curser using <Left/Right> arrows - - Channel mode - Modo de Canal - SubWindow + Close Fechar + Maximize Maximizar + Restore Restaurar @@ -6697,81 +13066,110 @@ Remember to also save your project manually. You can choose to disable saving wh TabWidget + + Settings for %1 Opções para %1 + + TemplatesMenu + + + New from template + Novo modelo + + TempoSyncKnob + + Tempo Sync Sincronia + No Sync Sem Sincronia + 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 + 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 Half Note Sincronizado com Meia Nota + Synced to Quarter Note Sincronizado com 1/4 de Nota + Synced to 8th Note Sincronizado com a 8ª Nota + Synced to 16th Note Sincronizado com a 16ª Nota + Synced to 32nd Note Sincronizado com a 32ª Nota @@ -6779,30 +13177,37 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units - clique para mudar as unidades de tempo + + Time units + + MIN MIN + SEC SEC + MSEC + BAR + BEAT + TICK @@ -6810,45 +13215,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - Enable/disable auto-scrolling + + Auto scrolling - Enable/disable loop-points + + Loop points - After stopping go back to begin + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - - Track + Mute Mudo + Solo Solo @@ -6856,305 +13266,492 @@ Remember to also save your project manually. You can choose to disable saving wh TrackContainer + 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... - Importing MIDI-file... - Importando arquivo MIDI... + + Loading cancelled + + + Project loading was cancelled. + + + + Loading Track %1 (%2/Total %3) + + + Importing MIDI-file... + Importando arquivo MIDI... + - TrackContentObject + Clip + Mute Mudo - TrackContentObjectView + ClipView + Current position Posição atual - Hint - Sugestão - - - Press <%1> and drag to make a copy. - - - + Current length - Press <%1> for free resizing. - - - + + %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 + + + Paste + Colar + TrackOperationsWidget - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Actions for this track - Ações para esta faixa + + Actions + + + Mute Mudo + + Solo Solo - Mute this track - Deixar esta faixa muda + + 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 Desmarcar esta faixa - FX %1: %2 + + Channel %1: %2 FX %1: %2 + + Assign to new mixer Channel + Atribuir novo Canal FX + + + Turn all recording on + Turn all recording off - Assign to new FX Channel - Atribuir novo Canal FX + + Change color + Mudar cor + + + + Reset color to default + Reiniciar para a cor padrão + + + + Set random color + + + + + Clear clip colors + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 - Use o modulador de fase para modular o oscilador 2 com o oscilador 1 + + Modulate phase of oscillator 1 by oscillator 2 + - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Use o modulador de amplitude para modular o oscilador 2 com o oscilador 1 + + Modulate amplitude of oscillator 1 by oscillator 2 + - Mix output of oscillator 1 & 2 - Misture as saídas do oscilador 1 e 2 + + Mix output of oscillators 1 & 2 + + Synchronize oscillator 1 with oscillator 2 Sincronize o oscilador 1 com o oscilador 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Use o modulador de frequência para modular o oscilador 2 com o oscilador 1 + + Modulate frequency of oscillator 1 by oscillator 2 + - Use phase modulation for modulating oscillator 2 with oscillator 3 - Use o modulador de fase para modular o oscilador 3 com o oscilador 2 + + Modulate phase of oscillator 2 by oscillator 3 + - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Use o modulador de amplitude para modular o oscilador 3 com o oscilador 2 + + Modulate amplitude of oscillator 2 by oscillator 3 + - Mix output of oscillator 2 & 3 - Misture as saídas do oscilador 2 e 3 + + Mix output of oscillators 2 & 3 + + Synchronize oscillator 2 with oscillator 3 Sincronize o oscilador 2 com o oscilador 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Use o modulador de frequência para modular o oscilador 3 com o oscilador 2 + + Modulate frequency of oscillator 2 by oscillator 3 + + Osc %1 volume: Volume Osc %1: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Com este botão você pode ajustar o volume do oscilador %1. Quando você seleciona o valor 0, o oscilador é desligado. Com outros valores você vai escutar o oscilador tão alto quanto você o ajustar. - - + Osc %1 panning: Panorâmico Osc %1: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Com este botão você pode ajustar o panning do oscilador %1. O valor -100 significa 100% à esquerda e 100 move a saida do oscilador para a direita. - - + Osc %1 coarse detuning: Ajuste bruto Osc %1: + semitones semitons - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Com este botão você pode modificar Ajuste bruto do oscilador %1. Você pode descer o tom do oscilador 24 semitons (2 oitavas) para cima e para baixo. Isto é útil para criar sons com um acorde. - - + Osc %1 fine detuning left: Ajuste fino esquerdo Osc %1: + + cents centésimos - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Com este botão você pode manipular o Ajuste fino do oscilador %1 para o canal esquerdo. O Ajuste fino varia entre -100 centésimos e +100 centésimos. Isto é útil para criar sons 'gordos'. - - + Osc %1 fine detuning right: Ajuste fino direito %1: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Com este botão você pode modificar o ajuste fino do oscilador %1 para o canal direito. O ajuste fino varia entre -100 centésimos e +100 centésimos. Isto é útil para criar sons 'gordos'. - - + Osc %1 phase-offset: Defasamento Osc %1: + + degrees graus - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Com este botão você pode ajustar o defasamento do oscilador %1. Isso significa que você pode move o ponto de uma oscilação onde o oscilador começa à oscilar. Por exemplo, se você tem uma onda-seno e tem uma compensação de fase de 180 graus, a onda vai primeiro descer. É o mesmo com onda-quadrada. - - + Osc %1 stereo phase-detuning: Defasamento estéreo Osc %1: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Com este botão você pode ajustar o defasamento estéreo do oscilador %1. O defasador estéreo especifica o tamanho da diferença entre a defasagem entre os canais esquerdo e direito. Isto é muito bom para abrir o som. + + Sine wave + Onda senoidal - Use a sine-wave for current oscillator. - Use uma onda senoidal no oscilador atual. + + Triangle wave + Onda triangular - Use a triangle-wave for current oscillator. - Use uma onda triangular no oscilador atual. + + Saw wave + Onda dente de serra - Use a saw-wave for current oscillator. - Use uma onda dente de serra no oscilador atual. + + Square wave + Onda quadrada - Use a square-wave for current oscillator. - Use uma onda quadrada no oscilador atual. + + Moog-like saw wave + - Use a moog-like saw-wave for current oscillator. - Use uma onda dente de serra moog no oscilador atual. + + Exponential wave + Onda exponencial - Use an exponential wave for current oscillator. - Use uma onda exponencial no oscilador atual. + + White noise + - Use white-noise for current oscillator. - Use ruído branco no oscilador atual. + + User-defined wave + + + + + VecControls + + + Display persistence amount + - Use a user-defined waveform for current oscillator. - Use uma forma de onda definida pelo usuário no oscilador atual. + + 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 Incrementar número da versão + Decrement version number Decrementar número da versão + + Save Options + + + + already exists. Do you want to replace it? @@ -7162,156 +13759,117 @@ Por favor certifique-se que você tem permissões de leitura para o arquivo e pa VestigeInstrumentView - Open other VST-plugin - Abrir outro plugin VST + + + Open VST plugin + - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Clique aqui se você quer abrir outro plugin VST. clicando neste botão, você verá uma caixa da seleção para escolher o arquivo. + + Control VST plugin from LMMS host + - Show/hide GUI - Mostrar/esconder GUI - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Clique aqui para mostrar ou esconder a interface gráfica do usuário (GUI) do plugin VST. - - - Turn off all notes - Desligar todas as notas - - - Open VST-plugin - Abrir plugin VST - - - DLL-files (*.dll) - Arquivos DLL (*.dll) - - - EXE-files (*.exe) - Arquivos EXE (*.exe) - - - No VST-plugin loaded - Nenhum plugin VST carregado - - - Control VST-plugin from LMMS host - Controlar plugin VST a partir do host LMMS - - - Click here, if you want to control VST-plugin from host. - Clique aqui se você precisa controlar o plugin VST por outro host. - - - Open VST-plugin preset - Abrir pré definição de plugin VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Clique aqui se você precisa abrir outro tipo de arquivo de pré definição de plugin VST como: *.fxp, *.fxb. + + Open VST plugin preset + + Previous (-) Anterior (-) - Click here, if you want to switch to another VST-plugin preset program. - Clique aqui se você precisar trocar para outro programa de pré definições de plugin VST. - - + Save preset Salvar pré definição - Click here, if you want to save current VST-plugin preset program. - Clique aqui se você precisa salvar o programa de pré definição do plugin VST. - - + Next (+) Próximo (+) - Click here to select presets that are currently loaded in VST. - Clique aqui para selecionar a pré definição que está sendo carregada no VST. + + 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) + + + + No VST plugin loaded + + + + Preset Pré definição + by por + - VST plugin control - Controle de plugins VST - - VisualizationWidget - - click to enable/disable visualization of master-output - - - - Click to enable - Clique para habilitar - - VstEffectControlDialog + Show/hide Mostrar/esconder - Control VST-plugin from LMMS host - Controlar plugin VST a partir do host LMMS + + Control VST plugin from LMMS host + - Click here, if you want to control VST-plugin from host. - Clique aqui se você deseja controlar o plugin VST por outro host. - - - Open VST-plugin preset - Abrir pré definição de plugin VST - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Clique aqui se você precisa abrir outro tipo de arquivo de pré definição de plugin VST como: *.fxp, *.fxb. + + Open VST plugin preset + + Previous (-) Anterior (-) - Click here, if you want to switch to another VST-plugin preset program. - Clique aqui se você precisar trocar para outro programa de pré definições de plugin VST. - - + Next (+) Próximo (+) - Click here to select presets that are currently loaded in VST. - Clique aqui para selecionar a pré definição que está sendo carregada no VST. - - + Save preset Salvar pré definição - Click here, if you want to save current VST-plugin preset program. - Clique aqui se você precisa salvar o programa de pré definição do plugin VST. - - + + Effect by: Efeito por: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7319,173 +13877,207 @@ Por favor certifique-se que você tem permissões de leitura para o arquivo e pa VstPlugin - Loading plugin - Carregando plugin + + + 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 - Please wait while loading VST plugin... - Por favor aguarde enquanto carrega o plugin VST... + + Loading plugin + Carregando plugin - The VST plugin %1 could not be loaded. - + + 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 @@ -7493,2802 +14085,2251 @@ Por favor certifique-se que você tem permissões de leitura para o arquivo e pa WatsynView - Select oscillator A1 - - - - Select oscillator A2 - - - - Select oscillator B1 - - - - Select oscillator B2 - - - - Mix output of A2 to A1 - - - - Modulate amplitude of A1 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with 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 - - - - Click to load a waveform from a sample file - - - - Phase left - Fase esquerda - - - Click to shift phase by -15 degrees - - - - Phase right - Fase direita - - - Click to shift phase by +15 degrees - - - - Normalize - Normalização - - - Click to normalize - Clique para normalizar - - - Invert - Inverter - - - Click to invert - Clique para inverter - - - Smooth - Suave - - - Click to smooth - Clique para suavizar - - - Sine wave - Onda senoidal - - - Click for sine wave - - - - Triangle wave - Onda triangular - - - Click for triangle wave - - - - Click for saw wave - - - - Square wave - Onda quadrada - - - Click for square wave - - - + + + + Volume Volume + + + + 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 + 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 + + + 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 - Frequência do Filtro + + Filter frequency + - Filter Resonance - Ressonância do Filtro + + Filter resonance + + Bandwidth Largura da Banda - FM Gain - Ganho da FM + + FM gain + - Resonance Center Frequency - Frequência Central de Ressonância + + Resonance center frequency + - Resonance Bandwidth - Banda de Ressonância + + Resonance bandwidth + - Forward MIDI Control Change Events - Próximo evento de mudança de controle MIDI + + Forward MIDI control change events + ZynAddSubFxView - Show GUI - Mostrar GUI - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Clique aqui para mostrar ou esconder a interface do usuário (GUI) do ZynAddSubFX. - - + Portamento: + PORT - Filter Frequency: - Frequência do Filtro: + + Filter frequency: + + FREQ FREQ - Filter Resonance: - Ressonância do Filtro: + + Filter resonance: + + RES + Bandwidth: Largura da Banda: + BW LBnd - FM Gain: - Ganho da FM: + + 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 - Próximo evento de mudança de controle MIDI + + Forward MIDI control changes + + + + + Show GUI + Mostrar GUI - audioFileProcessor + AudioFileProcessor + Amplify Amplificar + Start of sample Início da amostra + End of sample Fim da amostra - Reverse sample - Amostra reversa - - - Stutter - Gaguejar - - + Loopback point + + Reverse sample + Amostra reversa + + + Loop mode Modo de loop - Interpolation mode - + + Stutter + Gaguejar + + Interpolation mode + Modo de interpolação + + + None Nenhum + Linear Linear + Sinc + Sample not found: %1 - bitInvader + BitInvader - Samplelength - Tamanho de amostra + + Sample length + - bitInvaderView + BitInvaderView - Sample Length - Tamanho da Amostra - - - Sine wave - Onda senoidal - - - Triangle wave - Onda triangular - - - Saw wave - Onda dente de serra - - - Square wave - Onda quadrada - - - White noise wave - Ruído branco - - - User defined wave - Onda definida pelo usuário - - - Smooth - Suave - - - Click here to smooth waveform. - Clique aqui para suavizar a forma de onda. - - - Interpolation - Interpolação - - - Normalize - Normalização + + 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. - Click for a sine-wave. - Clique aqui para usar uma onda senoidal. + + + Sine wave + Onda senoidal - Click here for a triangle-wave. - Clique aqui para usar uma onda triangular. + + + Triangle wave + Onda triangular - Click here for a saw-wave. - Clique aqui para usar uma onda dente de serra. + + + Saw wave + Onda dente de serra - Click here for a square-wave. - Clique aqui para usar uma onda quadrada. + + + Square wave + Onda quadrada - Click here for white-noise. - Clique aqui para usar um ruído branco. - - - Click here for a user-defined shape. - Clique aqui para usar uma onda definida pelo usuário. - - - - dynProcControlDialog - - INPUT - ENTRADA - - - Input gain: - Ganho de entrada: - - - OUTPUT - SAÍDA - - - Output gain: - Ganho de saída: - - - ATTACK - ATAQUE - - - Peak attack time: + + + White noise - RELEASE - RELEASE - - - Peak release time: - - - - Reset waveform - - - - Click here to reset the wavegraph back to default + + + User-defined wave + + Smooth waveform - Click here to apply smoothing to wavegraph + + 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: - Increase wavegraph amplitude by 1dB + + RELEASE + LANÇAMENTO + + + + Peak release time: - Click here to increase wavegraph amplitude by 1dB + + + Reset wavegraph - Decrease wavegraph amplitude by 1dB + + + Smooth wavegraph - Click here to decrease wavegraph amplitude by 1dB + + + Increase wavegraph amplitude by 1 dB - Stereomode Maximum + + + 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 - Stereomode Average - + + Stereo mode: average + Modo estéreo: médio + Process based on the average of both stereo channels - Stereomode Unlinked - + + Stereo mode: unlinked + Modo estéreo: desvinculado + Process each stereo channel independently Processo de cada canal estéreo independentemente - dynProcControls + 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 - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - - - - Sine wave - Onda senoidal - - - Click for a sine-wave. - Clique aqui para usar uma onda senoidal. - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - Onda exponencial - - - Click for an exponential wave. - - - - Saw wave - Onda dente de serra - - - Click here for a saw-wave. - Clique aqui para usar uma onda dente de serra. - - - User defined wave - Onda definida pelo usuário - - - Click here for a user-defined shape. - Clique aqui para usar uma onda definida pelo usuário. - - - 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. - - - White noise wave - Ruído branco - - - Click here for white-noise. - Clique aqui para usar um ruído branco. - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - - - - O2 panning: - - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - Assign to: - Atribuir a: - - - New FX Channel - Novo Canal FX - - graphModel + Graph Gráfico - kickerInstrument + KickerInstrument + Start frequency Frequência de partida + End frequency Frequência final - Gain - Ganho - - + Length Comprimento - Distortion Start - Início da distorção - - - Distortion End - Fim da distorção - - - Envelope Slope + + Start distortion + + End distortion + + + + + Gain + Ganho + + + + Envelope slope + + + + Noise Ruído + Click Clique - Frequency Slope + + Frequency slope + Start from note + End to note - kickerInstrumentView + KickerInstrumentView + Start frequency: Frequência de partida: + End frequency: Frequência final: + + Frequency slope: + + + + Gain: Ganho: - Frequency Slope: + + Envelope length: - Envelope Length: - - - - Envelope Slope: + + Envelope slope: + Click: Clique: + Noise: Ruído: - Distortion Start: - Início da distorção: + + Start distortion: + - Distortion End: - Fim da distorção: + + End distortion: + - ladspaBrowserView + LadspaBrowserView + + Available Effects Efeitos Disponíveis + + Unavailable Effects Efeitos Indisponíveis + + Instruments Instrumentos + + Analysis Tools Ferramentas de Análise + + Don't know Sei lá.. - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - Esta caixa de diálogo contém informações de todos os plugins LADSPA do LMMS que estão disponíveis localmente. Os plugins estão divididos em cinco categorias baseadas em uma interpretação do tipo de portas e nomes. - -Efeitos Disponíveis são todos os que podem ser usados pelo LMMS. Para o LMMS usar um efeito, é necessário antes de tudo que ele seja um efeito, ou seja, que ele tenha tanto canais de entrada como tamém canais de saída. O LMMS identifica um canal de entrada como uma porta de informações de áudio com o nome de "entrada". Canais de saída são identificados como "saída". Além disso o efeito deve ter o mesmo número de entradas e saídas, assim como ter capacidade de processamento em tempo real. - -Efeitos Indisponíveis são aqueles que são identificados como efeitos mas, ou não tem o mesmo número de entradas e saídas, ou não são capazes de executar processamento em tempo real. - -Instrumentos são plugins com somente canais de saída identificados. - -Ferramentas de análise são plugins com somente canais de entrada identificados. - -Sei lá.. são plugins que nenhuma entrada ou saída foi identificada. - -Clicando duas vezes com o mouse em qualquer plugin, voc6e terá informações sobre as portas. - - + Type: Tipo: - ladspaDescription + LadspaDescription + Plugins Plugins + Description Descrição - ladspaPortDialog + 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 + 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 + 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 + MalletsInstrument + Hardness Dificuldade + Position Posição - Vibrato Gain - Ganho do Vibrato + + Vibrato gain + - Vibrato Freq - Frequência do Vibrato + + Vibrato frequency + - Stick Mix - Percussa Mix + + Stick mix + + Modulator Modulador + Crossfade Transição - LFO Speed + + LFO speed LFO - Velocidade - LFO Depth - LFO - Profundidade + + LFO depth + + ADSR ADSR + Pressure Pressão + Motion Movimento + Speed Velocidade + Bowed De Arco + Spread Propagação + Marimba Marimba + Vibraphone Vibrafone + Agogo Agogo - Wood1 - Madeira-1 + + Wood 1 + + Reso Resso - Wood2 - Madeira-2 + + Wood 2 + + Beats Batidas - Two Fixed - Duas Fixas + + Two fixed + + Clump - Tubular Bells - Sinos Tubulares + + Tubular bells + - Uniform Bar - Barra Uniforme + + Uniform bar + - Tuned Bar - Barra Afinada + + Tuned bar + + Glass Taça - Tibetan Bowl - Tigelas Tibetanas + + Tibetan bowl + - malletsInstrumentView + MalletsInstrumentView + Instrument Instrumento + Spread Propagação + Spread: Propagação: - Hardness - Dificuldade - - - Hardness: - Dificuldade: - - - Position - Posição - - - Position: - Posição: - - - Vib Gain - Ganho Vibr - - - Vib Gain: - Ganho Vibracional: - - - Vib Freq - Freq Vibr - - - Vib Freq: - Frequência de Vibração: - - - Stick Mix - Percussa Mix - - - Stick Mix: - Mistura da Percussão: - - - Modulator - Modulador - - - Modulator: - Modulador: - - - Crossfade - Transição - - - Crossfade: - Transição: - - - LFO Speed - LFO - Velocidade - - - LFO Speed: - Velocidade do LFO: - - - LFO Depth - Prondudade do LFO - - - LFO Depth: - Profundidade do LFO: - - - ADSR - ADSR - - - ADSR: - - - - Pressure - Pressão - - - Pressure: - Pressão: - - - Speed - Velocidade - - - Speed: - Velocidade: - - + 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 + ManageVSTEffectView + - VST parameter control - Controle de parâmetros de VST's - VST Sync - Sincronização VST - - - Click here if you want to synchronize all parameters with VST plugin. - Clique aqui para sincronizar todos os parâmetros com o plugin VST. + + VST sync + + + Automated Automatizado - Click here if you want to display automated parameters only. - Clique aqui para exibir somente os parâmetros automatizados. - - + Close Fechar - - Close VST effect knob-controller window. - Fechar janela de botões de controle do efeito VST. - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - Controle de plugins VST + VST Sync Sincronização VST - Click here if you want to synchronize all parameters with VST plugin. - Clique aqui para sincronizar todos os parâmetros com o plugin VST. - - + + Automated Automatizado - Click here if you want to display automated parameters only. - Clique aqui para exibir somente os parâmetros automatizados. - - + Close Fechar - - Close VST plugin knob-controller window. - Fechar janela de botões de controle do efeito VST. - - opl2instrument - - Patch - Programação - - - Op 1 Attack - Op 1 Ataque - - - Op 1 Decay - Op 1 Decaimento - - - Op 1 Sustain - Op 1 Sustentação - - - Op 1 Release - Op 1 Relaxamento - - - Op 1 Level - Op 1 Nível - - - Op 1 Level Scaling - Op 1 Nível Escalar - - - Op 1 Frequency Multiple - Op 1 Múltiplo da frequência - - - Op 1 Feedback - Op 1 Resposta - - - Op 1 Key Scaling Rate - Op 1 Mudança de Tom da Escala - - - Op 1 Percussive Envelope - Op 1 Envelope Percussivo - - - Op 1 Tremolo - - - - Op 1 Vibrato - - - - Op 1 Waveform - Op 1 Forma de Onda - - - Op 2 Attack - Op 2 Ataque - - - Op 2 Decay - Op 2 Decaimento - - - Op 2 Sustain - Op 2 Sustentação - - - Op 2 Release - Op 2 Relaxamento - - - Op 2 Level - Op 2 Nível - - - Op 2 Level Scaling - Op 2 Nível Escalar - - - Op 2 Frequency Multiple - Op 2 Múltiplo da frequência - - - Op 2 Key Scaling Rate - Op 2 Mudança de Tom da Escala - - - Op 2 Percussive Envelope - Op 2 Envelope Percussivo - - - Op 2 Tremolo - Op 2 Relaxamento - - - Op 2 Vibrato - - - - Op 2 Waveform - Op 2 Forma de Onda - - - FM - FM - - - Vibrato Depth - Profundidade do Vibrato - - - Tremolo Depth - Profundidade do Tremolo - - - - opl2instrumentView - - Attack - Ataque - - - Decay - Decaimento - - - Release - Relaxamento - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion Distorção + Volume Volume - organicInstrumentView + 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: - cents - centésimos - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - - + Osc %1 stereo detuning + + cents + centésimos + + + Osc %1 harmonic: - FreeBoyInstrument - - Sweep time - Varredura temporal - - - Sweep direction - Direção da varredura - - - Sweep RtShift amount - Quantidade da varredura RtShift - - - Wave Pattern Duty - Trabalho da Frente de Onda - - - 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 - - - Right Output level - Nível de Saída Direito - - - Left Output level - Nível de Saída Esquerdo - - - 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 - - - Shift Register width - Desconsiderar Tamanho do registro - - - - FreeBoyInstrumentView - - Sweep Time: - Varredura temporal: - - - Sweep Time - Varredura temporal - - - Sweep RtShift amount: - Quantidade da varredura RtShift: - - - Sweep RtShift amount - Quantidade da varredura RtShift - - - Wave pattern duty: - Trabalho da Frente de Onda: - - - Wave Pattern Duty - Trabalho da Frente de Onda - - - Square Channel 1 Volume: - Canal 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 - - - Wave pattern duty - Trabalho da frente de onda - - - Square Channel 2 Volume: - Canal 2 Volume: - - - Square Channel 2 Volume - Canal 2 Volume - - - Wave Channel Volume: - Canal da Onda - Volume: - - - Wave Channel Volume - Canal da Onda - Volume - - - Noise Channel Volume: - Canal de Ruído - Volume: - - - Noise Channel Volume - Canal de Ruído - Volume - - - SO1 Volume (Right): - SO1 Volume (Esquerdo): - - - SO1 Volume (Right) - SO1 Volume (Esquerdo) - - - SO2 Volume (Left): - SO2 Volume (Direito): - - - SO2 Volume (Left) - SO2 Volume (Direito) - - - 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 - Desconsiderar Tamanho do registro - - - Channel1 to SO1 (Right) - Canal 1 para SO1 (Direita) - - - Channel2 to SO1 (Right) - Canal 2 para SO1 (Direita) - - - Channel3 to SO1 (Right) - Canal 3 para SO1 (Direita) - - - Channel4 to SO1 (Right) - Canal 4 para SO1 (Direita) - - - Channel1 to SO2 (Left) - Canal 1 para SO2 (Esquerda) - - - Channel2 to SO2 (Left) - Canal 2 para SO2 (Esquerda) - - - Channel3 to SO2 (Left) - Canal 3 para SO2 (Esquerda) - - - Channel4 to SO2 (Left) - Canal 4 para SO2 (Esquerda) - - - Wave Pattern - Frente de onda - - - The amount of increase or decrease in frequency - A quantidade de acréscimo e decréscimo em frequência - - - The rate at which increase or decrease in frequency occurs - A taxa na qual cresce ou decresce a frequência - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - O ciclo de trabalho é a razão da duração (tempo) do sinal LIGADO versus o total do período do sinal. - - - Square Channel 1 Volume - Canal 1 Volume - - - The delay between step change - O atraso entre cada passo de mudança - - - Draw the wave here - Desenhe a onda aqui - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank Banco + Program selector + Patch Programação + Name Nome + OK OK + Cancel Cancelar - pluginBrowser - - no description - sem descrição - - - Incomplete monophonic imitation tb303 - Imitação monofônica incompleta de tb303 - - - Plugin for freely manipulating stereo output - Plugin para livre manipulação das saídas estéreo - - - Plugin for controlling knobs with sound peaks - Plugin para controlar botões com os picos sonoros - - - 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 - - - List installed LADSPA plugins - Lista dos plugins LADSPA instalados - - - GUS-compatible patch instrument - Pré definição de instrumento compatível com GUS (Gravis Ultrasound) - - - Additive Synthesizer for organ-like sounds - Síntetizador de Síntese Aditiva para sons tipo de órgão - - - Tuneful things to bang on - Instrumentos percussivos com afinação para você usar - - - 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 LADSPA-effects inside LMMS. - plugin para uso de efeitos LADSPA arbitrários dentro do LMMS. - - - Filter for importing MIDI-files into LMMS - Filtro para importação de arquivos MIDI para o 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. - - - Player for SoundFont files - Tocador de arquivos de SounFont - - - Emulation of GameBoy (TM) APU - Emulação do GameBoy (TM) APU - - - Customizable wavetable synthesizer - Sintetizador de formas de onda customizáveis - - - Embedded ZynAddSubFX - Poderoso sintetizador ZynAddSubFx embutido no LMMS - - - 2-operator FM Synth - Dois Operadores de Síntese FM - - - Filter for importing Hydrogen files into LMMS - Filtro para importação de arquivos do Hydrogen para o LMMS - - - LMMS port of sfxr - sfxr para LMMS - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - - - - Carla Rack Instrument - Instrumento do Rack Carla - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - - - - plugin for using arbitrary VST effects inside LMMS. - - - - Graphical spectrum analyzer plugin - - - - A NES-like synthesizer - - - - A native delay plugin - - - - Player for GIG files - Tocador para arquivos GIG - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - - - - Reverb algorithm by Sean Costello - - - - Mathematical expression parser - - - - - sf2Instrument + Sf2Instrument + Bank Banco + Patch Programação + Gain Ganho + Reverb Reverberação - Reverb Roomsize - Tamanho da sala em Reverberação + + Reverb room size + - Reverb Damping - Absorção da Reverberação + + Reverb damping + - Reverb Width - Tamanho da Reverberação + + Reverb width + - Reverb Level - Nível de Reverberação + + Reverb level + + Chorus Chorus - Chorus Lines - Linhas de Chorus + + Chorus voices + - Chorus Level - Nível de Chorus + + Chorus level + - Chorus Speed - Velocidade do Chorus + + Chorus speed + - Chorus Depth - Profundidade do Chorus + + Chorus depth + + A soundfont %1 could not be loaded. - sf2InstrumentView - - Open other SoundFont file - Abrir outro arquivo SoundFont - - - Click here to open another SF2 file - Clique aqui para abrir outro arquivo SF2 - - - Choose the patch - Escolher o patch - - - Gain - Ganho - - - Apply reverb (if supported) - Aplicar reverberação (se suportado) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Este botão ativa o efeito de reverberação. Ele é útil para efeitos legais, mas só funciona se o arquivo tiver suporte a ele. - - - Reverb Roomsize: - Tamanho da sala em Reverbaração: - - - Reverb Damping: - Absorção da Reverberação: - - - Reverb Width: - Tamanho da Reverberação: - - - Reverb Level: - Nível de Reverberação: - - - Apply chorus (if supported) - Aplicar chorus (se suportado) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Este botão ativa o efeito de chorus. Ele é útil para efeitos de eco legais, mas só funciona se o arquivo tiver suporte a ele. - - - Chorus Lines: - Linhas de Chorus: - - - Chorus Level: - Nível de Chorus: - - - Chorus Speed: - Velocidade do Chorus: - - - Chorus Depth: - Profundidade do Chorus: - + Sf2InstrumentView + + Open SoundFont file Abrir o arquivo SoundFont - SoundFont2 Files (*.sf2) - Arquivos SoundFont2 (*sf2) - - - - sfxrInstrument - - Wave Form - Forma de Onda - - - - sidInstrument - - Cutoff - 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 - Filtro Passa Alta - - - Band-Pass filter - Filtro Passa Banda - - - Low-Pass filter - Filtro Passa Baixa - - - Voice3 Off - Voz3 Desligada - - - MOS6581 SID + + Choose patch - MOS8580 SID + + Gain: + Ganho: + + + + Apply reverb (if supported) + Aplicar reverberação (se suportado) + + + + Room size: - Attack: - Ataque: + + Damping: + - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - A taxa de ataque determina o quão rápido a saída da Voz %1 sai do zaro para o pico de amplitude. + + Width: + Largura: - Decay: - Decaimento: + + + Level: + - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - O Decaimento determina o quão rápido a saída vai cair do pico de amplitude até o nível de sustentação. + + Apply chorus (if supported) + Aplicar chorus (se suportado) - Sustain: - Sustentação: + + Voices: + - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - A saída da Voz %1 irá permanecer no nível de Sustentação enquanto a nota estiver acionada. + + Speed: + Velocidade: - Release: - Relaxamento: + + Depth: + Precisão: - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - A saída da Voz %1 irá da amplitude do nível Sustentação até a amplitude zero na razão selecionada no Relaxamento. - - - Pulse Width: - Tamanho do Pulso: - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - A resolução de Tamanho do Pulso permite que os movimentos sejam suaves de modo que não sejam percebidas mudanças bruscas. O Pulso da forma de onda em um Oscilador %1 pode ser selecionado para existir um efeito audível. - - - Coarse: - Ajuste Bruto: - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - O Ajuste bruto permite que você ajuste a Voz %1 em uma oitava ou mais. - - - Pulse Wave - Onda de Pulso - - - Triangle Wave - Onda Triangular - - - SawTooth - Dente de Serra - - - Noise - Ruído - - - Sync - Sincronização - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - A sincronização sincroniza a frequência fundamental do Oscilador %1 com a frequência fundamental do Oscilador %2 produzindo um efeito de "Super Sincronização". - - - Ring-Mod - Modulação em Anel - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Mod em Anel (Modulação em Anel) substitui a saída da Onda Triangular do Oscilador %1 com a "Modulada em Anel" da combinação entre os Osciladores %1 e %2. - - - Filtered - Filtrado - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Quando o Filtrado está ligado, a Voz %1 será processada através do Filtro. Quando o Filtrado está desligado, a Voz %1 aparecerá diretamente na saída e o Filtro não terá efeito. - - - Test - Teste - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Quando o Teste está ativado, ele restaura e trava o Oscilador %1 até o Teste ser desligado. + + SoundFont Files (*.sf2 *.sf3) + - stereoEnhancerControlDialog + SfxrInstrument - WIDE - ABRIR + + Wave + + + + + StereoEnhancerControlDialog + + + WIDTH + + Width: Largura: - stereoEnhancerControls + StereoEnhancerControls + Width Largura - stereoMatrixControlDialog + 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 + 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 + VestigeInstrument + Loading plugin Carregando plugin - Please wait while loading VST-plugin... - Por favor, espere enquanto carrego o plugin VST... + + Please wait while loading the VST plugin... + - vibed + 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 - Pan %1 - Pan %1 + + String %1 panning + - Detune %1 - Desafinar %1 + + String %1 detune + - Fuzziness %1 - Encrespar %1 + + String %1 fuzziness + - Length %1 - Tamanho %1 + + String %1 length + + Impulse %1 Impulso %1 - Octave %1 - Oitava %1 + + String %1 + - vibedView + VibedView - Volume: - Volume: - - - The 'V' knob sets the volume of the selected string. - O botão "V" modifica o volume da corda selecionada. + + String volume: + + String stiffness: Dureza da corda: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - O botão "S" modifica a dureza da corda selecionada. A dureza da corda interfere no quão longa é a vibração da corda. Quanto menor o valor mais a corda vai soar. - - + Pick position: Escolher pinçada: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - O botão "P" modifica a posição onde a corda será "pinçada". Valores baixos significam que a corda será pinçada perto da ponte. - - + Pickup position: Posição do captador: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - O botão "PU" modifica a posição onde as vibrações serão captadas na corda selecionada. Valores baixos significam que o captador está mais próximo à ponte. + + String panning: + - Pan: - Pan: + + String detune: + - The Pan knob determines the location of the selected string in the stereo field. - O botão de Pan determina a localização da corda selecionada o campo estereofônico. + + String fuzziness: + - Detune: - Desafinar: + + String length: + - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - O botão "Detune" modifica a altura da corda escolhida. Valores menores do que zero quase não afetarão o som da corda. Valores bem maiores do que zero farão o som ficar mais agudo. - - - Fuzziness: - Encrespando: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - O botão "Slap" deixa mais "crespo" o som da corda escolhida que é mais aparente na duração do ataque (como a técnica de puxar a corda de um contrabaixo ou um violão chamada slap), embora possa ser usada também para deixar o som mais "metálico". - - - Length: - Tamanho: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - O botão de tamanho modifica o tamanho da corda escolhida. Cordas longas resultam em vibrações longas aliadas a um brilho no som, o porém é que isto ocupa muito processamento da CPU. - - - Impulse or initial state - Impulso ou estado inicial - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - O seletor "Imp" determina como a forma de onda no gráfico será manipulada como um impulso comunicado à corda pela pinçada ou pelo estado inicial da corda. + + Impulse + + Octave Oitava - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - O seletor "Octave" é usado para escolher que harmônico da nota na corda irá soar mais. Por exemplo, "-2" significa que a corda vibrará duas oitavas abaixo da Fundamental, "F" significa que a corda vibrará na frequência Fundamental e "6" significa que a corda vai vibrar 6 oitavas acima da fundamental. - - + Impulse Editor Editor de Impulso - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - O editor de forma de onda proporciona controle sobre o estado inicial, ou impulso, usado no início da vibração da corda. Os botões ao lado direito do gráfico irão inicializar o tipo de forma de onda selecionada. O botão "?" ira carregar uma forma de onda de um arquivo (somente as primeiras 128 amostras serão carregadas). - -A forma de onda também pode ser desenhada no gráfico. - -O botão "S" irá suavizar a forma de onda. - -O botão "N" ira normalizar a forma de onda. - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Vibed modela independentemente a vibração de até 8 cordas. O seletor "String" (Corda) permite escolher qual corda será editada. O seletor "Imp" escolhe qual dos gráficos representará o impulso no estado inicial da corda. O seletor "Octave" (Oitava) permite escolher qual harmônico da corda deverá vibrar. - -O gráfico permite que você controle o estado inicial, ou impulso, usado para definir o movimento da corda. - -O botão "V" controla o volume. O botão "S" controla a dureza da corda. O botão "P" controla a posição de pinçagem da corda. Já o botão "PU" controla a posição do captador. - -O botão "Pan" posiciona o som no lado esquerdo ou direito, enquanto o botão "Detune" (Desafinar) permite modificar a afinação em termos de altura. Automatizar este botão permite criar glissandos bem interessantes! O botão "Slap" pode dar uma característica mais metálica ao som da corda. - -O botão "Tamanho" controla o tamanho da corda. - -O LED no canto direito inferior do editor de forma de onda determina que a corda está ativa no presente instrumento. - - + Enable waveform Habilitar forma de onda - Click here to enable/disable waveform. - Clique aqui para habilitar/desabilitar forma de onda. + + Enable/disable string + + String Corda - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - O seletor de Corda é usado para escolher que corda os controles estarão editando. O instrumento Vibed pode conter até nove cordas vibrando independentemente. O LED no canto direito inferior do editor de forma de onda indica que a corda selecionada está ativa. - - + + Sine wave Onda senoidal + + Triangle wave Onda triangular + + Saw wave Onda dente de serra + + Square wave Onda quadrada - White noise wave - Ruído branco + + + White noise + - User defined wave - Onda definida pelo usuário + + + User-defined wave + - Smooth - Suavizar + + + Smooth waveform + - Click here to smooth waveform. - Clique aqui para suavizar a forma de onda. - - - Normalize - Normalizar - - - Click here to normalize waveform. - Clique aqui para normalizar a forma de onda. - - - Use a sine-wave for current oscillator. - Use uma onda senoidal no oscilador atual. - - - Use a triangle-wave for current oscillator. - Use uma onda triangular no oscilador atual. - - - Use a saw-wave for current oscillator. - Use uma onda dente de serra no oscilador atual. - - - Use a square-wave for current oscillator. - Use uma onda quadrada no oscilador atual. - - - Use white-noise for current oscillator. - Use ruído branco no oscilador atual. - - - Use a user-defined waveform for current oscillator. - Use uma forma de onda definida pelo usuário no oscilador atual. + + + Normalize waveform + - voiceObject + 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 + WaveShaperControlDialog + INPUT ENTRADA + Input gain: Ganho de entrada: + OUTPUT SAÍDA + Output gain: Ganho de saída: - Reset waveform + + + Reset wavegraph - Click here to reset the wavegraph back to default + + + Smooth wavegraph - Smooth waveform + + + Increase wavegraph amplitude by 1 dB - Click here to apply smoothing to wavegraph - - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB + Clip input - Clip input signal to 0dB + + Clip input signal to 0 dB - waveShaperControls + WaveShaperControls + Input gain Ganho de entrada + Output gain Ganho de saída - \ No newline at end of file + diff --git a/data/locale/ro.ts b/data/locale/ro.ts new file mode 100644 index 000000000..eceb45a64 --- /dev/null +++ b/data/locale/ro.ts @@ -0,0 +1,16327 @@ + + + AboutDialog + + + About LMMS + Despre LMMS + + + + LMMS + LMMS (Linux MultiMedia Studio) + + + + Version %1 (%2/%3, Qt %4, %5). + Versiunea %1 (%2/%3, Qt %4, %5). + + + + About + Despre + + + + LMMS - easy music production for everyone. + LMMS - producție ușoară de muzică pentru toată lumea. + + + + Copyright © %1. + Copyright © %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> + + + + Authors + Autor: + + + + Involved + Implicat + + + + Contributors ordered by number of commits: + Contribuitori ordonați după numărul de contribuții: + + + + Translation + Traducere + + + + 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! + Limba curentă nu este tradusă (sau limba engleză) +Dacă sunteți interesat în traducerea LMMS într-o altă limbă sau doriți să îmbunătățiți traducerile existente, sunteți bineveniți să ne ajutați! Pur și simplu contactați întreținătorul! + + + + License + Licență (autorizație) + + + + AmplifierControlDialog + + + VOL + VOL + + + + Volume: + Volum: + + + + PAN + PAN + + + + Panning: + Distribuție spațială: + + + + LEFT + Stânga + + + + Left gain: + nivel stânga + + + + RIGHT + Dreapta + + + + Right gain: + nivel dreapta + + + + AmplifierControls + + + Volume + Volum + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + Left gain + nivel stânga + + + + Right gain + nivel dreapta + + + + AudioAlsaSetupWidget + + + DEVICE + Dispozitiv + + + + CHANNELS + Canale + + + + AudioFileProcessorView + + + Open sample + + + + + Reverse sample + Eșantion invers + + + + Disable loop + Dezactivați bucla + + + + Enable loop + Activați bucla + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + Continuă redarea eșantionului între note + + + + Amplify: + Amplifică: + + + + Start point: + + + + + End point: + + + + + Loopback point: + Punct de buclă: + + + + AudioFileProcessorWaveView + + + Sample length: + Lungimea eșantionului: + + + + 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 + + + + + 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 + + + + + CarlaAboutW + + + About Carla + + + + + About + Despre + + + + About text here + + + + + Extended licensing here + + + + + 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 + Licență (autorizație) + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + + + + + toolBar + + + + + 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 + + + + + Ctrl+N + + + + + &Open... + + + + + + Open... + + + + + Ctrl+O + + + + + &Save + + + + + Ctrl+S + + + + + Save &As... + + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + + + + + 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 + + + + + &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... + + + + + 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 + + + Settings + + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + + + + + 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 (Linux MultiMedia Studio) + + + + 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 + + + + + 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 + + + + + + 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 + + + + + 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 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: + + + + + 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 + + + + + 48000 Hz + + + + + 88200 Hz + + + + + 96000 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! + + + + + 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% + + + + + Fader + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + MixerLine + + + 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 + + + + + MixerLineLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + Volum + + + + 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 + + + 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 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 + + + + + + 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 + + + + + InstrumentMiscView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + + + + + Volume + Volum + + + + 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 + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + Volum + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + InstrumentTrackView + + + Volume + Volum + + + + Volume: + + + + + VOL + VOL + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + Panning: + Distribuție spațială: + + + + PAN + PAN + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 + + + + + InstrumentTrackWindow + + + GENERAL SETTINGS + + + + + Volume + Volum + + + + Volume: + + + + + VOL + VOL + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + Panning: + Distribuție spațială: + + + + PAN + 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 + + + + + Save preset + + + + + XML preset file (*.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 + + + + + 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: + + + + + 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: + + + + + LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %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 + + + + + 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... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + Despre + + + + 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 + + + + + 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 + + + + 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) + + + + + 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 + + + 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 + Volum + + + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + + + 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 + Volum + + + + + + 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 + + + + + OK + + + + + Cancel + + + + + PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.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 + + + + + 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 + + + + + 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: + + + + + 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 + + + + + + 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 + + + + + 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 + + + + + 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 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 + + + 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 + + + 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 + + + + + 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 + Eșantion invers + + + + Set clip color + + + + + Use track color + + + + + SampleTrack + + + Volume + Volum + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + Mixer channel + + + + + + Sample track + + + + + SampleTrackView + + + Track volume + + + + + Channel volume: + + + + + VOL + VOL + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + Panning: + Distribuție spațială: + + + + PAN + PAN + + + + Channel %1: %2 + + + + + SampleTrackWindow + + + GENERAL SETTINGS + + + + + Sample volume + + + + + Volume: + Volum: + + + + VOL + VOL + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + Panning: + Distribuție spațială: + + + + 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 + + + + + + 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 + + + + + Cancel + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose your GIG directory + + + + + Choose your SF2 directory + + + + + minutes + + + + + minute + + + + + Disabled + + + + + SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + Volum + + + + Chip model + + + + + SidInstrumentView + + + Volume: + Volum: + + + + 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 + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + Maximize + + + + + Restore + + + + + 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 + + + + + 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. + + + + + 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 + + + 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 + + + + + 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 + + + + + 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 + + + + + + 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 + + + + + .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 + Volum + + + + + + + Panning + Distribuție spațială (mono / stereo / multi-channel) + + + + + + + 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 + + + + + Xpressive + + + 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 + Eșantion invers + + + + 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 + Volum + + + + 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: + + + + + + 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 + + + + diff --git a/data/locale/ru.ts b/data/locale/ru.ts index c7ec3a328..8235f291f 100644 --- a/data/locale/ru.ts +++ b/data/locale/ru.ts @@ -2,73 +2,81 @@ AboutDialog - + About LMMS О программе LMMS - + LMMS - ЛММС + LMMS - - Version %1 (%2/%3, Qt %4, %5) - Версия %1 (%2/%3, Qt %4, %5) + + Version %1 (%2/%3, Qt %4, %5). + Версия %1 (%2/%3, Qt %4, %5). - + About Подробнее - - LMMS - easy music production for everyone - LMMS - лёгкое создание музыки для всех + + LMMS - easy music production for everyone. + LMMS — простое создание музыки для всех. - - Copyright © %1 - Все права защищены © %1 + + Copyright © %1. + Все права защищены © %1. - - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">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> + <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#33cc33;">https://lmms.io</span></a></p></body></html> - + Authors Авторы - + Involved Участники - + Contributors ordered by number of commits: Разработчики сортированные по числу коммитов: - + Translation Перевод - + 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 на другой язык или хотите улучшить существующий перевод, мы приветствуем любую помощь! Просто свяжитесь с разработчиками! + Хотите перевести LMMS на другой язык или улучшить существующий перевод — всегда пожалуйста! Свяжитесь с командой переводчиков: +https://www.transifex.com/lmms/teams/61632/ru/ +https://matrix.to/#/#lmms.ru.team:matrix.org -Перевод выполнили: -Alexey Kouznetsov <alexey/dot/kouznetsov/at/gmail/dot/com> -Oe Ai <oeai/at/symbiants/dot/com> +На русский язык переводили : + +Алексей Кузнецов (2006) +Symbiants / OeAi (2014) +Василий Павлов (2019) +Алексей "Lexeii" Бобылёв (2020) +Андрей Степанов (2018) +Andrew344 (2016) +Кирилл Рагузин (2018) +Simple88 (2016) - + License Лицензия @@ -88,7 +96,7 @@ Oe Ai <oeai/at/symbiants/dot/com> PAN - БАЛ + БАЛАНС @@ -98,22 +106,22 @@ Oe Ai <oeai/at/symbiants/dot/com> LEFT - Лево + СЛЕВА Left gain: - Лево мощность: + Усиление левого канала: RIGHT - Право + СПРАВА Right gain: - Право мощность: + Усиление правого канала: @@ -131,12 +139,12 @@ Oe Ai <oeai/at/symbiants/dot/com> Left gain - Лево мощн + Усиление (Л) Right gain - Право мощн + Усиление (П) @@ -155,270 +163,229 @@ Oe Ai <oeai/at/symbiants/dot/com> AudioFileProcessorView - - Open other sample - Открыть другую запись + + Open sample + Открыть сэмпл - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Нажмите здесь, чтобы открыть другой звуковой файл. В новом окне диалога вы сможете выбрать нужный файл. Такие настройки, как режим повтора, точки начала/конца, усиление и прочие не сбросятся, поэтому звучание может отличаться от оригинала. - - - + Reverse sample - Отзеркалить запись + Развернуть сэмпл - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Если включить эту кнопку, вся запись пойдёт в обратную сторону, это удобно для крутых эффектов, типа обратного грохота. - - - + Disable loop Отключить петлю - - This button disables looping. The sample plays only once from start to end. - Эта кнопка отключает зацикливание (loop-цикл). Запись проигрывается только один раз от начала до конца. - - - - + Enable loop Включить петлю - - This button enables forwards-looping. The sample loops between the end point and the loop point. - Эта кнопка включает переднюю петлю. Сэмпл кольцуется между конечной точкой и точкой петли. + + Enable ping-pong loop + Включить петлю «вперёд-назад» - - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Эта кнопка включает пинг-понг петлю. Сэмпл кольцуется обратно и вперёд между конечной точкой и точкой петли. - - - + Continue sample playback across notes - Продолжить воспроизведение записи по нотам + Продолжить воспроизведение сэмпла по нотам - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Включение этой опции продолжит воспроизведение записи по разным нотам - если изменить ускорение или длительность ноты остановится до конца записи, то со следующей ноты запись продолжится там, где остановилась, чтобы сбросить воспроизвдение на начало записи, вставьте ноту внизу у клавиш (<20 Гц) - - - + Amplify: Усиление: - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Эта ручка задаёт коэффициент усиления. При значении 100% исходный звук не меняется, в противном случае ― он будет ослаблен или усилен. (Обратите внимание, что исходная запись при этом останется нетронутой.) + + Start point: + Начальная точка: - - Startpoint: - Начало: + + End point: + Конечная точка: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Этим регулятором можно установить точку где АудиоФайлПроцессор должен начать воспроизведение сэмпла. - - - - Endpoint: - Конец: - - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Этот регулятор устанавливает точку в которой АудиоФайлПроцессор должен перестать воспроизвдение сэмпла. - - - + Loopback point: Точка возврата петли: - - - With this knob you can set the point where the loop starts. - Этот регулятор ставит точку начала петли. - 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-сервер не доступен + 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. + Возможно JACK-сервер был выключен и запуск нового процесса не удался, поэтому LMMS не может продолжить работу. Вам следует сохранить проект и перезапустить JACK и LMMS. - - CLIENT-NAME - ИМЯ КЛИЕНТА + + Client name + Имя клиента - - CHANNELS - КАНАЛЫ + + Channels + Каналы - AudioOss::setupWidget + AudioOss - DEVICE - УСТРОЙСТВО + Device + Устройство - CHANNELS - КАНАЛЫ + Channels + Каналы AudioPortAudio::setupWidget - - BACKEND - УПРАВЛЕНИЕ + + Backend + Интерфейс - - DEVICE - УСТРОЙСТВО + + Device + Устройство - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - УСТРОЙСТВО + Device + Устройство - CHANNELS - КАНАЛЫ + Channels + Каналы AudioSdl::setupWidget - - DEVICE - УСТРОЙСТВО + + Device + Устройство - AudioSndio::setupWidget + AudioSndio - DEVICE - УСТРОЙСТВО + Device + Устройство - CHANNELS - КАНАЛЫ + Channels + Каналы AudioSoundIo::setupWidget - - BACKEND - БЭКЕНД + + Backend + Интерфейс - - DEVICE - УСТРОЙСТВО + + Device + Устройство AutomatableModel - + &Reset (%1%2) - &R Сбросить (%1%2) + &Сбросить (%1%2) + + + + &Copy value (%1%2) + &Копировать значение (%1%2) - &Copy value (%1%2) - &C Копировать значение (%1%2) - - - &Paste value (%1%2) - &P Вставить значение (%1%2) + &Вставить значение (%1%2) - + + &Paste value + &Вставить значение + + + Edit song-global automation - Изменить глоабльную автоматизацию композиции + Изменить глобальную автоматизацию - + Remove song-global automation - Убрать глобальную автоматизацию композиции + Убрать глобальную автоматизацию - + Remove all linked controls Убрать всё присоединенное управление - + Connected to %1 - Подсоединено к %1 + Соединено с «%1» - + Connected to controller - Подсоединено к контроллеру + Соединено с контроллером + + + + Edit connection... + Изменить соединение… - Edit connection... - Настроить соединение... - - - Remove connection Удалить соединение - + Connect to controller... Соединить с контроллером... @@ -426,387 +393,300 @@ Oe Ai <oeai/at/symbiants/dot/com> AutomationEditor - - Please open an automation pattern with the context menu of a control! - Откройте редатор автоматизации через контекстное меню регулятора! + + Edit Value + - - Values copied - Значения скопированы + + New outValue + - - All selected values were copied to the clipboard. - Все выбранные значения скопированы в буфер обмена. + + New inValue + + + + + Please open an automation clip with the context menu of a control! + Откройте редактор автоматизации через контекстное меню регулятора! AutomationEditorWindow - - Play/pause current pattern (Space) - Игра/Пауза текущей мелодии (Пробел) + + Play/pause current clip (Space) + Игра/пауза текущей мелодии (Пробел) - - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Нажмите здесь чтобы проиграть текущую мелодию. Это может пригодиться при его редактировании. Мелодия автоматически закольцуется при достижении конца. + + Stop playing of current clip (Space) + Остановить воспроизведение текущего паттерна (пробел) - - Stop playing of current pattern (Space) - Остановить воспроизведение текущей мелодии (Пробел) - - - - Click here if you want to stop playing of the current pattern. - Нажмите здесь, если вы хотите остановить воспроизведение текущей мелодии. - - - + Edit actions - Правка: + Панель правки - + Draw mode (Shift+D) Режим рисования (Shift+D) - + Erase mode (Shift+E) - Режим стирания (Shift-E) + Режим стирания (Shift+E) - + + Draw outValues mode (Shift+C) + + + + Flip vertically Перевернуть вертикально - + Flip horizontally Перевернуть горизонтально - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Нажмите здесь и мелодия перевернётся. Точки переворачиваются в Y направлении. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Нажмите здесь и мелодия перевернётся в направлении X. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - При нажатии на эту кнопку активируется режим рисования нот, в нём вы можете добавлять/перемещать и изменять длительность одиночных нот. Это основной режим и используется большую часть времени. -Для включения этого режима можно использовать комбинацию клавиш Shift+D. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - При нажатии на эту кнопку активируется режим стирания. В этом режиме вы можете стирать ноты по одной. -Для включения этого режима можно использовать комбинацию клавиш Shift+E. - - - + Interpolation controls Управление интерполяцией - + Discrete progression Дискретная прогрессия - + Linear progression Линейная прогрессия - + Cubic Hermite progression Кубическая Эрмитова прогрессия - + Tension value for spline - Величина напряжения для сплайна + Жёсткость на изгибе - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Более высокое напряжение может сделать кривую более мягкой, но перегрузит некоторые величины. Низкое напряжение сделает наклон кривой ниже в каждой контрольной точке. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Выбор дискретной прогрессии для этого шаблона автоматизации. Кол-во подсоединенных объектов будет оставаться постоянным между управляющими точками и будет установлено на новое значение сразу по достижении каждой управляющей точки. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Выбор линейной прогрессии для этого шаблона автоматизации. Кол-во подсоединенных объектов будет меняться с постоянной скоростью во времени между управляющими точками для достижения точного значения в каждой управляющей точки без внезапных изменений. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Кубическая Эрмитова прогрессия для этого шаблона автоматизации. Кол-во подсоединенных объектов изменится по сглаженной кривой и смягчится на пиках и спадах. - - - + Tension: - Напряжение: + Жёсткость: - - Cut selected values (%1+X) - Вырезать выбранные ноты (%1+X) - - - - Copy selected values (%1+C) - Копировать выбранные ноты в буфер (%1+C) - - - - Paste values from clipboard (%1+V) - Вставить запомненные значения (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - При нажатии на эту кнопку выделеные ноты будут вырезаны в буфер. Позже вы можете вставить их в любое место любой мелодии с помощью кнопки "Вставить". - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - При нажатии на эту кнопку выделеные ноты будут скопированы в буфер. Позже вы можете вставить их в любое место любой мелодии с помощью кнопки "Вставить". - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - При нажатии на эту кнопку ноты из буфера будут вставлены в первый видимый такт. - - - + Zoom controls - Приблизить управление + Управление приближением - + + Horizontal zooming + Горизонтальное приближение + + + + Vertical zooming + Вертикальное приближение + + + Quantization controls Управление квантованием - + Quantization Квантование - - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - + + + Automation Editor - no clip + Редактор автоматизации — без паттерна - - - Automation Editor - no pattern - Редактор автоматизаци — нет шаблона - - - - + + Automation Editor - %1 Редактор автоматизации — %1 - - Model is already connected to this pattern. - Модель уже подключена к этому шаблону. + + Model is already connected to this clip. + Модель уже подключена к этому паттерну. - AutomationPattern + AutomationClip - + Drag a control while pressing <%1> - Тяните контроль удерживая <%1> + Перетащите элемент управления, удерживая <%1> - AutomationPatternView + AutomationClipView - - double-click to open this pattern in automation editor - Дважды щёлкните мышью чтобы настроить автоматизацию этого шаблона - - - + 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 pattern. - Модель уже подключена к этому шаблону. + + Model is already connected to this clip. + Модель уже подключена к этому паттерну. AutomationTrack - + Automation track Дорожка автоматизации - BBEditor + PatternEditor - + Beat+Bassline Editor - Ритм+Бас Редактор + Ритм+Бас Композитор - + Play/pause current beat/bassline (Space) - Игра/пауза текущей линии ритма/баса (<Space>) + Игра/пауза текущей линии ритма/баса (пробел) - + Stop playback of current beat/bassline (Space) Остановить воспроизведение текущей линии ритм-баса (ПРОБЕЛ) - - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Нажмите чтобы проиграть текущую линию ритм-баса. Она будет закольцована по достижении окончания. - - - - Click here to stop playing of current beat/bassline. - Остановить воспроизведение (Пробел). - - - + 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 Клонировать такты - BBTCOView + PatternClipView - + Open in Beat+Bassline-Editor - Открыть в редакторе ритм + баса + Открыть в Композиторе-Ритм+Баса - + Reset name Сбросить название - + Change name Переименовать - - - Change color - Изменить цвет - - - - Reset color to default - Установить цвет по умолчанию - - BBTrack + PatternTrack - + Beat/Bassline %1 - Ритм-Бас Линия %1 + Ритм/Бас Линия %1 - + Clone of %1 Копия %1 @@ -826,17 +706,17 @@ Oe Ai <oeai/at/symbiants/dot/com> GAIN - МОЩ + УСИЛ Gain: - Мощность: + Усиление: RATIO - ОТН + ОТНОШ @@ -854,7 +734,7 @@ Oe Ai <oeai/at/symbiants/dot/com> Gain - Мощность + Усиление @@ -867,37 +747,37 @@ Oe Ai <oeai/at/symbiants/dot/com> IN - ВХОД + ВХ OUT - ВЫХОД + ВЫХ GAIN - МОЩ + УСИЛ - Input Gain: + Input gain: Входная мощность: NOISE - Шум + ШУМ - Input Noise: - Входной шум: + Input noise: + Входящий шум: - Output Gain: + Output gain: Выходная мощность: @@ -907,84 +787,2297 @@ Oe Ai <oeai/at/symbiants/dot/com> - Output Clip: + Output clip: Выходная обрезка: - - Rate Enabled + + Rate enabled Частота выборки включена - - Enable samplerate-crushing + + Enable sample-rate crushing Включить дробление частоты дискретизации - - Depth Enabled + + Depth enabled Глубина включена - - Enable bitdepth-crushing + + Enable bit-depth crushing Включить дробление битовой глубины - + FREQ - FREQ + ЧАСТ - + Sample rate: Частота сэмплирования: - + STEREO СТЕРЕО - + Stereo difference: Стерео разница: - + QUANT КВАНТ - + Levels: Уровни: - CaptionMenu + BitcrushControls - - &Help - &H Справка + + Input gain + Входная мощность - - Help (not available) - Справка (не доступна) + + Input noise + Входной шум + + + + Output gain + Выходная мощность + + + + Output clip + Выходная обрезка + + + + Sample rate + Частота сэмплирования + + + + Stereo difference + Разница стерео + + + + Levels + Уровни + + + + Rate enabled + Частота выборки включена + + + + Depth enabled + Глубина включена + + + + CarlaAboutW + + + About Carla + О Carla + + + + About + О программе + + + + About text here + О тексте здесь + + + + 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. + + + + + 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. + + + + + 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 + Лицензия + + + + 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> + <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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + Размер буфера: + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Файл + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + &Справка + + + + toolBar + + + + + Disk + + + + + + Home + Home + + + + Transport + + + + + Playback Controls + + + + + Time Information + + + + + Frame: + + + + + 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 + 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 + + + + + &About + &О программе + + + + About &JUCE + О &JUCE + + + + About &Qt + О &Qt + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + &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... + + + + + 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 - - Click here to show or hide the graphical user interface (GUI) of Carla. - Нажмите сюда, чтобы показать или скрыть графический интерфейс Карла. + + Settings + Настройки + + + + main + + + + + canvas + + + + + engine + движок + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + Движок + + + + File Paths + + + + + Plugin Paths + + + + + Wine + Wine + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + Пути + + + + Default project folder: + + + + + Interface + Интерфейс + + + + 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> + + + + + Bezier Lines + + + + + Theme: + Тема: + + + + Size: + Размер: + + + + 775x600 + 775×600 + + + + 1550x1200 + 1550×1200 + + + + 3100x2400 + 3100×2400 + + + + 4650x3600 + 4650×3600 + + + + 6200x4800 + 6200×4800 + + + + 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 + Включить порт 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> + + + + + Audio + Аудио + + + + 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 + + + + Restart Carla to find new plugins + Перезапустите Carla, чтобы найти новые плагины + + + + <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 + + + + + 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) + + + + + 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 + Микс @@ -998,73 +3091,73 @@ Oe Ai <oeai/at/symbiants/dot/com> 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. Обнаружен цикл. @@ -1072,22 +3165,22 @@ Oe Ai <oeai/at/symbiants/dot/com> ControllerRackView - + Controller Rack - Рэка контроллеров + Стойка контроллеров - + Add Добавить - + Confirm Delete Подтвердить удаление - + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. Подтверждаете удаление? Есть возможные соединения с этим контроллером, возврата не будет. @@ -1095,116 +3188,131 @@ Oe Ai <oeai/at/symbiants/dot/com> ControllerView - + Controls - Управление + Контроль - - Controllers are able to automate the value of a knob, slider, and other 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 1/2 crossover: + Пересечение 1/2 Полосы: - Band 2/3 Crossover: - Полоса 2/3 кроссовер: + Band 2/3 crossover: + Пересечение 2/3 Полосы: - Band 3/4 Crossover: - Полоса 3/4 кроссовер: + Band 3/4 crossover: + Пересечение 3/4 Полосы: + + + + Band 1 gain + Полоса 1 усиление - Band 1 Gain: + Band 1 gain: Полоса 1 усиление: + + + Band 2 gain + Полоса 2 усиление + - Band 2 Gain: + Band 2 gain: Полоса 2 усиление: + + + Band 3 gain + Полоса 3 усиление + - Band 3 Gain: + Band 3 gain: Полоса 3 усиление: + + + Band 4 gain + Полоса 4 усиление + - Band 4 Gain: + Band 4 gain: Полоса 4 усиление: - Band 1 Mute - Полоса 1 выключена + Band 1 mute + Полоса 1 заглушена - Mute Band 1 + Mute band 1 Заглушить полосу 1 - Band 2 Mute - Полоса 2 выключена + Band 2 mute + Полоса 2 заглушена - Mute Band 2 + Mute band 2 Заглушить полосу 2 - Band 3 Mute + Band 3 mute Полоса 3 заглушена - Mute Band 3 + Mute band 3 Заглушить полосу 3 - Band 4 Mute + Band 4 mute Полоса 4 заглушена - Mute Band 4 + Mute band 4 Заглушить полосу 4 @@ -1212,7 +3320,7 @@ Oe Ai <oeai/at/symbiants/dot/com> DelayControls - Delay Samples + Delay samples Задержка сэмплов @@ -1222,12 +3330,12 @@ Oe Ai <oeai/at/symbiants/dot/com> - Lfo Frequency + LFO frequency Частота LFO - Lfo Amount + LFO amount Объём LFO @@ -1245,18 +3353,18 @@ Oe Ai <oeai/at/symbiants/dot/com> - Delay Time + Delay time Время задержки FDBK - + ВОЗВ - Feedback Amount - Объём возврата: + Feedback amount + Уровень возврата @@ -1265,8 +3373,8 @@ Oe Ai <oeai/at/symbiants/dot/com> - Lfo - Lfo + LFO frequency + Частота LFO @@ -1275,13 +3383,13 @@ Oe Ai <oeai/at/symbiants/dot/com> - Lfo Amt - Вел LFO + LFO amount + Объём LFO - Out Gain - Выходная мощность + Out gain + Усиление на выходе @@ -1289,19 +3397,237 @@ Oe Ai <oeai/at/symbiants/dot/com> Усиление + + 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 + + + + + Remote setup + + + + + UDP Port: + Порт UDP: + + + + Remote host: + Удалённый хост: + + + + 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 + Установить значение + + + + 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 - FREQ + ЧАСТ Cutoff frequency - Срез частот + Частота среза @@ -1319,13 +3645,13 @@ Oe Ai <oeai/at/symbiants/dot/com> GAIN - МОЩ + УСИЛ Gain - УСИЛ + Усиление @@ -1349,13 +3675,13 @@ Oe Ai <oeai/at/symbiants/dot/com> - Click to enable/disable Filter 1 - Кликнуть для включения/выключения Фильтра 1 + Enable/disable filter 1 + Вкл/Выкл фильтр 1 - Click to enable/disable Filter 2 - Кликнуть для включения/выключения Фильтра 2 + Enable/disable filter 2 + Вкл/Выкл фильтр 2 @@ -1372,13 +3698,13 @@ Oe Ai <oeai/at/symbiants/dot/com> - Cutoff 1 frequency - Срез 1 частоты + Cutoff frequency 1 + Частота среза 1 Q/Resonance 1 - + Q/Резонанс 1 @@ -1402,13 +3728,13 @@ Oe Ai <oeai/at/symbiants/dot/com> - Cutoff 2 frequency - Срез 2 частоты + Cutoff frequency 2 + Частота среза 2 Q/Resonance 2 - + Q/Резонанс 2 @@ -1418,26 +3744,26 @@ Oe Ai <oeai/at/symbiants/dot/com> - LowPass - Низ.ЧФ + Low-pass + Пропуск низких - HiPass - Выс.ЧФ + Hi-pass + Пропуск высоких - BandPass csg - Сред.ЧФ csg + Band-pass csg + Полосовой csg - BandPass czpg - Сред.ЧФ czpg + Band-pass czpg + Полосовой czpg @@ -1448,8 +3774,8 @@ Oe Ai <oeai/at/symbiants/dot/com> - Allpass - Все проходят + All-pass + Фазовый @@ -1460,50 +3786,50 @@ Oe Ai <oeai/at/symbiants/dot/com> - 2x LowPass - 2х Низ.ЧФ + 2x Low-pass + 2x ФНЧ - RC LowPass 12dB - RC Низ.ЧФ 12дБ + RC Low-pass 12 dB/oct + RC ФНЧ 12дБ/окт - RC BandPass 12dB - RC Сред.ЧФ 12 дБ + RC Band-pass 12 dB/oct + RC полосовой 12 дБ/окт - RC HighPass 12dB - RC Выс.ЧФ 12дБ + RC High-pass 12 dB/oct + RC ФВЧ 12 дБ/окт - RC LowPass 24dB - RC Низ.ЧФ 24дБ + RC Low-pass 24 dB/oct + RC ФНЧ 24 дБ/окт - RC BandPass 24dB - RC Сред.ЧФ 24дБ + RC Band-pass 24 dB/oct + RC полосовой 24 дБ/окт - RC HighPass 24dB - RC Выс.ЧФ 24дБ + RC High-pass 24 dB/oct + RC ФВЧ 24 дБ/окт - Vocal Formant Filter - Фильтр Вокальной форманты + Vocal Formant + Формантный @@ -1514,89 +3840,94 @@ Oe Ai <oeai/at/symbiants/dot/com> - SV LowPass - SV Низ.ЧФ + SV Low-pass + SV нижних частот - SV BandPass - SV Сред.ЧФ + SV Band-pass + SV полосовой - SV HighPass - 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 + Порог - Gate - Шлюз - - - Decay - Затихание + Спад @@ -1604,18 +3935,18 @@ Oe Ai <oeai/at/symbiants/dot/com> Effects enabled - Эффекты включёны + Эффекты включены EffectRackView - + EFFECTS CHAIN ЦЕПЬ ЭФФЕКТОВ - + Add effect Добавить эффект @@ -1623,28 +3954,28 @@ Oe Ai <oeai/at/symbiants/dot/com> EffectSelectDialog - + Add effect Добавить эффект - - + + Name Имя - + Type Тип - + Description Описание - + Author Автор @@ -1652,409 +3983,256 @@ Oe Ai <oeai/at/symbiants/dot/com> EffectView - - Toggles the effect on or off. - Вкл/выкл эффект. - - - + On/Off Вкл/Выкл - + W/D - НАСЫЩ + МИКС - + Wet Level: - Уровень насыщенности: + Уровень обработанного звука: - - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - Регулятор насыщенности определяет долю обработанного сигнала, которая будет на выходе. - - - + DECAY - ЗАТУХАНИЕ + СПАД - + Time: Время: - - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - Decay (затихание) управляет количеством буферов тишины, которые должны пройти до конца работы плагина. Меньшие величины снижают перегрузку процессора, но вознкает риск появления потрескивания или подрезания в хвосте на передержке (delay) или эхо (reverb) эффектах. - - - + GATE - ШЛЮЗ + ПОРОГ - + Gate: - Шлюз: + Порог: - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - GATE (Шлюз) определяет уровень сигнала, который будет считаться "тишиной" при определении остановки обрабатывания сигналов. - - - + Controls - Управление + Контроль - - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Сигнал проходит последовательно через все установленные фильтры (сверху вниз). - -Переключатель Вкл/Выкл позволяет в любой момент включать/выключать фильтр. - -Регулятор (wet / dry) насыщенности определяет баланс между входящим сигналом и сигналом после эффекта, который становится выходным сигналом эффекта. Входной сигнал каждого фильтра является выходом предыдущего, так что доля чистого сигнала при прохождении по цепочке постоянно падает. - -Регулятор (decay) затихания определяет время, которое будет действовать фильтр после того как ноты были отпущены. -Эффект перестанет обрабатывать сигналы, когда грмокость упадёт ниже порога для заданной длины времени. Эта ручка (Knob) устанавливает "заданную длину времени" Чем меньше значение, тем меньше требования к ЦП, поэтому лучше ставить это число низким для большинства эффектов. однако это может вызвать обрезку звука при использовании эффектов с длительными периодами тишины, типа задержки. - -Регулятор шлюза служит для указания порога сигнала для авто-отключения эффекта, отсчёт для "заданной длины времени" начнётся как только обрабатываемый сигнал упадёт ниже указанного этим регулятором уровня. - -Кнопка „Управление“ открывает окно изменения параметров эффекта. - -Контекстное меню, вызываемое щелчком правой кнопкой мыши, позволяет менять порядок следования фильтров или удалять их вместе с другими. - - - + Move &up - &u Переместить выше + Переместить &выше - + Move &down - &d Переместить ниже + Переместить &ниже - + &Remove this plugin - &R Убрать фильтр + &Убрать фильтр EnvelopeAndLfoParameters - - - Predelay - Задержка - - - - Attack - Вступление - - Hold - Удерживание + Env pre-delay + Огиб предзадержка - Decay - Затихание + Env attack + Атака огиб. - Sustain - Выдержка + Env hold + Удержание огиб. - Release - Убывание + Env decay + Спад огиб. - Modulation - Модуляция + Env sustain + Выдержка огиб. - - LFO Predelay - Задержка LFO + + Env release + Затухание огиб. - - LFO Attack - Вступление LFO + + Env mod amount + Объём мод огиба - - LFO speed - Скорость LFO + + LFO pre-delay + LFO предзадержка - - LFO Modulation - Модуляция LFO + + LFO attack + Атака LFO - LFO Wave Shape - Форма сигнала LFO + LFO frequency + Частота LFO - Freq x 100 - ЧАСТ x 100 + LFO mod amount + Глубина мод LFO - Modulate Env-Amount - Модулировать огибающую + LFO wave shape + Форма LFO волны + + + + LFO frequency x 100 + Частота x 100 LFO + + + + Modulate env amount + Модулировать уровень огибающей EnvelopeAndLfoView - - + + DEL DEL - - Predelay: - Задержка: + + + Pre-delay: + Предзадержка: - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Эта ручка определяет задержку огибающей. Чем больше эта величина, тем дольше время до старта текущей огибающей. - - - - + + ATT ATT - + + Attack: - Вступление: + Атака: - - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Эта ручка устанавливает время возрастания для текущей огибающей. Чем больше значение, тем дольше характеристика (н-р, громкость) возрастает до максимума. Для инструменов вроде пианино характерны малые времена нарастания, а для струнных - большие. - - - + HOLD - HOLD + УДЕРЖ - + Hold: Удержание: - - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Эта ручка устанавливает длительность огибающей. Чем больше значение, тем дольше огибающая держится на наивысшем уровне. - - - + DEC DEC - + Decay: - Затухание: + Спад: - - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Эта ручка устанавливает время спада для текущей огибающей. Чем больше значение, тем дольше огибающая должна сокращаться от вступления до уровня выдержки. Для инструментов вроде пианино следует выбирать небольшие значения. - - - + SUST SUST - + Sustain: Выдержка: - - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Эта ручка устанавливает уровень выдержки. Чем больше эта величина, тем выше уровень на котором остаётся огибающая, прежде чем опуститься до нуля. - - - + REL REL - + Release: - Убывание: + Затухание: - - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Эта ручка устанавливает время убывания для текущей огибающей. Чем больше значение, тем дольше характеристика (н-р, громкость) уменьшается от уровня выдержки до нуля. Для струнных инструментов следует выбирать большие значения. - - - - + + AMT AMT - - + + Modulation amount: Глубина модуляции: - - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Эта ручка устанавливает глубину модуляции для текущей огибающей. Чем больше значение, тем в большей степени выбранная характеристика (н-р, громкость или частота среза) будет зависеть от этой огибающей. - - - - LFO predelay: - Пред. задержка LFO: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Эта ручка определяет задержку перед запуском LFO (LFO - НизкоЧастотный осциллятор (генератор)). Чем больше величина, тем больше времени до того как LFO начнёт работать. - - - - LFO- attack: - Вступление LFO: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Используйте эту ручку для установления времени вступления этого LFO. Чем больше значение, тем дольше LFO нуждается в увеличении своей амплитуды до максимума. - - - + SPD - SPD + СКРСТ - - LFO speed: - Скорость LFO: + + Frequency: + Частота: - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Эта ручка устанавлявает скорость текущего LFO. Чем больше значение, тем быстрее LFO осциллирует и быстрее производится эффект. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Эта ручка устанавливает глубину модуляции для текущего LFO. Чем больше значение, тем в большей степени выбранная характеристика (н-р, громкость или частота среза) будет зависеть от этого LFO. - - - - Click here for a sine-wave. - Синусоида. - - - - Click here for a triangle-wave. - Сгенерировать треугольный сигнал. - - - - Click here for a saw-wave for current. - Сгенерировать зигзагообразный сигнал. - - - - Click here for a square-wave. - Сгенерировать квадрат. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Задать свою форму сигнала. Впоследствии, перетащить соответствующий файл с записью в граф LFO. - - - - Click here for random wave. - Нажмите сюда для случайной волны. - - - + FREQ x 100 - ЧАСТОТА x 100 + ЧАСТ x 100 - - Click here if the frequency of this LFO should be multiplied by 100. - Нажмите, чтобы умножить частоту этого LFO на 100. - - - - multiply LFO-frequency by 100 + + Multiply LFO frequency by 100 Умножить частоту LFO на 100 - - MODULATE ENV-AMOUNT - МОДУЛИР ОГИБАЮЩУЮ + + MODULATE ENV AMOUNT + МОДУЛИР УР ОГИБАЮЩ - - Click here to make the envelope-amount controlled by this LFO. - Нажмите сюда, чтобы глубина модуляции огибающей задавалась этим LFO. + + Control envelope amount by this LFO + Управлять объёмом огибающей через этот LFO - - control envelope-amount by this LFO - Разрешить этому LFO задавать значение огибающей - - - + ms/LFO: мс/LFO: - + Hint Подсказка - - Drag a sample from somewhere and drop it in this window. - Перетащите в это окно какую-нибудь запись. + + Drag and drop a sample into this window. + Перетащить сэмпл в это окно. @@ -2071,8 +4249,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Low shelf gain - Низкая ступень усиления + Low-shelf gain + Усиление уровня низких @@ -2096,8 +4274,8 @@ Right clicking will bring up a context menu where you can change the order in wh - High Shelf gain - Высокая степень усиления + High-shelf gain + Усиление уровня высоких @@ -2106,48 +4284,48 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf res - Низкая ступень резон + Low-shelf res + Резо уровня низких Peak 1 BW - Пик 1 BW + Пик 1 ДИАП Peak 2 BW - Пик 2 BW + Пик 2 ДИАП Peak 3 BW - Пик 3 BW + Пик 3 ДИАП Peak 4 BW - Пик 4 BW + Пик 4 ДИАП - High Shelf res - Высокая ступень резон + High-shelf res + Резо уровня высоких LP res - НЧ резон + НЧ резо HP freq - НЧ част + ВЧ част - Low Shelf freq - Низкая степень част + Low-shelf freq + Уровень низких част @@ -2171,8 +4349,8 @@ Right clicking will bring up a context menu where you can change the order in wh - High shelf freq - Высокая ступень част + High-shelf freq + Уровень высоких част @@ -2186,8 +4364,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Low shelf active - Низкая ступень активна + Low-shelf active + Уровень низких активен @@ -2207,12 +4385,12 @@ Right clicking will bring up a context menu where you can change the order in wh Peak 4 active - Пик 3 активен + Пик 4 активен - High shelf active - Высокая степень активна + High-shelf active + Уровень высоких активен @@ -2251,13 +4429,13 @@ Right clicking will bring up a context menu where you can change the order in wh - low pass type - Тип нижних частот + Low-pass type + Тип прохождения низких (LP) - high pass type - Тип верхних частот + High-pass type + Тип прохождения высоких (HP) @@ -2279,8 +4457,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf - Низкая ступень + Low-shelf + Уровень низких @@ -2300,12 +4478,12 @@ Right clicking will bring up a context menu where you can change the order in wh Peak 4 - Пик 3 + Пик 4 - High Shelf - Высокая ступень + High-shelf + Уровень высоких @@ -2314,7 +4492,7 @@ Right clicking will bring up a context menu where you can change the order in wh - In Gain + Input gain Входная мощность @@ -2322,11 +4500,11 @@ Right clicking will bring up a context menu where you can change the order in wh Gain - Мощность + Усиление - Out Gain + Output gain Выходная мощность @@ -2351,13 +4529,13 @@ Right clicking will bring up a context menu where you can change the order in wh - lp grp - нч grp + LP group + Группа НЧ (LoPass) - hp grp - вч grp + HP group + Группа ВЧ (HiPass) @@ -2370,7 +4548,7 @@ Right clicking will bring up a context menu where you can change the order in wh BW: - BW + ДИАП: @@ -2382,204 +4560,219 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog - + Export project Экспорт проекта - - Output - Вывод + + Export as loop (remove extra bar) + Экспортировать как петлю (убрать лишний такт) - - File format: - Формат файла: - - - - Samplerate: - Частота дискретизации: - - - - 44100 Hz - 44.1 КГц - - - - 48000 Hz - 48 КГц - - - - 88200 Hz - 88.2 КГц - - - - 96000 Hz - 96 КГц - - - - 192000 Hz - 192 КГц - - - - Depth: - Емкость: - - - - 16 Bit Integer - 16 Бит целое - - - - 24 Bit Integer - 24 бита целое - - - - 32 Bit Float - 32 Бит плавающая - - - - Stereo mode: - Режим стерео: - - - - Stereo - Стерео - - - - Joint Stereo - Объединённое стерео - - - - Mono - Моно - - - - Bitrate: - Частота бит: - - - - 64 KBit/s - 64 КБит/с - - - - 128 KBit/s - 128 КБит/с - - - - 160 KBit/s - 160 КБит/с - - - - 192 KBit/s - 192 КБит/с - - - - 256 KBit/s - 256 КБит/с - - - - 320 KBit/s - 320 КБит/с - - - - Use variable bitrate - Использовать плавающую глубину битности - - - - Quality settings - Настройки качества - - - - Interpolation: - Интерполяция: - - - - Zero Order Hold - Нулевая задержка - - - - Sinc Fastest - Синхр. Быстрая - - - - Sinc Medium (recommended) - Синхр. Средняя (рекомендовано) - - - - Sinc Best (very slow!) - Синхр. лучшая (очень медленно!) - - - - Oversampling (use with care!): - Передискретизация (использовать осторожно!): - - - - 1x (None) - 1х (Нет) - - - - 2x - - - - - 4x - - - - - 8x - - - - - Export as loop (remove end silence) - Экспортировать как петлю (убрать тишину в конце) - - - + Export between loop markers Экспорт между метками петли - + + Render Looped Section: + Рендерить закольцованную секцию + + + + time(s) + время(с) + + + + File format settings + Настройки формата файла + + + + File format: + Формат файла: + + + + Sampling rate: + Частота сэмплирования: + + + + 44100 Hz + 44,1 кГц + + + + 48000 Hz + 48 кГц + + + + 88200 Hz + 88,2 кГц + + + + 96000 Hz + 96 кГц + + + + 192000 Hz + 192 кГц + + + + Bit depth: + Глубина бита: + + + + 16 Bit integer + 16-битное целое число + + + + 24 Bit integer + 24-битное целое число + + + + 32 Bit float + 32 Bit с запятой + + + + Stereo mode: + Режим стерео: + + + + Mono + Моно + + + + Stereo + Стерео + + + + Joint stereo + Объединённое стерео + + + + Compression level: + Уровень компрессии: + + + + Bitrate: + Битрейт: + + + + 64 KBit/s + 64 кбит/с + + + + 128 KBit/s + 128 кбит/с + + + + 160 KBit/s + 160 кбит/с + + + + 192 KBit/s + 192 кбит/с + + + + 256 KBit/s + 256 кбит/с + + + + 320 KBit/s + 320 кбит/с + + + + Use variable bitrate + Переменный битрейт + + + + Quality settings + Настройки качества + + + + Interpolation: + Интерполяция: + + + + Zero order hold + Удержание нулевого порядка + + + + Sinc worst (fastest) + Sinc худший (быстрее) + + + + Sinc medium (recommended) + Sinc средний (рекомендовано) + + + + Sinc best (slowest) + Sinc лучший (медленно) + + + + Oversampling: + Сверхсэмплирование: + + + + 1x (None) + 1х (Нет) + + + + 2x + + + + + 4x + + + + + 8x + + + + Start Начать - + Cancel - Отменить + Отмена @@ -2593,90 +4786,45 @@ Please make sure you have write permission to the file and the directory contain Невозможно открыть файл %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% - - Compression level: - - - - (fastest) - - - - (default) - - - - (smallest) - - - - - Expressive - - Selected graph - - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - - Fader - - + + Set value + Установить значение + + + Please enter a new value between %1 and %2: Введите новое значение от %1 до %2: @@ -2684,63 +4832,95 @@ Please make sure you have write permission to the file and the directory contain FileBrowser - + + User content + + + + + Factory content + + + + Browser Обозреватель файлов + Search - + Поиск + Refresh list - + Обновить список FileBrowserTreeWidget - + Send to active instrument-track - Послать на активную инструментальную-дорожку + Отправить на активную инструментальную-дорожку - - Open in new instrument-track/Song Editor - Отркрыть в новой инструментальной дорожке/редакторе песни + + Open containing folder + - - Open in new instrument-track/B+B 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 - Загрузка записи + Загрузка сэмпла - + Please wait, loading sample for preview... - Пж. ждите, запись загружается для просмотра... + Ждите, сэмпл загружается для просмотра... - + Error Ошибка - - does not appear to be a valid - Не похоже на правильное + + %1 does not appear to be a valid %2 file + %1 не похож на правильный %2 файл - - file - файл - - - + --- Factory files --- --- Заводские файлы --- @@ -2749,12 +4929,12 @@ Please make sure you have write permission to the file and the directory contain FlangerControls - Delay Samples + Delay samples Задержка сэмплов - Lfo Frequency + LFO frequency Частота LFO @@ -2764,16 +4944,21 @@ Please make sure you have write permission to the file and the directory contain - Regen + Stereo phase + Regen + Восстан + + + Noise Шум - + Invert Инвертировать @@ -2787,8 +4972,8 @@ Please make sure you have write permission to the file and the directory contain - Delay Time: - Время задержки: + Delay time: + Время дилэя: @@ -2812,146 +4997,485 @@ Please make sure you have write permission to the file and the directory contain - FDBK + PHASE - Feedback Amount: - Объём возврата: + Phase: + - NOISE - Шум + FDBK + ВОЗВ - White Noise Amount: - Объём белого шума: + Feedback amount: + Уровень возврата: - + + NOISE + ШУМ + + + + White noise amount: + Уровень белого шума: + + + Invert Инвертировать - FxLine + 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 + Рисунок волны + + + + MixerLine + + Channel send amount Величина отправки канала - - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Канал эффектов (ЭФ) получает сигнал на вход от одной или нескольких инструментальных дорожек. -В свою очередь его можно подключить к нескольким другим каналам эффектов. ЛММС автоматически предотвращает бесконечные циклы и не позволяет создавать соединения, которые приведут к бесконечному циклу. -Чтобы соединить один канал с другим, выберите канал ЭФфектов и кликните кнопку послать (Send) на канале, куда нужно послать. Регулятор под кнопкой "послать" контролирует уровень сигнала, посылаемого на канал. -Можно убирать и двигать каналы эффектов через контекстное меню, если кликнуть правой кнопкой мыши по каналу эффектов. - - - - + 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 + Выбрать случайный цвет канала - FxMixer + MixerLineLcdSpinBox - + + Assign to: + Назначить на: + + + + New mixer Channel + Новый канал ЭФ + + + + Mixer + + Master Главный - - - - FX %1 - Эффект %1 + + + + Channel %1 + ЭФ %1 - + Volume Громкость - + Mute Тихо - + Solo Соло - FxMixerView + MixerView - - FX-Mixer + + Mixer Микшер Эффектов - - FX Fader %1 - + + Fader %1 + Регулятор ЭФ %1 - + Mute - Тихо + Заглушить - - Mute this FX channel + + Mute this mixer channel Заглушить этот канал ЭФ - + Solo Соло - - Solo FX channel + + Solo mixer channel Соло канал ЭФ - FxRoute + MixerRoute - - + + Amount to send from channel %1 to channel %2 Величина отправки с канала %1 на канал %2 @@ -2959,76 +5483,41 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument - + Bank Банк - + Patch Патч - + Gain - Мощность + Усиление GigInstrumentView - - Open other GIG file - Открыть другой GIG файл - - - - Click here to open another GIG file - Кликните сюда, чтобы открыть другой GIG файл - - - - Choose the patch - Выбрать патч - - - - Click here to change which patch of the GIG file to use - Нажмите здесь для смены используемого патча GIG файла - - - - - Change which instrument of the GIG file is being played - Изменить инструмент, который воспроизводит GIG файл - - - - Which GIG file is currently being used - Какой GIG файл сейчас используется - - - - Which patch of the GIG file is currently being used - Какой патч GIG файла сейчас используется - - - - Gain - УСИЛ - - - - Factor to multiply samples by - Фактор умножения сэмплов - - - + + Open GIG file Открыть GIG файл - + + Choose patch + Выбрать патч + + + + Gain: + Усиление: + + + GIG Files (*.gig) GIG Файлы (*.gig) @@ -3036,52 +5525,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 Подготовка редактора автоматизации @@ -3089,24 +5578,29 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio - + Arpeggio Арпеджио - + Arpeggio type Тип арпеджио - + Arpeggio range Диапазон арпеджио + + + Note repeats + + Cycle steps - + Шагов в цикле @@ -3116,7 +5610,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri Miss rate - + Частость обхода @@ -3182,139 +5676,119 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggioView - + ARPEGGIO ARPEGGIO - - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Арпеджио — разновидность исполнения аккордов на фортепиано и струнных инструментах, которая оживляет звучание. Струнф таких инструментов играются перебором по аккордам, как на арфе, когда звуки аккорда следуют один за другим. Типичные арпеджио - мажорные и минорные триады, среди которых можно выбрать и другие. - - - + RANGE RANGE - + Arpeggio range: Диапазон арпеджио: - + octave(s) Октав[а/ы] - - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Используйте эту ручку, чтобы установить диапазон арпеджио (в октавах). Выбранный тип арпеджио будет охватывать указанное количество октав. + + REP + - + + Note repeats: + + + + + time(s) + + + + CYCLE ЦИКЛ - + Cycle notes: - + Нот в цикле: - + note(s) нота(ы) - - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - - - - + SKIP ПРОПУСК - + Skip rate: Частота пропуска: - - - + + + % % - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - + MISS - ПРОПУСК + MISS - + Miss rate: - + Частость обхода: - - The miss function will make the arpeggiator miss the intended note. - - - - + TIME - TIME + ВРЕМЯ - + Arpeggio time: Период арпеджио: - + ms мс - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Регулировка периода арпеджио - время (в миллисекундах), которое должен звучать каждый тон арпеджио. - - - + GATE GATE - + Arpeggio gate: Шлюз арпеджио: - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Регулировка шлюза арпеджио, показывает процентную долю каждого тона арпеджио, которая будет воспроизведена. Простой способ создавать стаккато-арпеджио. - - - + Chord: Аккорд: - + Direction: Направление: - + Mode: Режим: @@ -3322,488 +5796,488 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 + Мажор бибоп - Major bebop - + Dominant bebop + Бибоп доминанта - Dominant bebop - + Blues + Блюз - Blues - Blues - - - Arabic Арабский - + Enigmatic - + Загадочный - + Neopolitan Неополитанский - + Neopolitan minor Неополитанский минор - + Hungarian minor - + Венгерский минор + + + + Dorian + Дорийский лад - Dorian - Дорийский + Phrygian + Фригийский лад - Phrygian - Фригийский + Lydian + Лидийский лад - Lydian - Лидийский + Mixolydian + Миксолидийский лад - Mixolydian - Миксолидийский + Aeolian + Эолийский лад - Aeolian - Эолийский + Locrian + Локрийский лад - Locrian - + Minor + Минор - Minor - - - - Chromatic Хроматический - + Half-Whole Diminished - + Вполовину уменьшенный - + 5 5 - + Phrygian dominant - + Фригийская доминанта - + Persian - + Персидский - + Chords Аккорды - + Chord type Тип аккорда - + Chord range Диапазон аккорда @@ -3811,328 +6285,306 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionNoteStackingView - + STACKING - СТЫКОВКА + СКЛАДЫВ. - + Chord: Аккорд: - + RANGE ДИАП - + Chord range: Диапазон аккорда: - + octave(s) Октав[а/ы] - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Эта ручка изменяет диапазон аккорда, который будет содержать указанное число октав. - InstrumentMidiIOView - + ENABLE MIDI INPUT ВКЛ MIDI ВВОД - - - CHANNEL - CHANNEL - - - - - VELOCITY - VELOCITY - - - + ENABLE MIDI OUTPUT ВКЛ MIDI ВЫВОД - - PROGRAM - PROGRAM + + + 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 - 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 - Определяет базовую скорость нормализации для MiDi инструментов при громкости ноты 100% + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + Указать нормализацию базовой силы нажатия MIDI-инструментов на 100% силы нажатия. - + BASE VELOCITY - БАЗОВАЯ СКОРОСТЬ + БАЗОВ. СКОРОСТЬ InstrumentMiscView - + MASTER PITCH - Мастер-высота + ОСНОВНОЙ ТОН - - Enables the use of 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 + Уровень низких - LowPass - Низ.ЧФ + Hi-pass + Уровень высоких - HiPass - Выс.ЧФ + Band-pass csg + Полосовой csg - BandPass csg - Сред.ЧФ csg + Band-pass czpg + Полосовой czpg - BandPass czpg - Сред.ЧФ czpg + Notch + Notch (вырез) - Notch - Полосно-заграждающий + All-pass + Пропускать все - Allpass - Все проходят - - - Moog Муг + + + 2x Low-pass + 2x ФНЧ + - 2x LowPass - 2х Низ.ЧФ + RC Low-pass 12 dB/oct + RC ФНЧ 12дБ/окт - RC LowPass 12dB - RC Низ.ЧФ 12дБ + RC Band-pass 12 dB/oct + RC полосовой 12 дБ/окт - RC BandPass 12dB - RC Сред.ЧФ 12 дБ + RC High-pass 12 dB/oct + RC ФВЧ 12 дБ/окт - RC HighPass 12dB - RC Выс.ЧФ 12дБ + RC Low-pass 24 dB/oct + RC ФНЧ 24 дБ/окт - RC LowPass 24dB - RC Низ.ЧФ 24дБ + RC Band-pass 24 dB/oct + RC полосовой 24 дБ/окт - RC BandPass 24dB - RC Сред.ЧФ 24дБ + RC High-pass 24 dB/oct + RC ФВЧ 24 дБ/окт - RC HighPass 24dB - RC Выс.ЧФ 24дБ + Vocal Formant + Формантный - Vocal Formant Filter - Фильтр Вокальной форманты - - - 2x Moog 2x Муг + + + SV Low-pass + SV нижних частот + - SV LowPass - SV Низ.ЧФ + SV Band-pass + SV полосовой - SV BandPass - SV Сред.ЧФ + SV High-pass + SV верхних частот - SV HighPass - SV Выс.ЧФ + SV Notch + SV Notch (вырез) - SV Notch - + Fast Formant + Быстрый формантный - Fast Formant - - - - Tripole - Триполи + Трёхполюсный InstrumentSoundShapingView - + TARGET - ЦЕЛЬ + РАЗМЕТКА - - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Эта вкладка позволяет вам настроить огибающие. Они очень важны для настройки звучания. -Например, с помощью огибающей громкости вы можете задать зависимость громкости звучания от времени. Если вам понадобится эмулировать мягкие струнные, просто задайте больше времени нарастания и исчезновения звука. С помощью обгибающих и низкочастотного осцилятора (LFO) вы в несколько щелчков мыши сможете создать просто невероятные звуки! - - - + FILTER ФИЛЬТР - - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Здесь вы можете выбрать фильтр для дорожки этого инструмента. Фильтры могут довольно сильно менять звучание. - - - + FREQ ЧАСТ - - cutoff frequency: - Срез частот: + + Cutoff frequency: + Частота среза: - + Hz Гц - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Эта ручка устанавливает частоту среза для выбранного фильтра. К примеру, ФНЧ будет срезать сигнал на частотах выше частоты среза, полосно-пропускающий фильтр будет хорошо пропускать сигнал только на заданной частоте и так далее... + + Q/RESO + УР/РЕЗО - - RESO - RESO + + Q/Resonance: + УР/Резонанса: - - Resonance: - Усиление: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Эта ручка задаёт количество резонанса для фильтра, этим определяется насколько нужно усилить ближайшие к отрезанным частоты. - - - + Envelopes, LFOs and filters are not supported by the current instrument. Огибающие, LFO и фильтры не поддерживаются этим инструментом. @@ -4140,21 +6592,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack - - With this knob you can set the volume of the opened channel. - Регулировка громкости текущего канала. - - - + unnamed_track - безымянная_дорожка + дорожка без имени - + Base note Опорная нота + + + First note + + + + + Last note + По посл. ноте + Volume @@ -4177,17 +6634,27 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX channel + Mixer channel Канал ЭФ - Master Pitch - Основная тональность + Master pitch + Основной тон - - + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + Default preset Основная предустановка @@ -4195,213 +6662,274 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrackView - + Volume Громкость - + Volume: - Громкость: + Уровень громкости: - + VOL - ГРОМ + УР - + Panning Баланс - + Panning: Баланс: - + PAN БАЛ - + MIDI MIDI - + Input Вход - + Output Выход - - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 ЭФ %1: %2 InstrumentTrackWindow - + GENERAL SETTINGS ОСНОВНЫЕ НАСТРОЙКИ - - Use these controls to view and edit the next/previous track in the song editor. - Используйте эти регуляторы, чтобы видеть и редактировать дорожку в редакторе песни. + + Volume + Громкость - - Instrument volume - Громкость инструмента - - - + Volume: Громкость: - + VOL ГРОМ - + Panning Баланс - + Panning: - Стереобаланс: + Баланс: - + PAN БАЛ - + Pitch Тональность - + Pitch: Тональность: - + cents - процентов + сотые - + PITCH ТОН - + Pitch range (semitones) Диапазон тональности (полутона) - + RANGE ДИАП - - FX channel + + Mixer channel Канал ЭФ - - FX + + CHANNEL ЭФ - + Save current instrument track settings in a preset file Сохранить текущую инструментаьную дорожку в файл предустановок - - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Нажать здесь, чтобы сохранить настройки текущей инстр. дорожки в файл предустановок. Позже можно загрузить эту предустановку двойным кликом в браузере предустановок. - - - + SAVE Сохранить - + Envelope, filter & LFO - + Огибающ., фильтр и LFO - + Chord stacking & arpeggio - + Аккорды и арпеджио - + Effects Эффекты - - MIDI settings - Параметры MIDI + + 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 + + + + + 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: @@ -4430,33 +6958,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView - + Link channels Связать каналы - + Value: Значение: - - - Sorry, no help available. - Извините, справки нет. - 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: @@ -4534,137 +7075,127 @@ You can remove and move FX channels in the context menu, which is accessed by ri LFO - - LFO Controller - Контроллер LFO + + BASE + BASE - BASE - БАЗА - - - - Base amount: - Базовое значение: + Base: + Основа: - todo - доделать + FREQ + FREQ - - SPD - СКОР + + LFO frequency: + Частота LFO: - - LFO-speed: - Скорость LFO: - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Эта ручка устанавлявает скорость LFO. Чем больше значение, тем больше частота осциллятора. - - - + AMNT ГЛУБ - + Modulation amount: - Количество модуляции: + Глубина модуляции: - - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Эта ручка устанавливает глубину модуляции для LFO. Чем больше значение, тем в большей степени выбранная характеристика (н-р, громкость или частота среза) будет зависеть от ГНЧ(LFO). - - - + PHS ФАЗА - + Phase offset: Сдвиг фазы: - - degrees + + degrees градусы - - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Эта ручка устанавливает начальную фазу НизкоЧастотного Осциллятора (LFO), т. е. точку, с которой осциллятор начинает вырабатывать сигнал. Например, если вы задали синусоидальную форму сигнала и начальную фазу 180º, волна сначала пойдёт вниз, а не вверх, так же как и для квадратной волны. + + Sine wave + Синусоида - - Click here for a sine-wave. - Синусоида. + + Triangle wave + Треугольная волна - - Click here for a triangle-wave. - Сгенерировать треугольный сигнал. + + Saw wave + Пило-волна - - Click here for a saw-wave. - Сгенерировать зигзаг. + + Square wave + Квадрат - - Click here for a square-wave. - Сгенерировать квадрат. + + Moog saw wave + Муг пило-волна - - Click here for a moog saw-wave. - Нажать здесь для зигзагообразной муг волны. + + Exponential wave + Экспоненциальная волна - - Click here for an exponential wave. - Генерировать экспоненциальный сигнал. + + White noise + Белый шум - - Click here for white-noise. - Сгенерировать белый шум. - - - - Click here for a user-defined shape. + + 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 - LmmsCore + Engine - + Generating wavetables - Генерация волн + Генерация волновых таблиц - + Initializing data structures Инициализация структуры данных - + Opening audio and midi devices - Открываем аудио и миди устройства + Открываем аудио и MIDI-устройства - + Launching mixer threads Запускаем потоки микшера @@ -4672,506 +7203,513 @@ Double click to pick a file. MainWindow - Settings - Параметры - + 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 - Громкость 1 оциллятора + Громкости - + My Computer Мой компьютер - - Loading background artwork - Загружаем фоновый рисунок - - - + &File - &F Файл + &Файл - + &New - &N Новый + &Создать - - New from template - Новый на основе шаблона - - - + &Open... &Открыть... - - &Recently Opened Projects - &R Недавние проекты + + 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... + Экс&порт MIDI... - + &Quit - &Q Выйти + В&ыход - + &Edit - &E Правка - - - - Undo - Откатить действие - - - - Redo - Возврат действия + &Правка + Undo + Отменить действие + + + + Redo + Вернуть действие + + + Settings Параметры - + &View - &Просмотр + &Вид - + &Tools - &T Сервис + С&ервис - + &Help - &H Справка + &Справка - + Online Help Помощь онлайн - + Help Справка - - What's This? - Что это? - - - + About О программе - + Create new project Создать новый проект - + Create new project from template Создать новый проект по шаблону - + Open existing project Открыть существующий проект - + Recently opened projects Недавние проекты - + Save current project Сохранить текущий проект - + Export current project Экспорт проекта - - What's this? - Что это? + + Metronome + Метроном - - Toggle metronome - Включить метроном + + + Song Editor + Композитор - - Show/hide Song-Editor - Показать/скрыть музыкальный редактор + + + Beat+Bassline Editor + Ритм+Бас Композитор - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Сим запускается или скрывается музыкальный редактор. С его помощью вы можете редактировать композицию и задавать время воспроизведения каждой дорожки. -Также вы можете вставлять и передвигать записи прямо в списке воспроизведения. + + + Piano Roll + Редактор нот - - Show/hide Beat+Bassline Editor - Показать/скрыть Ритм+Бас редактор + + + Automation Editor + Редактор автоматизации - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Сим запускается ритм-бас редактор. Он необходим для установки ритма, открытия, добавления и удаления каналов, а также вырезания, копирования и вставки ритм-бас шаблонов, мелодий и т. п. + + + Mixer + Микшер Эффектов - - Show/hide Piano-Roll - Показать/Скрыть Редактор Нот - - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Запуск редатора нот. С его помощью вы можете легко редактировать мелодии. - - - - Show/hide Automation Editor - Показать/скрыть редактор автоматизации - - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Показать/скрыть окно редактора автоматизации. С его помощью вы можете легко редактироватьдинамику выбранных величин. - - - - Show/hide FX Mixer - Показать/скрыть микшер ЭФ - - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Скрыть/показать микшер ЭФфектов. Он является мощным инструментом для управления эффектами. Вы можете вставлять эффекты в различные каналы. - - - - Show/hide project notes - Показать/скрыть заметки проекта - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Эта кнопка показывает/прячет окно с заметками. В этом окне вы можете помещать любые комментарии к своей композиции. - - - + 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 . - - Song Editor - Показать/скрыть музыкальный редактор - - - - Beat+Bassline Editor - Показать/скрыть ритм-бас редактор - - - - Piano Roll - Показать/скрыть нотный редактор - - - - Automation Editor - Показать/скрыть редактор автоматизации - - - - FX Mixer - Показать/скрыть микшер ЭФ - - - - Project Notes - Показать/скрыть заметки к проекту - - - + 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 - ПЕРИОД + ТАКТ @@ -5179,12 +7717,31 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Numerator - Числитель + Число долей Denominator - Знаменатель + Длительность доли + + + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + @@ -5197,30 +7754,49 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. unnamed_midi_controller - нераспознанный миди контроллер + MIDI-контроллер без имени MidiImport - - + + Setup incomplete - установка не завершена + Установка не завершена - - You do not have 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 SoundFont, указать его в параметрах и попробовать снова. + + 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 при компиляции ЛММС, он используется для добавления основного звука в импортируемые Миди файлы, поэтому звука не будет после импорта этого миди файла. + Вы не включили поддержку проигрывателя SoundFont2 при компиляции LMMS, он используется для добавления основного звука в импортируемые MIDI-файлы, поэтому звука не будет после импорта этого MIDI-файла. - + + MIDI Time Signature Numerator + Число долей времени MIDI + + + + MIDI Time Signature Denominator + Длительность доли времени MIDI + + + + Numerator + Число долей + + + + Denominator + Длительность доли + + + Track Дорожка @@ -5240,17 +7816,252 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. JACK-сервер, похоже, не запущен. + + 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 + В&ыход + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + Ре-диез D + + + + Select All + Выбрать всё + + + + A + Ля диез A + + MidiPort Input channel - Вход + Канал входа Output channel - Выход + Канал выхода @@ -5280,7 +8091,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Output MIDI program - Программа для вывода MiDi + Программа для вывода MIDI @@ -5301,603 +8112,603 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiSetupWidget - - DEVICE - УСТРОЙСТВО + + Device + Устройство MonstroInstrument - - Osc 1 Volume - Осциллятор 1 громкость + + Osc 1 volume + Ген 1 громкость - - Osc 1 Panning - Осциллятор 1 баланс + + Osc 1 panning + Ген 1 баланс - - Osc 1 Coarse detune - + + Osc 1 coarse detune + Ген 1 грубая подстройка - - Osc 1 Fine detune left - + + Osc 1 fine detune left + Ген 1 точная подстройка слева - - Osc 1 Fine detune right - + + Osc 1 fine detune right + Ген 1 точная подстройка справа - - Osc 1 Stereo phase offset - + + Osc 1 stereo phase offset + Ген 1 сдвиг стерео-фазы - - Osc 1 Pulse width - + + Osc 1 pulse width + Осц 1 длина импульса - - Osc 1 Sync send on rise - + + Osc 1 sync send on rise + Осц 1 посыл синхро на подъёме - - Osc 1 Sync send on fall - + + Osc 1 sync send on fall + Осц 1 посыл синхро на спаде - - Osc 2 Volume - Осциллятор 2 громкость + + Osc 2 volume + Ген 2 громкость - - Osc 2 Panning - Осциллятор 2 баланс + + Osc 2 panning + Ген 2 баланс - - Osc 2 Coarse detune - + + Osc 2 coarse detune + Ген 2 грубая подстройка - - Osc 2 Fine detune left - + + Osc 2 fine detune left + Ген 2 точная подстройка слева - - Osc 2 Fine detune right - + + Osc 2 fine detune right + Ген 2 точная подстройка справа - - Osc 2 Stereo phase offset - + + Osc 2 stereo phase offset + Ген 2 сдвиг стерео-фазы - - Osc 2 Waveform - + + Osc 2 waveform + Осц 2 форма волны - - Osc 2 Sync Hard - + + Osc 2 sync hard + Осц 2 синхро сильная - - Osc 2 Sync Reverse - + + Osc 2 sync reverse + Осц 2 синхро обратная - - Osc 3 Volume - Осциллятор 3 громкость + + Osc 3 volume + Ген 3 громкость - - Osc 3 Panning - Осциллятор 3 баланс + + Osc 3 panning + Ген 3 баланс - - Osc 3 Coarse detune - + + Osc 3 coarse detune + Ген 3 грубая подстройка - + Osc 3 Stereo phase offset - + Ген 3 сдвиг стерео-фазы - - Osc 3 Sub-oscillator mix - + + Osc 3 sub-oscillator mix + Осц 3 доп-осциллятор микс - - Osc 3 Waveform 1 - + + Osc 3 waveform 1 + Осц 3 форма волны 1 - - Osc 3 Waveform 2 - + + Osc 3 waveform 2 + Осц 3 форма волны 2 - - Osc 3 Sync Hard - + + Osc 3 sync hard + Осц 3 синхр сильная - - Osc 3 Sync Reverse - + + Osc 3 Sync reverse + Осц 3 синхр обратная - - LFO 1 Waveform - + + LFO 1 waveform + Форма 1 LFO волны - - LFO 1 Attack - + + LFO 1 attack + LFO 1 атака - - LFO 1 Rate - + + LFO 1 rate + LFO 1 частота - - LFO 1 Phase - + + LFO 1 phase + LFO 1 фаза - - LFO 2 Waveform - + + LFO 2 waveform + Форма 2 LFO волны - - LFO 2 Attack - + + LFO 2 attack + LFO 2 атака - - LFO 2 Rate - + + LFO 2 rate + LFO 2 частота - - LFO 2 Phase - + + LFO 2 phase + LFO 2 фаза - - Env 1 Pre-delay - + + Env 1 pre-delay + Огиб 1 предзадержка - - Env 1 Attack - + + Env 1 attack + Огиб 1 атака - - Env 1 Hold - + + Env 1 hold + Огиб. 1 удержание - - Env 1 Decay - + + Env 1 decay + Огиб. 1 спад - - Env 1 Sustain - + + Env 1 sustain + Огиб. 1 выдержка - - Env 1 Release - + + Env 1 release + Огиб. 1 затухание - - Env 1 Slope - + + Env 1 slope + Огиб 1 уклон - - Env 2 Pre-delay - + + Env 2 pre-delay + Огиб 2 предзадержка - - Env 2 Attack - + + Env 2 attack + Огиб 2 атака - - Env 2 Hold - + + Env 2 hold + Огиб. 2 удержание - - Env 2 Decay - + + Env 2 decay + Огиб. 2 спад - - Env 2 Sustain - + + Env 2 sustain + Огиб. 2 выдержка - - Env 2 Release - + + Env 2 release + Огиб. 2 затухание - - Env 2 Slope - Кривая 2 Наклон + + Env 2 slope + Огиб 2 уклон - - Osc2-3 modulation - + + Osc 2+3 modulation + Осц 2+3 модуляция - + Selected view Выбранный вид - - Vol1-Env1 - + + Osc 1 - Vol env 1 + Ген 1 - Громк. огиб. 1 - - Vol1-Env2 - + + Osc 1 - Vol env 2 + Ген 1 - Громк. огиб. 2 - - Vol1-LFO1 - + + Osc 1 - Vol LFO 1 + Ген 1 - Громк. LFO 1 - - Vol1-LFO2 - + + Osc 1 - Vol LFO 2 + Ген 1 - Громк. LFO 2 - - Vol2-Env1 - + + Osc 2 - Vol env 1 + Ген 2 - Громк. огиб. 1 - - Vol2-Env2 - + + Osc 2 - Vol env 2 + Ген 2 - Громк. огиб. 2 - - Vol2-LFO1 - + + Osc 2 - Vol LFO 1 + Ген 2 - Громк. LFO 1 - - Vol2-LFO2 - + + Osc 2 - Vol LFO 2 + Ген 2 - Громк. LFO 2 - - Vol3-Env1 - + + Osc 3 - Vol env 1 + Ген 3 - Громк. огиб. 1 - - Vol3-Env2 - + + Osc 3 - Vol env 2 + Ген 3 - Громк. огиб. 2 - - Vol3-LFO1 - + + Osc 3 - Vol LFO 1 + Ген 3 - Громк. LFO 1 - - Vol3-LFO2 - + + Osc 3 - Vol LFO 2 + Ген 3 - Громк. LFO 2 - - Phs1-Env1 - + + Osc 1 - Phs env 1 + Ген 1 - Фаза огиб. 1 - - Phs1-Env2 - + + Osc 1 - Phs env 2 + Ген 1 - Фаза огиб. 2 - - Phs1-LFO1 - + + Osc 1 - Phs LFO 1 + Ген 1 - Фаза LFO 1 - - Phs1-LFO2 - + + Osc 1 - Phs LFO 2 + Ген 1 - Фаза LFO 2 - - Phs2-Env1 - + + Osc 2 - Phs env 1 + Ген 2 - Фаза огиб. 1 - - Phs2-Env2 - + + Osc 2 - Phs env 2 + Ген 2 - Фаза огиб. 2 - - Phs2-LFO1 - + + Osc 2 - Phs LFO 1 + Ген 2 - Фаза LFO 1 - - Phs2-LFO2 - + + Osc 2 - Phs LFO 2 + Ген 2 - Фаза LFO 2 - - Phs3-Env1 - + + Osc 3 - Phs env 1 + Ген 3 - Фаза огиб. 1 - - Phs3-Env2 - + + Osc 3 - Phs env 2 + Ген 3 - Фаза огиб. 2 - - Phs3-LFO1 - + + Osc 3 - Phs LFO 1 + Ген 3 - Фаза LFO 1 - - Phs3-LFO2 - + + Osc 3 - Phs LFO 2 + Ген 3 - Фаза LFO 2 - - Pit1-Env1 - + + Osc 1 - Pit env 1 + Осц 1 - Pit огиб 1 - - Pit1-Env2 - + + Osc 1 - Pit env 2 + Осц 1 - Pit огиб 2 - - Pit1-LFO1 - + + Osc 1 - Pit LFO 1 + Осц 1 - Pit LFO 1 - - Pit1-LFO2 - + + Osc 1 - Pit LFO 2 + Осц 1 - Pit LFO 2 - - Pit2-Env1 - + + Osc 2 - Pit env 1 + Осц 2 - Pit огиб 1 - - Pit2-Env2 - + + Osc 2 - Pit env 2 + Осц 2 - Pit огиб 2 - - Pit2-LFO1 - + + Osc 2 - Pit LFO 1 + Осц 2 - Pit LFO 1 - - Pit2-LFO2 - + + Osc 2 - Pit LFO 2 + Осц 2 - Pit LFO 2 - - Pit3-Env1 - + + Osc 3 - Pit env 1 + Осц 3 - Pit огиб 1 - - Pit3-Env2 - + + Osc 3 - Pit env 2 + Осц 3 - Pit огиб 2 - - Pit3-LFO1 - + + Osc 3 - Pit LFO 1 + Осц 3 - Pit LFO 1 - - Pit3-LFO2 - + + Osc 3 - Pit LFO 2 + Осц 3 - Pit LFO 2 - - PW1-Env1 - + + Osc 1 - PW env 1 + Осц 1 - PW Огиб 1 - - PW1-Env2 - + + Osc 1 - PW env 2 + Осц 1 - PW Огиб 2 - - PW1-LFO1 - + + Osc 1 - PW LFO 1 + Осц 1 - PW LFO 1 - - PW1-LFO2 - + + Osc 1 - PW LFO 2 + Осц 1 - PW LFO 2 - - Sub3-Env1 - + + Osc 3 - Sub env 1 + Осц 3 - Доп огиб 1 - - Sub3-Env2 - + + Osc 3 - Sub env 2 + Осц 3 - Доп огиб 2 - - Sub3-LFO1 - + + Osc 3 - Sub LFO 1 + Осц 3 - Доп LFO 1 - - Sub3-LFO2 - + + 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 Случайное сглаживание @@ -5905,453 +8716,240 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MonstroView - + Operators view Операторский вид - - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - Операторский вид содержит все операторы. Они включают и звучащие операторы (осцилляторы) и беззвучные операторы или модуляторы: Низко-частотные осцилляторы и огибающие. - -Регуляторы и другие виджеты в Операторском виде имеют свои подписи "Что это?", можно получить по ним более детальную справку таким образом. - - - + Matrix view Матричный вид - - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - Матричный вид содержит матрицу модуляции. Здесь можно определить модуляционное отношение между разными операторами. Каждый слышимый оператор (осцилляторы 1-3) имеют 3-4 свойства, которые можно модулировать любыми модуляторами. Используя больше модуляций увеличивается нагрузка на процессор. - -Вид делится на цели модуляции, сгруппированные на целевой осциллятор. Доступные цели : громкость, тон, фаза, ширина пульсации и отношение с подчиненным (под-) осциллятором. Отметим что некоторые цели определены только для одного осциллятора. - -Каждая цель модуляции имеет 4 регулятора, один на каждый модулятор. По умолчанию регуляторы установлены на 0, то есть без модуляции. Включая регулятор на 1 ведёт к тому, что модулятор влияет на цель модуляции на столько на сколько возможно. Включая его на -1 делает то же, но с обратной модуляцией. - - - - - + + + Volume Громкость - - - + + + Panning Баланс - - - + + + Coarse detune - Грубая расстройка + Грубая подстройка - - - + + + semitones полутона - - - Finetune left - + + + Fine tune left + Точная настройка слева - - - - + + + + cents - + Центы - - - Finetune right - + + + 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 Osc2 with Osc3 - Смешать Осц2 с Осц3 + + Mix osc 2 with osc 3 + Смешать осц. 2 с осц. 3 - - Modulate amplitude of Osc3 with Osc2 - Модулировать амплитуду осциллятора 3 сигналом с осц2 + + Modulate amplitude of osc 3 by osc 2 + Модулировать амплитуду осц. 3 сигналом с 2 - - Modulate frequency of Osc3 with Osc2 - Модулировать частоту осциллятора 3 сигналом с осц2 + + Modulate frequency of osc 3 by osc 2 + Модулировать частоту осц. 3 сигналом с 2 - - Modulate phase of Osc3 with Osc2 - Модулировать фазу Осц3 осциллятором2 + + Modulate phase of osc 3 by osc 2 + Модулировать фазу осц. 3 сигналом с 2 - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - Регулятор CRS меняет настройку осциллятора 1 в размере полутона. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - Регулятор CRS меняет настройку осциллятора 2 в размере полутона. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - Регулятор CRS меняет настройку осциллятора 3 в размере полутона. - - - - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL и FTR меняют подстройку осциллятора для левого и правого канала соответственно. Они могут добавить стерео расстраивания осциллятора, которое расширяет стерео картину и создаёт иллюзию космоса. - - - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - Регулятор SPO меняет фазовую разницу между левым и правым каналами. Высокая разница создаёт более широкую стерео картину. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - PW регулятор контролирует ширину пульсаций, также известную как рабочий цикл осциллятора 1. Осциллятор 1 это цифровой импульсный волновой генератор, он не воспроизводит сигнал с ограниченной полосой, это значит, что его можно использовать как слышимый осциллятор, но приведёт к наложению сигналов (или сглаживанию). Его можно использовать и как не слышимый источник синхронизирующего сигнала, для использования в синхронизации осцилляторов 2 и 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Посылать синхронизацию при повышении: при включении, сигнал синхронизации посылается каждый раз когда состояние осциллятора 1 меняется с низкого на высокое, т.е. когда амплитуда меняется от -1 до 1. -Тон осциллятора 1, фаза и ширина пульсаций может влиять на время синхронизации, но громкость не имеет эффекта. Сигнал синхронизации посылается независимо для левого и правого каналов. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Посылать синхронизацию при падении: при включении, сигнал синхронизации посылается каждый раз когда состояние осциллятора 1 меняется с выского на низкое, т.е. когда амплитуда меняется от 1 до -1. -Тон осциллятора 1, фаза и ширина пульсаций может влиять на время синхронизации, но громкость не имеет эффекта. Сигнал синхронизации посылается независимо для левого и правого каналов. - - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Жесткая синхр. : Каждый раз при получении осциллятором сигнала синхронизации от осциллятора 1, его фаза сбрасывается до 0 + его граница фазы, какой бы она ни была. - - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Обратная синхронизация: Каждый раз при получении сигнала синхронизации от осциллятора 1, амплитуда осцилятора переворачивается. - - - - Choose waveform for oscillator 2. - Выбрать форму волны для осциллятора 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Выберите форму волны для первого доп. осциллятора осциллятора 3. Осциллятор 3 может мягко переходить между двумя разными волнами. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Выберите форму волны для второго доп. осциллятора осциллятора 3. Осциллятор 3 может мягко переходить между двумя разными волнами. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - SUB меняет смешивание двух доп. осяцилляторов осциллятора 3. Каждый доп. осц. может быть установлен для создания разных волн и осциллятор 3 может мягко переходить между ними. Все входящие модуляции для осциллятора 3 применяются на оба доп.осц./волны одним и тем же образом. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - В дополнение к выделенным модуляторам Монстро позволяет выходу осциллятора 2 модулировать осцллятор 3. - -Смешанный (Mix) режим значит без модуляции: выходы осцилляторов просто смешиваются друг с другом. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - В дополнение к выделенным модуляторам Монстро позволяет выходу осциллятора 2 модулировать осцллятор 3. - -AM режим значит Амплитуда Модуляции: Осциллятор 2 модулирует амплитуду (громкость) осциллятора 3. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - В дополнение к выделенным модуляторам Монстро позволяет выходу осциллятора 2 модулировать осцллятор 3. - -FM (ЧМ) режим значит Частотная Модуляция: Осциллятор 2 модулирует частоту (pitch, тональность) осциллятора 3. Частота модуляции происходит в фазе модуляции, которая даёт более стабильный общий тон, чем "чистая" частотная модуляция. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - В дополнение к выделенным модуляторам Монстро позволяет выходу осциллятора 2 модулировать осцллятор 3. - -PM (ФМ) режим значит фазовая модуляция: Осциллятор 2 модулирует фазу осциллятора 3. Это отличается от частотной модуляции тем, что изменения фаз не суммируются. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Выберите форму волны для LFO 1 (НизкоЧастотныйГенератор). -"Random" (Случайно) и "Random-smooth" (случайное сглаживание) - это специальные волны: они создают случаный сигнал, где частота LFO контролирует как часто изменяется состояние генератора (LFO). -Сглаженная версия переходит между этими состояниями с косинусоидальной интерплояцией. Эти случайные режимы могут быть использованы, чтобы дать "жизни" вашим настройкам - добавить немного аналоговой непредсказуемости... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Выберите форму волны для LFO 2 (НизкоЧастотныйГенератор). -"Random" (Случайно) и "Random-smooth" (случайное сглаживание) - это специальные волны: они создают случаный сигнал, где частота LFO контролирует как часто изменяется состояние генератора (LFO). -Сглаженная версия переходит между этими состояниями с косинусоидальной интерплояцией. Эти случайные режимы могут быть использованы, чтобы дать "жизни" вашим настройкам - добавить немного аналоговой непредсказуемости... - - - - - Attack causes the LFO to come on gradually from the start of the note. - Атака отвечает за плавность поведения LFO от начала ноты. - - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - Rate (Частота) устанавливает скорость LFO, измеряемую в миллисекундах за цикл. Может синхронизироваться с темпом. - - - - - PHS controls the phase offset of the LFO. - PHS контролирует сдвиг фазы LFO (НЧГ). - - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE предзадержка, задерживает старт огибающей от начала ноты. 0 значит без задержки. - - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - ATT атака контролирует как быстро огибающая наращивается на старте, измеряясь в милисекундах. Значение 0 значит мгновенно. - - - - - HOLD controls how long the envelope stays at peak after the attack phase. - HOLD (УДЕРЖ) контролирует как долго огибающая остаётся на пике после фазы атаки. - - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - DEC (decay) затухание контролирует как быстро огибающая спадает с пикового значения, измеряется в милисекундах, как долго будет идти с пика до нуля. Реальное затухание может быть короче, если используется выдержка. - - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - SUS (sustain) выдержка, контролирует уровень огибающей. Затухание фазы не пойдёт ниже этого уровня пока нота удерживается. - - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - REL (release) отпуск контролирует как долго нота отпускается, измеряясь в долготе падения от пика до нуля. Реальный отпуск может быть короче, в зависимости от фазы, в которой нота отпущена. - - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - Регулятор наклона контролирует кривую или образ огибающей. Значение 0 создаёт прямые подъёмы и спады. Отрицательные величины создают кривые с замедленным началом, быстрым пиком и снова замедленным спадом. Позитивные значения создают кривые которые начинаются и кончаются быстро, но долбше остаются на пиках. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount Глубина модуляции @@ -6371,22 +8969,22 @@ PM (ФМ) режим значит фазовая модуляция: Осцил Dry - Высушить + Чистый - Dry Gain: - + Dry gain: + Чистый звук усиление: Stages - + Уровни - Lowpass stages: - + Low-pass stages: + Уровни прохода низких: @@ -6395,109 +8993,109 @@ PM (ФМ) режим значит фазовая модуляция: Осцил - Swap left and right input channel for reflections - Поменять вход левого и правого канала для отзвуков + Swap left and right input channels for reflections + Поменять левый и правый каналы входа для отражений NesInstrument - - Channel 1 Coarse detune - Канал 1 - грубая расстройка + + Channel 1 coarse detune + Грубая подстройка канала 1 - - Channel 1 Volume - Громкость 1 канала + + Channel 1 volume + Громкость канала 1 - - Channel 1 Envelope length - Канал 1 - Длина огибающей + + Channel 1 envelope length + Длительность огибающей канала 1 - - Channel 1 Duty cycle - + + Channel 1 duty cycle + Рабочий цикл канала 1 - - Channel 1 Sweep amount - + + Channel 1 sweep amount + Уровень колебаний канала 1 - - Channel 1 Sweep rate - + + Channel 1 sweep rate + Частота колебаний канала 1 - + Channel 2 Coarse detune - + Грубая подстройка канала 2 - + Channel 2 Volume - Громкость 2 канала + Громкость канала 2 - - Channel 2 Envelope length - + + Channel 2 envelope length + Длительность огибающей канала 2 - - Channel 2 Duty cycle - + + Channel 2 duty cycle + Рабочий цикл канала 2 - - Channel 2 Sweep amount - + + Channel 2 sweep amount + Уровень колебаний канала 2 - - Channel 2 Sweep rate - + + Channel 2 sweep rate + Частота колебаний канала 2 - - Channel 3 Coarse detune - + + Channel 3 coarse detune + Грубая подстройка канала 3 - - Channel 3 Volume - Громкость 3 канала + + Channel 3 volume + Громкость канала 3 - - Channel 4 Volume - Громкость 4 канала + + Channel 4 volume + Громкость канала 4 - - Channel 4 Envelope length - + + Channel 4 envelope length + Длительность огибающей канала 4 - - Channel 4 Noise frequency - + + Channel 4 noise frequency + Частота шума канала 4 - - Channel 4 Noise frequency sweep - + + Channel 4 noise frequency sweep + Частота помех колебаний канала 4 - + Master volume - Основная громкость + Главная громкость - + Vibrato Вибрато @@ -6505,226 +9103,414 @@ PM (ФМ) режим значит фазовая модуляция: Осцил NesInstrumentView - - - - + + + + Volume Громкость - - - + + + Coarse detune - Грубая расстройка + Грубая подстройка - - - + + + Envelope length Длина огибающей - + Enable channel 1 Включить канал 1 - + Enable envelope 1 - Включить кривую 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 + Включить огибающую 2 - + Enable envelope 2 loop - Включить повтор кривой 2 + Включить петлю огибающей 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 - Мастер-громкость + + 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 тонкая + Тонкая подстройка осц %1 слева - + Osc %1 coarse detuning - Подстройка осциллятора %1 грубая + Подстройка осц %1 грубая - + Osc %1 fine detuning right - Подстройка правого канала осциллятора %1 тонкая + Тонкая подстройка осц %1 справа - + Osc %1 phase-offset - Сдвиг фазы для осциллятора %1 + Сдвиг фазы для осц %1 - + Osc %1 stereo phase-detuning - Подстройка стерео-фазы осциллятора %1 + Подстройка стерео-фазы осц %1 - + Osc %1 wave shape - Гладкость сигнала осциллятора %1 + Гладкость сигнала осц %1 - + Modulation type %1 Тип модуляции %1 + + Oscilloscope + + + Oscilloscope + Осциллограф + + + + Click to enable + Включить мышью + + PatchesDialog Qsynth: Channel Preset - + Qsynth: преднастройка канала @@ -6739,7 +9525,7 @@ PM (ФМ) режим значит фазовая модуляция: Осцил Program selector - Выбор программ + Выбор программы @@ -6765,105 +9551,85 @@ PM (ФМ) режим значит фазовая модуляция: Осцил PatmanView - - Open other patch - Открыть другой патч + + Open patch + Открыть патч - - Click here to open another patch-file. Loop and Tune settings are not reset. - Нажмите чтобы открыть другой патч-файл. Цикличность и настройки при этом сохранятся. - - - + Loop - Повтор + Петля - + Loop mode - Режим повтора + Режим петли - - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Здесь включается/выключается режим повтора, при включёнии PatMan будет использовать информацию о повторе из файла. - - - + Tune Подстроить - + Tune mode - Тип подстройки + Режим подстройки - - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Здесь включается/выключается режим подстройки. Если он включён, то PatMan изменит запись так, чтобы она совпадала по частоте с нотой. - - - + No file selected Не выбран файл - + Open patch file Открыть патч-файл - + Patch-Files (*.pat) Патч-файлы (*.pat) - PatternView + MidiClipView - - use mouse wheel to set velocity of a step - - - - - double-click to open in Piano Roll - Двойной щелчок открывает в Редакторе Нот - - - + Open in piano-roll Открыть в редакторе нот - + + Set as ghost in piano-roll + Установить как призрак в пиано-ролл + + + Clear all notes Очистить все ноты - + Reset name Сбросить название - + Change name Переименовать - + Add steps Добавить такты - + Remove steps Удалить такты - + Clone Steps Клонировать такты @@ -6873,17 +9639,17 @@ PM (ФМ) режим значит фазовая модуляция: Осцил 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 пиковые контроллеры могут быть подключены неправильно. Убедитесь, что пиковые контроллеры подключены правильно, и повторно сохраните этот файл. Извините за причинённые неудобства. @@ -6902,686 +9668,1795 @@ PM (ФМ) режим значит фазовая модуляция: Осцил PeakControllerEffectControlDialog - + BASE БАЗА - - Base amount: - Базовое значение: + + Base: + Основа: - + AMNT - ГЛУБ + ГЛУБ. - + Modulation amount: Глубина модуляции: - + MULT - МНОЖ + МНОЖ. - - Amount Multiplicator: - Величина множителя: + + Amount multiplicator: + Множитель: - + ATCK - ВСТУП + АТК - + Attack: - Вступление: + Атака: - + DCAY СПАД - + Release: - Убывание: + Затухание: - + TRSH - ПОР + ПОРОГ - + Treshold: Порог: + + + Mute output + Заглушить вывод + + + + Absolute value + Абсолютное значение + PeakControllerEffectControls - + Base value Опорное значение - + Modulation amount Глубина модуляции - + Attack - Вступление + Атака - + Release - Убывание + Затухание - + Treshold Порог - + Mute output Заглушить вывод - - Abs Value - Абс значение + + Absolute value + Абсолютное значение - - Amount Multiplicator - Величина множителя + + 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% право + Сила нажатия: %1% + Panning: %1% left + Баланс: %1% слева + + + + Panning: %1% right + Баланс: %1% справа + + + Panning: center Баланс: центр - - Please open a pattern by double-clicking on it! - Откройте мелодию с помощью двойного щелчка мышью! + + 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: + Новое значение от %1 до %2: PianoRollWindow - - Play/pause current pattern (Space) - Игра/Пауза текущей мелодии (Пробел) + + Play/pause current clip (Space) + Игра/пауза текущей мелодии (пробел) - + Record notes from MIDI-device/channel-piano - Записать ноты с музыкального инструмента (MIDI)/канала + Записать ноты с MIDI-устройства или с канала фортепиано - + Record notes from MIDI-device/channel-piano while playing song or BB track - Записать ноты с цифрового музыкального инструмента (MIDI) во время воспроизведения композиции или дорожки Ритм-Баса + Записать ноты с MIDI-устройства или с канала фортепиано во время воспроизведения композиции или дорожки Ритм-Баса - - Stop playing of current pattern (Space) - Остановить воспроизведение текущей мелодии (Пробел) + + Record notes from MIDI-device/channel-piano, one step at the time + Записать ноты с MIDI-устройства или с канала фортепиано, по одному шагу за раз - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Нажмите здесь чтобы проиграть текущую мелодию. Это может пригодиться при её редактировании. По окончании мелодии воспроизведение начнётся сначала. + + Stop playing of current clip (Space) + Остановить воспроизведение текущей мелодии (пробел) - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Нажмите эту кнопку, если вы хотите записать ноты с устройства MIDI или виртуального синтезатора соответствующего канала. Позже вы сможете отредактировать записанную мелодию. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Нажмите эту кнопку, если вы хотите записать ноты с устройства MIDI или виртуального синтезатора соответствующего канала. Во время записи все ноты записываются в эту мелодию, и вы будете слышать композицию или РБ дорожку на заднем плане. - - - - Click here to stop playback of current pattern. - Нажмите здесь, если вы хотите остановить воспроизведение текущей мелодии. - - - + Edit actions - Правка: + Панель правки - + Draw mode (Shift+D) Режим рисования (Shift+D) - + Erase mode (Shift+E) Режим стирания (Shift+E) - + Select mode (Shift+S) Режим выбора нот (Shift+S) - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Режим рисования нот, в нём вы можете добавлять/перемещать и изменять длительность одиночных нот. Это режим по умолчанию и используется большую часть времени. -Для включения этого режима можно использовать комбинацию клавиш Shift+D, удерживайте %1 для временного переключения в режим выбора. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Режим стирания. В этом режиме вы можете стирать ноты. Для включения этого режима можно использовать комбинацию клавиш Shift+E. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Режим выделения. В этом режиме можно выделять ноты, можно также удерживать %1 в режиме рисования, чтобы можно было на время войти в режим выделения. - - - + Pitch Bend mode (Shift+T) - + Режим изгиба высоты тона (Shift+T) - - Click here and Pitch Bend mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - Нажмите здесь для активации Pitch Blend режима. Вы сможете кликнуть на ноту, чтобы начать автоматическией детюн. Можно использовать это для "скольжения" от одной ноты к другой. Можно включить этот режим при помощи Shift + T. - - - + Quantize + Квантовать + + + + Quantize positions - + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + Copy paste controls Копировать-вставить управление - - Cut selected notes (%1+X) - Переместить выделенные ноты в буфер (%1+X) + + Cut (%1+X) + Вырезать (%1+X) - - Copy selected notes (%1+C) - Копировать выделенные ноты в буфер (%1+X) + + Copy (%1+C) + Копировать (%1+C) - - Paste notes from clipboard (%1+V) - Вставить ноты из буфера (%1+V) + + Paste (%1+V) + Вставить (%1+V) - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - При нажатии на эту кнопку выделеные ноты будут вырезаны в буфер. Позже вы можете вставить их в любое место любой мелодии с помощью кнопки "Вставить". - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - При нажатии на эту кнопку выделеные ноты будут скопированы в буфер. Позже вы можете вставить их в любое место любой мелодии с помощью кнопки "Вставить". - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - При нажатии на эту кнопку ноты из буфера будут вставлены в первый видимый такт. - - - + Timeline controls - Управление временем + Панель графика - + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + Zoom and note controls - Контроль нот и увеличения. + Панель масштабирования и нот - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Этим контролируется масштаб оси. Это может быть полезно для специальных задач. Для обычного редактирования, масштаб следует устанавливать по наименьшей ноте. + + Horizontal zooming + Горизонтальный масштаб - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - "Q" обозначает квантизацию и контролирует размер нотной сетки и контрольные точки притяжения. С меньшей величиной квантизации, можно рисовать короткие ноты в редаторе нот и более точно контролировать точки в Редакторе Автоматизации. + + Vertical zooming + Вертикальное приближение - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - Позволяет выбрть длину новой ноты. "Последняя Нота" значит, что LMMS будет использовать длину ноты, изменённой в последний раз + + Quantization + Квантование - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - Функция напрямую связана с контекстным меню на виртуальной клавиатуре слева в нотном редакторе. После того, как выбран масштаб в выпадающем меню, можно кликнуть правой кнопкой в виртуальной клавиатуре и выбрать "Mark Current Scale" (Отметить текущий масштаб). LMMS подсветит все ноты лежащие в выбранном масштабе для выбранной клавиши! + + Note length + Длительность ноты - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - Позволяет выбрать аккорд, который LMMS затем сможет нарисовать или подсветить. В этом меню можно найти ниболее популярные аккорды. После того, как вы выбрали аккорд, кликните в любом месте, чтобы поставить его и правым кликом по виртуальной клавиатуре открывается контекстное меню и подсветка аккорда. Для возврата в режим одной ноты нужно выбрать "Без аккорда" в этом выпадающем меню. + + Key + - - + + Scale + Гамма + + + + Chord + Аккорд + + + + Snap mode + + + + + Clear ghost notes + Очистить призрачные ноты + + + + Piano-Roll - %1 - Нотный редактор - %1 + Нотный редактор — %1 - - - Piano-Roll - no pattern - Пианоролл — нет шаблона + + + 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»! + Не удалось загрузить модуль «%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. + + + + 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 + + + + + Format + Формат + + + + Internal + + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + AU + 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 + Ctrl+F + + + + PluginEdit + + + Plugin Editor + Редактор плагинов + + + + Edit + Правка + + + + Control + Контроль + + + + MIDI Control Channel: + + + + + N + 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: + 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! - ЛММС плагин %1 не имеет описания плагина с именем %2! + Плагин LMMS «%1» не имеет дескриптора с именем «%2»! + + + + PluginParameter + + + Form + + + + + Parameter Name + Название параметра + + + + ... + + + + + PluginRefreshW + + + Carla - Refresh + Carla — обновление + + + + Search for new... + + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + AU + AU + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + Native + + + + + POSIX 32bit + POSIX 32-бит + + + + POSIX 64bit + POSIX 64-бит + + + + Windows 32bit + Windows 32-бит + + + + 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 + Закрыть + + + + PluginWidget + + + + + + + Frame + + + + + 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 По &центру - + %1+E - + %1+E - + &Right - + По &правому краю - + %1+R - + %1+R - + &Justify - &Выравнивать + По &ширине - + %1+J - + %1+J - + &Color... - &Цвет... + Ц&вет... ProjectRenderer - - WAV-File (*.wav) - Файл WAV (*.wav) + + WAV (*.wav) + WAV (*.wav) - - Compressed OGG-File (*.ogg) - Сжатый файл OGG (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - FLAC-File (*.flac) + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin - - Compressed MP3-File (*.mp3) - + + Show GUI + Показать интерфейс + + + + Help + Справка QWidget - - + + + Name: Название: - - + + URI: + + + + + + Maker: - Создатель: + Автор: - - - Copyright: - Правообладатель: - - - + + + Copyright: + Авторское право: + + + + Requires Real Time: - Требуется обработка в реальном времени: + Требует работать в реальном времени: - - - - - - + + + + + + Yes - Да + да - - - - - - + + + + + + No - Нет + нет - - + + Real Time Capable: Работа в реальном времени: - - - In Place Broken: - Вместо сломанного: - - - - - Channels In: - Каналы в: - - - + - Channels Out: - Каналы из: + In Place Broken: + Неисправен: - + + + Channels In: + Каналов на входе: + + + + + Channels Out: + Каналов на выходе: + + + File: %1 Файл: %1 @@ -7591,10 +11466,18 @@ Reason: "%2" Файл: + + RecentProjectsMenu + + + &Recently Opened Projects + &Недавние проекты + + RenameDialog - + Rename... Переименовать... @@ -7604,12 +11487,12 @@ Reason: "%2" Input - Ввод + Вход - Input Gain: - Входная мощность: + Input gain: + Входное усиление: @@ -7634,20 +11517,20 @@ Reason: "%2" Output - Вывод + Выход - Output Gain: - Выходная мощность: + Output gain: + Выходное усиление: ReverbSCControls - Input Gain - Входная мощность + Input gain + Входное усиление @@ -7661,126 +11544,601 @@ Reason: "%2" - Output Gain - Выходная мощность + Output gain + Выходное усиление + + + + 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.) + (Высокое разрешение по времени) + + + + (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) + Все звуковые файлы (*.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) - SampleTCOView + SampleClipView - - double-click to select sample - Выберите запись двойным нажатием мыши + + 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> + средняя кнопка мыши) + Тихо/громко (<%1> + щелчок средней кнопкой) + + + + Mute/unmute selection (<%1> + middle click) + Отключить или включить звук для выделенного (<%1> + средняя кнопка мыши) + + + + Reverse sample + Перевернуть сэмпл + + + + Set clip color + Установить цвет клипа + + + + Use track color + Использовать цвет дорожки SampleTrack - + Volume Громкость - + Panning Баланс - - + + Mixer channel + Канал ЭФ + + + + Sample track Дорожка записи @@ -7788,740 +12146,946 @@ Reason: "%2" 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 - - Setup LMMS - Настройка LMMS + + Reset to default value + Сбросить до настроек по умолчанию - - - General settings - Общие параметры + + Use built-in NaN handler + Использовать встроенный Nan-обработчик - - BUFFER SIZE - РАЗМЕР БУФЕРА + + Settings + Настройки - - - Reset to default-value - Восстановить значение по умолчанию + + + General + Основные - - MISC - РАЗНОЕ + + Graphical user interface (GUI) + Графический интерфейс пользователя (GUI) - - Enable tooltips - Включить подсказки - - - - Show restart warning after changing settings - Показывать предупреждение о перезапуске при изменении настроек - - - + Display volume as dBFS Отображать громкость в децибелах - - Compress project files per default - По умолчанию сжимать файлы проектов + + Enable tooltips + Включить подсказки - - One instrument track window mode - Режим окна одной инструментальной дорожки - - - - HQ-mode for output audio-device - Режим высокого качества для устройства вывода звука - - - - Compact track buttons - Ужать кнопки дорожки - - - - Sync VST plugins to host playback - Синхронизировать VST плагины с хостом воспроизведения - - - - Enable note labels in piano roll - Включить обозначение нот в музыкальном редакторе - - - - Enable waveform display by default - Включить отображение формы звуков по умолчанию - - - - Keep effects running even without input - Продолжать работу эффектов даже без входящего сигнала - - - - Create backup file when saving a project - Создать запасной файл при сохранении проекта - - - - Reopen last project on start - Открыть последний проект на старте - - - - Use built-in NaN handler + + Enable master oscilloscope by default - - PLUGIN EMBEDDING + + 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 + Встроить с использованием Qt API - + Embed using native Win32 API Встроить с использованием Win32 API - + Embed using XEmbed protocol Встроить с использованием протокола XEmbed - - LANGUAGE - ЯЗЫК + + Keep plugin windows on top when not embedded + Держать окна плагинов поверху, если не встроены - - - Paths - Пути + + Sync VST plugins to host playback + Синхронизировать VST плагины с хостом воспроизведения - - Directories - Папки + + 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 - - Themes directory - Папка тем - - - - Background artwork - Фоновое изображение - - - - VST-plugin directory + + VST plugins directory Каталог модулей VST - - GIG directory - Папка GIG + + LADSPA plugins directories + Каталог модулей LADSPA - + SF2 directory Папка SF2 - - LADSPA plugin directories - Папка плагинов LADSPA + + Default SF2 + Файл SF2 по умолчанию - - STK rawwave directory - Каталог STK rawwave + + GIG directory + Папка GIG - - Default Soundfont File - Основной Soundfont файл + + Theme directory + Папка для тем - - - Performance settings - Параметры производительности + + Background artwork + Фоновое изображение - - Auto save - Автосохранение + + Some changes require restarting. + Некоторые изменения требуют перезагрузки программы. - - Enable auto-save - Включить автосохранение + + Autosave interval: %1 + Интервал автосохранения: %1 - - Allow auto-save while playing - Разрешить автосохранение во время воспроизведения + + Choose the LMMS working directory + Выбрать рабочий каталог LMMS - - UI effects vs. performance - Визуальные эффекты/производительность + + Choose your VST plugins directory + Выбрать каталог плагинов VST - - Smooth scroll in Song Editor - Плавная прокрутка в музыкальном редакторе + + Choose your LADSPA plugins directory + Выбрать каталог плагинов LADSPA - - Show playback cursor in AudioFileProcessor - Показывать указатель воспроизведения в процессоре аудио файлов (AFP) + + Choose your default SF2 + Выберите основной SF2 - - - Audio settings - Параметры звука + + Choose your theme directory + Выберите свою папку для тем - - AUDIO INTERFACE - ЗВУКОВАЯ СИСТЕМА + + Choose your background picture + Выберите свою картинку фона - - - MIDI settings - Параметры MIDI + + + Paths + Пути - - MIDI INTERFACE - MIDI СИСТЕМА - - - + OK ОК - + Cancel - Отменить + Отмена - - Restart LMMS - Перезапустить LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - Учтите, что большинство настроек не вступят в силу до перезапуска ЛММС! - - - + Frames: %1 Latency: %2 ms Фрагментов: %1 -Отклик: %2 +Отклик: %2 мс - - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Здесь вы можете настроить размер внутреннего звукового буфера LMMS. Меньшие значения дают меньшее время отклика программы, но повышают потребление ресурсов - это особенно заметно на старых машинах и системах, ядро которых не поддерживает приоритета реального времени. Если наблюдается прерывистый звук, попробуйте увеличить размер буфера. - - - - Choose LMMS working directory - Выбор рабочего каталога LMMS - - - + Choose your GIG directory Выберите вашу папку GIG - + Choose your SF2 directory Выберите вашу папку SF2 - - Choose your VST-plugin directory - Выбор своего каталога для модулей VST - - - - Choose artwork-theme directory - Выбор каталога с темой оформления для LMMS - - - - Choose LADSPA plugin directory - Выбор каталога с модулями LADSPA - - - - Choose STK rawwave directory - Выбор каталога STK rawwave - - - - Choose default SoundFont - Выбрать главный SoundFont - - - - Choose background artwork - Выбрать фоновое изображение - - - + minutes Минуты - + minute Минута - + Disabled Отключено + + + SidInstrument - - Auto-save interval: %1 - Интервал автосорхранения: %1 + + Cutoff frequency + Частота среза - - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Установить время между автоматическим бэкапом на %1. Не забывайте сохранять проект вручную. + + Resonance + Резонанс - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - Пожалуйста, выберите желаемую звуковую систему. В зависимости от конфигурации во время компилирования программы вы можете использовать ALSA, JACK, OSS и другие. В нижней части окна настройки можно задать специфические параметры выбранной системы. + + Filter type + Тип фильтра - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - Пожалуйста, выберите интерфейс MIDI. В зависимости от конфигурации во время компилирования программы вы можете использовать ALSA, OSS и другие. В нижней части окна настройки можно задать специфические параметры выбранного интерфейса. + + Voice 3 off + Голос 3 откл. + + + + Volume + Громкость + + + + Chip model + Модель чипа + + + + 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 + + + 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 Отчет об ошибке LMMS - - 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 - Все типы файлов - - - - Empty project - Пустой проект + (repeated %1 times) + - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Проект ничего не содержит, так что и экспортировать нечего. Сначала добавьте хотя бы одну дорожку в музыкальном редакторе! - - - - Select directory for writing exported tracks... - Выберите папку для записи экспортированных дорожек... - - - - - untitled - Неназванное - - - - - Select file for project-export... - Выбор файла для экспорта проекта... - - - - Save project - Сохранить проект - - - - MIDI File (*.mid) - MIDI-файл (*.mid) - - - - The following errors occured while loading: - Следующие ошибки возникли при загрузке: + + 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. - Невозможно открыть файл %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. + + + + + + + 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. - Невозможно открыть %1 для записи, возможно, нет разрешений на запись в этот файл, пж. удостоверьтесь, что есть доступ к этому файлу и попробуйте снова. + + 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 возможно содержит ошибки из-за которых не может загрузиться. + Файл %1 возможно содержит ошибки, поэтому не может загрузиться. - + Version difference - Версия отличается + Различия версий - - This %1 was created with LMMS %2. - %1 был создан в LMMS %2. - - - + template шаблон - + project проект - + Tempo Темп - - TEMPO/BPM - ТЕМП/BPM + + TEMPO + ТЕМП - - tempo of song - Темп музыки + + Tempo in BPM + Темп в BPM - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - Это значение задаёт темп музыки в ударах в минуту (англ. аббр. BPM). На каждый такт приходится четыре удара, так что темп в ударах в минуту фактически указывает, сколько четвертей такта проигрывается за минуту (или, что то же, количество тактов, проигрываемых за четыре минуты). - - - + High quality mode Высокое качество - - - Master volume - Основная громкость - - + + - master volume - основная громкость + Master volume + Главная громкость - - + + + Master pitch - Основная тональность + Основной тон - - master pitch - основная тональность - - - + Value: %1% Значение: %1% - + Value: %1 semitones - Значение: %1 полутон(а/ов) + Полутонов: %1 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) - Остановить воспроизведение (Пробел) + Остановить песню (пробел) - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Нажмите, чтобы прослушать созданную мелодию. Воспроизведение начнётся с позиции курсора (зелёный треугольник); вы можете двигать его во время проигрывания. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Нажмите сюда, если вы хотите остановить воспроизведение мелодии. Курсор при этом будет установлен на начало композиции. - - - + 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 + Базовый размер выравнивания - SpectrumAnalyzerControlDialog + StepRecorderWidget - - Linear spectrum - Линейный спектр + + Hint + Подсказка - - Linear Y axis - Линейная ось ординат (Y) - - - - SpectrumAnalyzerControls - - - Linear spectrum - Линейный спектр - - - - Linear Y axis - Линейная ось ординат (Y) - - - - Channel mode - Режим канала + + Move recording curser using <Left/Right> arrows + Двигать курсор записи стрелками влево-вправо SubWindow - + Close Закрыть - + Maximize Развернуть - + Restore Восстановить @@ -8529,29 +13093,37 @@ Remember to also save your project manually. You can choose to disable saving wh TabWidget - + Settings for %1 Настройки для %1 + + TemplatesMenu + + + New from template + Создать на основе шаблона + + TempoSyncKnob - + Tempo Sync Синхронизация темпа No Sync - Синхронизации нет + Без синхронизации Eight beats - Восемь ударов (две ноты) + Восемь ударов @@ -8561,27 +13133,27 @@ Remember to also save your project manually. You can choose to disable saving wh Half note - Полунота + Половинная нота Quarter note - Четверть ноты + Четвертная нота 8th note - Восьмая ноты + Восьмая нота 16th note - 1/16 ноты + 1/16 нота 32nd note - 1/32 ноты + 1/32 нота @@ -8589,80 +13161,80 @@ Remember to also save your project manually. You can choose to disable saving wh Своя... - + Custom Своя - + Synced to Eight Beats Синхро по 8 ударам - + Synced to Whole Note Синхро по целой ноте - + Synced to Half Note - Синхро по половине ноты + Синхро по половинной ноте - + Synced to Quarter Note - Синхро по четверти ноты + Синхро по четвертной ноте - + Synced to 8th Note - Синхро по 1/8 ноты + Синхро по 1/8 ноте - + Synced to 16th Note - Синхро по 1/16 ноты + Синхро по 1/16 ноте - + Synced to 32nd Note - Синхро по 1/32 ноты + Синхро по 1/32 ноте TimeDisplayWidget - click to change time units - нажми для изменения единиц времени + Time units + Единицы времени - + MIN МИН - + SEC СЕК - + MSEC мСЕК - + BAR ДЕЛЕНИЕ - + BEAT БИТ - + TICK ТИК @@ -8670,56 +13242,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - - Enable/disable auto-scrolling - Вкл/выкл автопрокрутку + + Auto scrolling + Авто-перемотка - - Enable/disable loop-points - Вкл/выкл точки петли + + Loop points + Точки петли - - After stopping go back to begin - После остановки переходить к началу + + 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>, чтобы убрать прилипание точек петли. - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Зажмите <Shift> чтобы сдвинуть начало точек петли; Нажмите <%1>, чтобы убрать прилипание точек петли. - Track - + Mute - Тихо + Заглушить - + Solo Соло @@ -8729,41 +13295,41 @@ Remember to also save your project manually. You can choose to disable saving wh 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. + Не удалось найти фильтр для импорта файла %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 для записи. -Проверьте, обладаете ли вы правами на запись в выбранный файл и содержащий его каталог и попробуйте снова! + Не удалось открыть файл %1 для записи. +Проверьте, обладаете ли вы правами на чтение файла и содержащий его каталог и попробуйте снова! Loading project... - Чтение проекта... + Загрузка проекта... - + Cancel - Отменить + Отмена - + Please wait... Подождите, пожалуйста... @@ -8780,469 +13346,515 @@ Please make sure you have read-permission to the file and the directory containi Loading Track %1 (%2/Total %3) - + Загружается дорожка %1 (%2 из %3) - + Importing MIDI-file... Импортирую файл MIDI... - TrackContentObject + Clip - + Mute - Тихо + Заглушить - TrackContentObjectView + ClipView - + Current position Текущая позиция - - - Hint - Подсказка - - - - Press <%1> and drag to make a copy. - Нажмите <%1> и тащите мышью, чтобы создать копию. - - - + Current length Текущая длительность - - Press <%1> for free resizing. - Для свободного изменения размера нажмите <%1>. - - - - + + %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> + middle click) + Тихо/громко (<%1> + щелчок средней кнопкой) + + + + Mute/unmute selection (<%1> + middle click) + Отключить или включить звук для выделенного (<%1> + средняя кнопка мыши) + + + + Set clip color + Установить цвет клипа + + + + Use track color + Использовать цвет дорожки + + + + TrackContentWidget + + + Paste + Вставить TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Зажмите <Сtrl> и нажимайте мышь во время движения, чтобы начать новую переброску. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + Удерживайте нажатой клавишу <%1> при щелчке по захвату перемещения, чтобы начать новое перетаскивание. - - Actions for this track - Действия для этой дорожки + + Actions + Действия - + + Mute - Тихо + Заглушить - - + + Solo Соло - - Mute this track - Заглушить эту дорожку + + 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 Очистить эту дорожку - - FX %1: %2 + + Channel %1: %2 ЭФ %1: %2 - - Assign to new FX Channel + + 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 - - Use phase modulation for modulating oscillator 1 with oscillator 2 - Модулировать фазу осциллятора 2 сигналом с 1 + + Modulate phase of oscillator 1 by oscillator 2 + Модулировать фазу осциллятора 1 сигналом с 2 - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Модулировать амплитуду осциллятора 2 сигналом с первого + + Modulate amplitude of oscillator 1 by oscillator 2 + Модулировать амплитуду осциллятора 1 сигналом с 2 - - Mix output of oscillator 1 & 2 - Смешать выводы 1 и 2 осцилляторов + + Mix output of oscillators 1 & 2 + Смешать выход осцилляторов 1 и 2 - + Synchronize oscillator 1 with oscillator 2 - Синхронизировать первый осциллятор по второму + Синхронизировать осциллятор 1 с осц 2 - - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Модулировать частоту осциллятора 2 сигналом с 1 + + Modulate frequency of oscillator 1 by oscillator 2 + Модулировать частоту осциллятора 1 сигналом с 2 - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Модулировать фазу осциллятора 3 сигналом с 2 + + Modulate phase of oscillator 2 by oscillator 3 + Модулировать фазу осциллятора 2 сигналом с 3 - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Модулировать амплитуду осциллятора 3 сигналом с 2 + + Modulate amplitude of oscillator 2 by oscillator 3 + Модулировать амплитуду осциллятора 2 сигналом с 3 - - Mix output of oscillator 2 & 3 - Совместить вывод осцилляторов 2 и 3 + + Mix output of oscillators 2 & 3 + Смешать выход осцилляторов 2 и 3 - + Synchronize oscillator 2 with oscillator 3 - Синхронизировать осциллятор 2 и 3 + Синхронизировать осциллятор 2 с осц 3 - - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Модулировать частоту осциллятора 3 сигналом со 2 + + Modulate frequency of oscillator 2 by oscillator 3 + Модулировать частоту осциллятора 2 сигналом с 3 - + Osc %1 volume: - Громкость осциллятора %1: + Громкость осц %1: - - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Эта ручка устанавливает громкость осциллятора %1. Если 0, то осциллятор выключается, иначе будет слышно настолько громко , как тут установлено. - - - + Osc %1 panning: - Баланс для осциллятора %1: + Баланс осц %1: - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Регулятор стереобаланса осциллятора %1. Величина -100 обозначает, что 100% сигнала идёт в левый канал, а 100 - в правый. - - - + Osc %1 coarse detuning: - Грубая подстройка осциллятора %1: + Грубая подстройка осц %1: - + semitones полутон[а,ов] - - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Грубая регулировка подстройки осциллятора %1. Возможна подстройка до 24 полутонов (до 2 октавы) вверх и вниз. Полезно для создания аккордов. - - - + Osc %1 fine detuning left: - Точная подстройка левого канала осциллятора %1: + Точная подстройка осц %1 слева: - - + + cents - Проценты + цент[а,ов] - - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Эта ручка устанавливает точную подстройку для левого канала осциллятора %1. Подстройка задаётся в диапазоне от -100 сотых до +100 сотых. Это полезно для создания "сочных" звуков. - - - + Osc %1 fine detuning right: - Точная подстройка правого канала осциллятора %1: + Точная подстройка осц %1 справа: - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Эта ручка устанавливает точную подстройку для правого канала осциллятора %1. Подстройка задаётся в диапазоне от -100 сотых до +100 сотых. Это полезно для создания "сочных" звуков. - - - + Osc %1 phase-offset: - Сдвиг фазы осциллятора %1: + Сдвиг фазы осц %1: - - + + degrees - градусы + ° - - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Эта ручка устанавливает начальную фазу осциллятора %1, т. е. точку, с которой осциллятор начинает вырабатывать сигнал. Например, если вы задали синусоидальную форму сигнала и начальную фазу 180º, волна сначала пойдёт вниз, а не вверх. То же для меандра (сигнала прямоугольной формы). - - - + Osc %1 stereo phase-detuning: - Подстройка стерео фазы осциллятора %1: + Подстройка стерео-фазы осциллятора %1: - - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Эта ручка устанавливает фазовую подстройку осциллятора %1 между каналами, то есть разность фаз между левым и правым каналами. Это удобно для создания расширения стереоэффектов. + + Sine wave + Синусоида - - Use a sine-wave for current oscillator. - Генерировать гармонический (синусоидальный) сигнал. + + Triangle wave + Треугольная волна - - Use a triangle-wave for current oscillator. - Генерировать треугольный сигнал. + + Saw wave + Пило-волна - - Use a saw-wave for current oscillator. - Генерировать зигзагообразный сигнал. + + Square wave + Квадрат-волна - - Use a square-wave for current oscillator. - Генерировать квадрат (меандр). + + Moog-like saw wave + Типа муг пило-волна - - Use a moog-like saw-wave for current oscillator. - Использовать муг-зигзаг для этого осциллятора. + + Exponential wave + Экспоненциальная волна - - Use an exponential wave for current oscillator. - Использовать экспоненциальный сигнал для этого осциллятора. + + White noise + Белый шум - - Use white-noise for current oscillator. - Генерировать белый шум. + + User-defined wave + Своя волна + + + + VecControls + + + Display persistence amount + - - Use a user-defined waveform for current oscillator. - Задать форму сигнала. + + 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 other VST-plugin - Открыть другой VST плагин + + + Open VST plugin + Открыть VST-плагин - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Открыть другой модуль VST. После нажатия на кнопку появится стандартный диалог выбора файла, где вы сможете выбрать нужный модуль. + + Control VST plugin from LMMS host + Контроль VST-модуля из хоста LMMS - - Control VST-plugin from LMMS host - Управление VST плагином через LMMS хост + + Open VST plugin preset + Открыть пресет VST-плагина - - Click here, if you want to control VST-plugin from host. - Нажмите здесь, для контроля VST плагином через хост. - - - - Open VST-plugin preset - Открыть предустановку VST плагина - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Открыть другую .fxp . fxb предустановку VST. - - - + Previous (-) - Предыдущий <-> + Предыдущий (−) - - - Click here, if you want to switch to another VST-plugin preset program. - Переключение на другую предустановку программы VST плагина. - - - + Save preset - Сохранить предустановку + Сохранить настройку - - Click here, if you want to save current VST-plugin preset program. - Сохранить текущую предустановку программы VST плагина. - - - + Next (+) - Следующий <+> + Следующий (+) - - Click here to select presets that are currently loaded in VST. - Выбор из уже загруженных в VST предустановок. - - - + Show/hide GUI Показать/скрыть интерфейс - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Скрывает/показывает графический пользовательский интерфейс (GUI) выбранного модуля VST. - - - + Turn off all notes Выключить все ноты - - Open VST-plugin - Открыть модуль VST - - - + DLL-files (*.dll) - Бибилиотеки DLL (*.dll) + Библиотеки DLL (*.dll) - + EXE-files (*.exe) Программы EXE (*.exe) - - No VST-plugin loaded - Модуль VST не загружен + + No VST plugin loaded + Нет загруженного VST-модуля - + Preset Предустановка - + by от - + - VST plugin control - - управление VST плагином - - - - VisualizationWidget - - - click to enable/disable visualization of master-output - Нажмите, чтобы включить/выключить визуализацию главного вывода - - - - Click to enable - Нажать для включения + - управление VST-плагином @@ -9250,67 +13862,41 @@ Please make sure you have read-permission to the file and the directory containi Show/hide - Показать/Скрыть + Показать/скрыть - Control VST-plugin from LMMS host - Управление VST плагином через LMMS хост + Control VST plugin from LMMS host + Контроль VST-модуля из хоста LMMS - - Click here, if you want to control VST-plugin from host. - Нажмите здесь, для контроля VST плагином через хост. + + Open VST plugin preset + Открыть пресет VST-плагина - - Open VST-plugin preset - Открыть предустановку VST плагина - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Открыть другую .fxp . fxb предустановку VST. - - - + Previous (-) - Предыдущий <-> + Предыдущий (−) - - - Click here, if you want to switch to another VST-plugin preset program. - Переключение на другую предустановку программы VST плагина. - - - + Next (+) - Следующий <+> + Следующий (+) - - Click here to select presets that are currently loaded in VST. - Выбор из уже загруженных в VST предустановок. - - - + Save preset Сохранить настройку - - Click here, if you want to save current VST-plugin preset program. - Сохранить текущую предустановку программы VST плагина. - - - - + + Effect by: Эффекты по: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -9318,217 +13904,207 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - + The VST plugin %1 could not be loaded. - VST плагин %1 не может быть загружен. + VST-плагин %1 не загружается. - + Open Preset Открыть предустановку - - + + Vst Plugin Preset (*.fxp *.fxb) - Предустановка VST плагина (*.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 плагин... + Пожалуйста, подождите пока грузится 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 Выбранный график @@ -9536,3494 +14112,2249 @@ Please make sure you have read-permission to the file and the directory containi 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 with output of A2 - Модулировать амплитуду A1 сигналом с A2 + + Modulate amplitude of A1 by output of A2 + Модулировать амплитуду A1 выходом с A2 - - Ring-modulate A1 and A2 - Кольцевая модуляция А1 и А2 + + Ring modulate A1 and A2 + Кольцевая модуляция A1 и A2 - - Modulate phase of A1 with output of 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 with output of B2 - Модулировать амплитуду B1 сигналом с B2 + + Modulate amplitude of B1 by output of B2 + Модулировать амплитуду B1 выходом с B2 - - Ring-modulate B1 and B2 + + Ring modulate B1 and B2 Кольцевая модуляция B1 и B2 - - Modulate phase of B1 with output of 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 - + Загрузить форму волны - - Click to load a waveform from a sample file - Кликнуть для загрузки формы звука из файла с образцом + + Load a waveform from a sample file + Загрузить форму волны из сэмпл-файла - + Phase left Фаза слева - - Click to shift phase by -15 degrees - + + Shift phase by -15 degrees + Сдвинуть фазу на -15° - + Phase right Фаза справа - - Click to shift phase by +15 degrees - + + Shift phase by +15 degrees + Сдвинуть фазу на +15° - + + Normalize Нормализовать - - Click to normalize - - - - + + Invert Инвертировать - - Click to invert - - - - + + Smooth Сгладить - - Click to smooth - - - - + + Sine wave Синусоида - - Click for sine wave - - - - - + + + Triangle wave Треугольная волна - - Click for triangle wave - + + Saw wave + Пило-волна - - Click for saw wave - - - - + + Square wave - Квадрат + Квадрат-волна + + + + Xpressive + + + Selected graph + Выбранный график - - Click for square wave - + + 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 frequency + Частота фильтра - - Filter Resonance - Фильтр резонанса + + Filter resonance + Резонанс фильтра - + Bandwidth - Ширина полосы + Полоса пропускания - - FM Gain - Усил FM + + FM gain + FM усиление - - Resonance Center Frequency - Частоты центра резонанса + + Resonance center frequency + Частота центра резонанса - - Resonance Bandwidth - Ширина полосы резонанса + + Resonance bandwidth + Полоса пропуска резонанса - - Forward MIDI Control Change Events - Переслать изменение событий MiDi управления + + Forward MIDI control change events + Передавать события изменений MIDI управления ZynAddSubFxView - + Portamento: Портаменто: - + PORT PORT - - Filter Frequency: - Фильтр частот: + + Filter frequency: + Частота фильтра: - + FREQ FREQ - - Filter Resonance: - Фильтр резонанса: + + Filter resonance: + Резонанс фильтра: - + RES RES - + Bandwidth: Полоса пропускания: - + BW BW - - FM Gain: - Усиление частоты модуляции (FM): + + FM gain: + FM усиление: - + FM GAIN - FM GAIN + FM УСИЛ - + Resonance center frequency: Частоты центра резонанса: - + RES CF RES CF - + Resonance bandwidth: - Ширина полосы резонанса: + Полоса пропуска резонанса: - + RES BW RES BW - - Forward MIDI Control Changes - Переслать изменение событий MiDi управления + + Forward MIDI control changes + Передавать изменения MIDI управления - + Show GUI Показать интерфейс - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Скрыть или показать графический интерфейс ZynAddSubFX. - - audioFileProcessor + 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 + BitInvader - - Samplelength - Длительность + + Sample length + Длина сэмпла - bitInvaderView + BitInvaderView - - Sample Length - Длительность записи + + Sample length + Длина сэмпла - + Draw your own waveform here by dragging your mouse on this graph. Здесь вы можете рисовать собственный сигнал. - + + Sine wave Синусоида - - Click for a sine-wave. - Сгенерировать гармонический (синусоидальный) сигнал. - - - + + Triangle wave Треугольник - - Click here for a triangle-wave. - Сгенерировать треугольный сигнал. - - - + + Saw wave - Зигзаг + Пило-волна - - Click here for a saw-wave. - Сгенерировать зигзаг. - - - + + Square wave Квадрат (Меандр) - - Click here for a square-wave. - Сгенерировать квадрат. - - - - White noise wave + + + White noise Белый шум - - Click here for white-noise. - Сгенерировать белый шум. + + + User-defined wave + Своя волна - - User defined wave - Пользовательская + + + Smooth waveform + Сгладить волну - - Click here for a user-defined shape. - Задать форму сигнала вручную. - - - - Smooth - Сгладить - - - - Click here to smooth waveform. - Щёлкните чтобы сгладить форму сигнала. - - - + Interpolation Интерполяция - + Normalize Нормализовать - dynProcControlDialog + DynProcControlDialog - + INPUT ВХОД - + Input gain: - Входная мощность: + Входное усиление: - + OUTPUT - Выход + ВЫХОД - + Output gain: - Выходная мощность: + Выходное усиление: - + ATTACK АТАКА - + Peak attack time: Время пиковой атаки: - + RELEASE - ОТПУСК + ЗАТУХАНИЕ - + Peak release time: - Время отпуска пика: + Время затухания пика: - - Reset waveform - Сбросить волну + + + Reset wavegraph + Сбросить волновой график - - Click here to reset the wavegraph back to default - Сбросить граф волны обратно по умолчанию + + + Smooth wavegraph + Сгладить волновой график - - Smooth waveform - Сгладить волну + + + Increase wavegraph amplitude by 1 dB + Увеличить амплитуду графика волны на 1 дБ - - Click here to apply smoothing to wavegraph - Применить сглаживание к графу волны + + + Decrease wavegraph amplitude by 1 dB + Уменьшить амплитуду графика волны на 1 дБ - - Increase wavegraph amplitude by 1dB - Повысить амплитуду графа волны на 1 дБ + + Stereo mode: maximum + Режим стерео: максимум - - Click here to increase wavegraph amplitude by 1dB - Нажмите здесь, чтобы повысить амплитуду графа волны на 1 дБ - - - - Decrease wavegraph amplitude by 1dB - Снизить амплитуду графа волны на 1 дБ - - - - Click here to decrease wavegraph amplitude by 1dB - Снизить амплитуду графа волны на 1 дБ - - - - Stereomode Maximum - Стереорежим Максимум - - - + Process based on the maximum of both stereo channels - Процесс основанный на максимуме от обоих каналов + Обработка по максимуму обоих стерео каналов - - Stereomode Average - Стереорежим Средний + + Stereo mode: average + Режим стерео: средне - + Process based on the average of both stereo channels - Процесс основанный на средней обоих каналов + Обработка по средней обоих стерео-каналов - - Stereomode Unlinked - Стереорежим Отдельный + + Stereo mode: unlinked + Режим стерео: раздельно - + Process each stereo channel independently - Обрабатывает каждый стерео канал независимо + Обрабатывает каждый стерео-канал независимо - dynProcControls + DynProcControls - + Input gain Входная мощность - + Output gain Выходная мощность - + Attack time Время атаки - + Release time - Время отпуска + Время затухания - + Stereo mode Режим стерео - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - - - - Sine wave - Синусоида - - - Click for a sine-wave. - Сгенерировать гармонический (синусоидальный) сигнал. - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - Экспоненциальная волна - - - Click for an exponential wave. - - - - Saw wave - Зигзаг - - - Click here for a saw-wave. - Сгенерировать зигзаг. - - - User defined wave - Пользовательская - - - Click here for a user-defined shape. - Задать форму сигнала вручную. - - - Triangle wave - Треугольная волна - - - Click here for a triangle-wave. - Сгенерировать треугольный сигнал. - - - Square wave - Квадрат - - - Click here for a square-wave. - Сгенерировать квадрат. - - - White noise wave - Белый шум - - - Click here for white-noise. - Сгенерировать белый шум. - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - - - - O2 panning: - - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - - Assign to: - Назначить на: - - - - New FX Channel - Новый канал ЭФ - - graphModel - + Graph Граф - kickerInstrument + KickerInstrument - + Start frequency Начальная частота - + End frequency Конечная частота - + Length Длина - - Distortion Start - Начало искажения + + Start distortion + Начало перегруза - - Distortion End - Конец искажения + + End distortion + Конец перегруза - + Gain Усиление - - Envelope Slope - Сглаживание кривой + + Envelope slope + Уклон огибающей - + Noise Шум - + Click - Клик + Щелчок - - Frequency Slope - Сглаживание частоты + + Frequency slope + Уклон частоты - + Start from note - + Начать с ноты - + End to note - Конец для ноты + Закончить нотой - kickerInstrumentView + KickerInstrumentView - + Start frequency: Начальная частота: - + End frequency: Конечная частота: - - Frequency Slope: - + + Frequency slope: + Уклон частоты - + Gain: Усиление: - - Envelope Length: - + + Envelope length: + Длина огибающей: - - Envelope Slope: - + + Envelope slope: + Уклон огибающей: - + Click: - Клик: + Щелчок: - + Noise: Шум: - - Distortion Start: - + + Start distortion: + Начало перегруза: - - Distortion End: - + + End distortion: + Конец перегруза: - ladspaBrowserView + LadspaBrowserView - - + + Available Effects Доступные эффекты - - + + Unavailable Effects Недоступные эффекты - - + + Instruments Инструменты - - + + Analysis Tools Анализаторы - - + + Don't know Неизвестные - - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - В этом окне показана информация обо всех модулях LADSPA, которые обнаружила LMMS. Они разделены на пять категорий, в зависимости от названий и типов портов. - -Доступные эффекты — это те, которые могут быть использоаны в LMMS. Чтобы эффект LADSPA мог быть использован, он должен, во-первых, быть собственно эффектом, т. е. иметь как входные так и выходные каналы. LMMS в качестве входного канала воспринимает аудиопорт, содержащий в названии „in“, а выходные узнаёт по подстроке „out“. Для использования в LMMS число входных каналов должно совпадать с числом выходных, и эффект должен иметь возможность использования в реальном времени. - -Недоступные эффекты — это модули LADSPA, опознанные в качестве эффектов, однако либо с несовпадающими количестами входных/выходных каналов, либо не предназначенные для использования в реальном времени. - -Инструменты — это модули, у которых есть только выходные каналы. - -Анализаторы — это модули, обладающие лишь входными каналами. - -Неизвестные — модули, у которых не было обнаружено ни входных, ни выходных каналов. - -Двойной щелчок левой кнопкой мыши по модулю даст информацию о его портах. - - - + Type: Тип: - ladspaDescription + LadspaDescription - + Plugins Модули - + Description Описание - ladspaPortDialog + LadspaPortDialog - + Ports Порты - + Name Название - + Rate Частота выборки - + Direction Направление - + Type Тип - + Min < Default < Max Меньше < Стандарт < Больше - + Logarithmic Логарифмический - + SR Dependent Зависимость от SR - + Audio Аудио - + Control - Управление + Контроль - + Input Ввод - + Output Вывод - + Toggled Включено - + Integer Целое - + Float Дробное - - + + Yes Да - lb302Synth + Lb302Synth - + VCF Cutoff Frequency Частота среза VCF - + VCF Resonance - Усиление VCF + Резонанс VCF - + VCF Envelope Mod Модуляция огибающей VCF - + VCF Envelope Decay Спад огибающей VCF - + Distortion - Искажение + Перегруз - + Waveform Форма сигнала - + Slide Decay - Сдвиг затухания + Сдвиг спада - + Slide Сдвиг - + Accent Акцент - + Dead Глухо - + 24dB/oct Filter 24дБ/окт фильтр - lb302SynthView + Lb302SynthView - + Cutoff Freq: Частота среза: - + Resonance: - Отзвук: + Резонанс: - + Env Mod: Мод Огиб: - + Decay: - Затухание: + Спад: - + 303-es-que, 24dB/octave, 3 pole filter - 303-ий, 24дБ/октаву, 3-польный фильтр + 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) волны с ограниченной полосой. + Нажать здесь для тембр. пило-муг (moog) волны. - malletsInstrument + MalletsInstrument - + Hardness Жёсткость - + Position Положение - - Vibrato Gain + + Vibrato gain Усиление вибрато - - Vibrato Freq + + Vibrato frequency Частота вибрато - - Stick Mix - Сведение ручек + + Stick mix + Уровень барабанных палочек - + Modulator Модулятор - + Crossfade Переход - - LFO Speed + + LFO speed Скорость LFO - - LFO Depth + + LFO depth Глубина LFO - + ADSR ADSR - + Pressure Давление - + Motion Движение - + Speed Скорость - + Bowed Наклон - + Spread Разброс - + Marimba Маримба - + Vibraphone Вибрафон - + Agogo - Дискотека + Агого - - Wood1 - Дерево1 + + Wood 1 + Дерево 1 - + Reso Резо - - Wood2 - Дерево2 + + Wood 2 + Дерево 2 - + Beats Удары - - Two Fixed - Два фиксированных + + Two fixed + Два постоянно - + Clump Тяжёлая поступь - - Tubular Bells - Трубные колокола + + Tubular bells + Трубчатые колокола - - Uniform Bar - Равномерные полосы + + Uniform bar + Одинаковый размер - - Tuned Bar - Подстроенные полосы + + Tuned bar + Регулируемый размер - + Glass Стекло - - Tibetan Bowl - Тибетские шары + + Tibetan bowl + Тибетская чаша - malletsInstrumentView + 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: Положение: - - Vib Gain - Усил. вибрато + + Vibrato gain + Усиление вибрато - - Vib Gain: - Усил. вибрато: + + Vibrato gain: + Усиление вибрато: - - Vib Freq - Част. виб + + Vibrato frequency + Частота вибрато - - Vib Freq: - Вибрато: + + Vibrato frequency: + Частота вибрато: - - Stick Mix - Сведение ручек + + Stick mix + Уровень барабанных палочек - - Stick Mix: - Сведение ручек: + + Stick mix: + Уровень палочек: - + Modulator Модулятор - + Modulator: Модулятор: - + Crossfade Переход - + Crossfade: Переход: - - LFO Speed + + LFO speed Скорость LFO - - LFO Speed: + + LFO speed: Скорость LFO: - - LFO Depth + + LFO depth Глубина LFO - - LFO Depth: + + LFO depth: Глубина LFO: - + ADSR ADSR - + ADSR: ADSR: - + Pressure Давление - + Pressure: Давление: - + Speed Скорость - + Speed: Скорость: - manageVSTEffectView + ManageVSTEffectView - + - VST parameter control Управление VST параметрами - - VST Sync - VST синхронизация + + VST sync + Синхронизация VST - - Click here if you want to synchronize all parameters with VST plugin. - Нажмите здесь для синхронизации всех параметров VST плагина. - - - - + + Automated Автоматизировано - - Click here if you want to display automated parameters only. - Нажмите здесь, если хотите видеть только автоматизированные параметры. - - - + Close Закрыть - - - Close VST effect knob-controller window. - Закрыть окно управления регуляторами VST эффектов. - - manageVestigeInstrumentView + ManageVestigeInstrumentView - - + + - VST plugin control Управление VST плагином - + VST Sync VST синхронизация - - Click here if you want to synchronize all parameters with VST plugin. - Нажмите здесь для синхронизации всех параметров VST плагина. - - - - + + Automated Автоматизировано - - Click here if you want to display automated parameters only. - Нажмите здесь, если хотите видеть только автоматизированные параметры. - - - + Close Закрыть - - - Close VST plugin knob-controller window. - Закрыть окно управления регуляторами VST плагина. - - opl2instrument + OrganicInstrument - - 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 Multiple - ОП 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 Multiple - ОП 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 - Глубина тремоло - - - - opl2instrumentView - - - - Attack - Вступление - - - - - Decay - Затихание - - - - - Release - Убывание - - - - - Frequency multiplier - Множитель частоты - - - - organicInstrument - - + Distortion - Искажение + Перегруз - + Volume Громкость - organicInstrumentView + OrganicInstrumentView - + Distortion: - Искажение: + Перегруз: - - The distortion knob adds distortion to the output of the instrument. - Дисторшн добавляет искажения к выводу инструмента. - - - + Volume: Громкость: - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - Регулятор громкости вывода инструмента, суммируется с регулятором громкости окна инструмента. - - - + Randomise Случайно - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - Кнопка рандомизации случайно устанавливает все регуляторы, кроме гармоник, основной громкости и регулятора искажений (дисторшн). - - - - + + Osc %1 waveform: Форма сигнала для осциллятора %1: - + Osc %1 volume: Громкость осциллятора %1: - + Osc %1 panning: Баланс для осциллятора %1: - + Osc %1 stereo detuning - Осц %1 стерео расстройка + Осц %1 стерео подстройка - + cents сотые - + Osc %1 harmonic: Осц %1 гармоника: - FreeBoyInstrument + PatchesDialog - - Sweep time - Время распространения - - - - Sweep direction - Направление распространения - - - - Sweep RtShift amount - Кол-во развёртки сдвиг вправо - - - - - Wave Pattern Duty - Рабочая форма волны - - - - 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 - Время развёртки - - - - The amount of increase or decrease in frequency - Кол-во увеличения или уменьшения в частоте - - - - Sweep RtShift amount: - Кол-во развёртки сдвиг вправо: - - - - Sweep RtShift amount - Кол-во развёртки сдвиг вправо - - - - The rate at which increase or decrease in frequency occurs - Темп проявления увеличения или снижения в частоте - - - - - Wave pattern duty: - Рабочая форма волны: - - - - Wave Pattern Duty - Рабочая форма волны - - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - Рабочий цикл это коэффициент длительности (времени) включенного сигнала относительно всего периода сигнала. - - - - - Square Channel 1 Volume: - Громкость квадратного канала 1: - - - - Square Channel 1 Volume - Громкость квадратного канала 1 - - - - - - Length of each step in sweep: - Длина каждого такта в развёртке: - - - - - - Length of each step in sweep - Длина каждого такта в распространении - - - - - - The delay between step change - Задержка между изменениями такта - - - - Wave pattern duty - Рабочая форма волны - - - - Square Channel 2 Volume: - Громкость квадратного канала 2: - - - - - Square Channel 2 Volume - Громкость квадратного канала 2 - - - - Wave Channel Volume: - Громкость волнового канала: - - - - - Wave 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 - Сдвиг ширины регистра - - - - Channel1 to SO1 (Right) - Канал1 в SO1 (Правый) - - - - Channel2 to SO1 (Right) - Канал2 в SO1 (Правый) - - - - Channel3 to SO1 (Right) - Канал3 в SO1 (Правый) - - - - Channel4 to SO1 (Right) - Канал4 в SO1 (Правый) - - - - Channel1 to SO2 (Left) - Канал1 в SO2 (Левый) - - - - Channel2 to SO2 (Left) - Канал2 в SO2 (Левый) - - - - Channel3 to SO2 (Left) - Канал2 в SO2 (Левый) - - - - Channel4 to SO2 (Left) - Канал4 в SO2 (Левый) - - - - Wave Pattern - Рисунок волны - - - - Draw the wave here - Рисовать волну здесь - - - - patchesDialog - - + Qsynth: Channel Preset - + Qsynth : предустановка канала - + Bank selector Выбор банка - + Bank Банк - + Program selector - Выбор программ + Выбор программы - + Patch Патч - + Name Имя - + OK ОК - + Cancel Отмена - pluginBrowser + Sf2Instrument - - 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 Rack Instrument - Карла инструментальная стойка - - - - A 4-band Crossover Equalizer - - - - - A native delay plugin - Встроенный delay плагин - - - - A Dual filter plugin - Двух фильтровый плагин - - - - plugin for processing dynamics in a flexible way - - - - - A native eq plugin - Родной плагин эквалайзера - - - - A native flanger plugin - - - - - 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 tb303 - Незавершённая монофоническая имитация tb303 - - - - 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 - Синтезатор звуков вроде органа - - - - Emulation of GameBoy (TM) APU - Эмуляция GameBoy (TM) - - - - 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. - - - - Graphical spectrum analyzer plugin - Плагин графического анализа спектра - - - - 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 - Три мощных осциллятора, которые можно модулировать несколькими способами - - - - 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 эффектов в ЛММС - - - - 4-oscillator modulatable wavetable synth - 4-осцилляторный модулируемый волновой синтезатор - - - - plugin for waveshaping - Плагин для сглаживания волн - - - - Embedded ZynAddSubFX - Встроенный ZynAddSubFX - - - Mathematical expression parser - - - - - sf2Instrument - - + Bank Банк - + Patch Патч - + Gain Усиление - + Reverb - Эхо + Реверберация - - Reverb Roomsize - Объём эха + + Reverb room size + Размер помещения реверберации - - Reverb Damping - Затухание эха + + Reverb damping + Затухание реверберации - - Reverb Width - Долгота эха + + Reverb width + Ширина реверберации - - Reverb Level - Уровень эха + + Reverb level + Уровень реверберации - + Chorus - Хор (припев) + Хорус - - Chorus Lines - Линии хора + + Chorus voices + Голоса хоруса - - Chorus Level - Уровень хора + + Chorus level + Уровень хоруса - - Chorus Speed - Скорость хора + + Chorus speed + Скорость хоруса - - Chorus Depth - Глубина хора + + Chorus depth + Глубина хоруса - + A soundfont %1 could not be loaded. - Soundfont %1 не удаётся загрузить. + SoundFont %1 не удаётся загрузить. - sf2InstrumentView + Sf2InstrumentView - - Open other SoundFont file - Открыть другой файл SoundFront - - - - Click here to open another SF2 file - Нажмите здесь чтобы открыть другой файл SF2 - - - - Choose the patch - Выбрать патч - - - - Gain - УСИЛ - - - - Apply reverb (if supported) - Создать эхо (если поддерживается) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Эта кнопка включает эффект эха. Это может пригодиться, но работает не для всех файлов. - - - - Reverb Roomsize: - Размер помещения: - - - - Reverb Damping: - Глушение эха: - - - - Reverb Width: - Долгота эха: - - - - Reverb Level: - Уровень эха: - - - - Apply chorus (if supported) - Создать эффект хора (если поддерживается) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Эта кнопка включает эффект хора. Это может пригодиться, но работает не для всех файлов. - - - - Chorus Lines: - Линии хора: - - - - Chorus Level: - Уровень хора: - - - - Chorus Speed: - Скорость хора: - - - - Chorus Depth: - Глубина хора: - - - + + Open SoundFont file Открыть файл SoundFront - - SoundFont2 Files (*.sf2) - Файлы SoundFont2 (*.sf2) - - - - sfxrInstrument - - - Wave Form - Форма волны - - - - sidInstrument - - - Cutoff - Срез + + Choose patch + Выбрать патч - - Resonance - Усиление - - - - Filter type - Тип фильтра - - - - Voice 3 off - Голос 3 откл - - - - Volume - Громкость - - - - Chip model - Модель чипа - - - - sidInstrumentView - - - Volume: - Громкость: - - - - Resonance: + + Gain: Усиление: - - - Cutoff frequency: - Частота среза: + + Apply reverb (if supported) + Применить эффект реверберации (если поддерживается) - - High-Pass filter - Выс.ЧФ + + Room size: + Размер помещения: - - Band-Pass filter - Сред.ЧФ + + Damping: + Приглушение: - - Low-Pass filter - Низ.ЧФ + + Width: + Ширина: - - Voice3 Off - Голос 3 откл + + + Level: + Уровни: - - MOS6581 SID - MOS6581 SID + + Apply chorus (if supported) + Применить эффект хорус (если поддерживается) - - MOS8580 SID - MOS8580 SID + + Voices: + Голоса: - - - Attack: - Вступление: + + Speed: + Скорость: - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Длительность вступления определяет, насколько быстро громкость %1-го голоса возрастает от нуля до наибольшего значения. + + Depth: + Емкость: - - - Decay: - Затухание: - - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - Длительность спада определяет, насколько быстро громкость падает от максимума до остаточного уровня. - - - - Sustain: - Выдержка: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - Громкость %1-го голоса будет оставаться на уровне амплитуды выдержки, пока длится нота. - - - - - Release: - Убывание: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - Громкость %1-го голоса будет падать от остаточного уровня до нуля с указанной здесь скоростью. - - - - - Pulse Width: - Длительность импульса: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - Длительность импульса позволяет мягко регулировать прохождение импульса без заметных сбоев. Импульсная волна должна быть выбрана на осцилляторе %1, чтобы получить звучание. - - - - Coarse: - Грубость: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - Грубая настройка позволяет подстроить Голос %1 на одну октаву вверх или вниз. - - - - Pulse Wave - Пульсирующая волна - - - - Triangle Wave - Треугольник - - - - SawTooth - Зигзаг - - - - Noise - Шум - - - - Sync - Синхро - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Синхро синхронизирует фундаментальную частоту осцилляторов %1 фундаментальной частотой осциллятора %2, создавая эффект "Железной синхронизации". - - - - Ring-Mod - Круговой режим - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Круговой режим заменяет треугольные волны на выходе осциллятора %1 "Круговой модуляцией" комбинацией осцилляторов %1 и %2. - - - - Filtered - Фильтровать - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Если этот флажок установлен, то %1-й голос будет проходить через фильтр. Иначе голос №%1 будет подаваться прямо на выход. - - - - Test - Тест - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Если «флажок» установлен, то %1-й осциллятор выдаёт нулевой сигнал (пока флажок не снимется). + + SoundFont Files (*.sf2 *.sf3) + Файлы SoundFont (*.sf2 *.sf3) - stereoEnhancerControlDialog + SfxrInstrument - - WIDE - ШИРЕ + + Wave + Волна + + + + StereoEnhancerControlDialog + + + WIDTH + ШИРИНА - + Width: Ширина: - stereoEnhancerControls + StereoEnhancerControls - + Width Ширина - stereoMatrixControlDialog + StereoMatrixControlDialog - + Left to Left Vol: От левого на левый: - + Left to Right Vol: От левого на правый: - + Right to Left Vol: От правого на левый: - + Right to Right Vol: От правого на правый: - stereoMatrixControls + StereoMatrixControls - + Left to Left От левого на левый - + Left to Right От левого на правый - + Right to Left От правого на левый - + Right to Right От правого на правый - vestigeInstrument + VestigeInstrument - + Loading plugin Загрузка модуля - - Please wait while loading VST-plugin... - Подождите, пока загрузится модуль VST... + + Please wait while loading the VST plugin... + Подождите, пока грузится VST-плагин… - vibed + Vibed - + String %1 volume - Громкость %1-й струны + Громкость %1 струны - + String %1 stiffness - Жёсткость %1-й струны + Жёсткость %1 струны - + Pick %1 position Лад %1 - + Pickup %1 position - Положение %1-го звукоснимателя + Положение %1 звукоснимателя - - Pan %1 - Бал %1 + + String %1 panning + Стерео-баланс струны %1 - - Detune %1 - Подстройка %1 + + String %1 detune + Подстройка струны %1 - - Fuzziness %1 - Нечёткость %1 + + String %1 fuzziness + Плавание струны: - - Length %1 - Длина %1 + + String %1 length + Длина струны %1 - + Impulse %1 Импульс %1 - - Octave %1 - Октава %1 + + String %1 + Струна %1 - vibedView + VibedView - - Volume: - Громкость: + + String volume: + Громкость струны: - - The 'V' knob sets the volume of the selected string. - Регулятор 'V' устанавливает громкость текущей струны. - - - + String stiffness: - Жёсткость: + Натяжение струны: - - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - Регулятор 'S' устанавливает жёсткость текущей струны. Этот параметр отвечает за длительность звучания струны (чем больше значение жёсткости, тем дольше звенит струна). - - - + Pick position: Лад: - - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - Регулятор 'P' устанавливает место струны, где она будет „прижата“. Чем ниже значение, тем ближе это место будет к кобылке. - - - + Pickup position: Положение звукоснимателя: - - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - Регулятор 'PU' устанавливает место струны, откуда будет сниматься звук. Чем ниже значение, тем ближе это место будет к кобылке. + + String panning: + Стерео-баланс струны: - - Pan: - Бал: + + String detune: + Подстройка струны: - - The Pan knob determines the location of the selected string in the stereo field. - Эта ручка устанавливает стереобаланс для текущей струны. + + String fuzziness: + Расплывчатость струны: - - Detune: - Подстроить: + + String length: + Длина струны: - - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - Ручка подстройки изменяет сдвиг частоты для текущей струны. Отрицательные значения заставят струну звучать плоско (бемольно), положительные — остро (диезно). + + Impulse + Импульс - - Fuzziness: - Нечёткость: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - Эта ручка добавляет размытости звуку, что наиболее заметно во время нарастания, впрочем, это может использоваться, чтобы сделать звук более „металлическим“. - - - - Length: - Длина: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - Ручка длины устанавливает длину текущей струны. Чем длиннее струна, тем более чистый и долгий звук она даёт; однако это требует больше ресурсов ЦП. - - - - Impulse or initial state - Начальная скорость/начальное состояние - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - Переключатель „Imp“ устанавливает режим работы струны: если он включён, то указанная форма сигнала интерпретируется как начальный импульс, иначе — как начальная форма струны. - - - + Octave Октава - - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - Переключатель октав позволяет указать гармонику основной частоты, на которой будет звучать струна. Например, „-2“ означает, что струна будет звучать двумя октавами ниже основной частоты, „F“ заставит струну звенеть на основной частоте инструмента, а „6“ — на частоте, на шесть октав более высокой, чем основная. - - - + Impulse Editor Редактор сигнала - - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - Редактор формы позволяет явно указать профиль струны в начальный момент времени, либо её начальный импульс (в заисимости от состояния переключателя „Imp“). -Кнопки справа от рисунка позволяют задавать некоторые стандартные формы, причём кнопка '?' служит для задания формы из произвольного звукового файла (загружаются первые 128 элементов выборки). - -Также форма сигнала может быть просто нарисована с помощью мыши. - -Кнопка 'S' сгладит текущую форму. - -Кнопка 'N' нормализует уровень. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Инструмент „Vibed“ моделирует до девяти независимых одновременно звучащих струн. - -Переключатель „Strings“ позволяет выбрать струну, чьи свойства редактируются. - -Переключатель „Imp“ устанавливает режим работы струны: если он включён, то указанная форма сигнала интерпретируется как начальный импульс, иначе — как начальная форма струны. - -Переключатель „Octave“ позволяет указать гармонику основной частоты, на которой будет звучать струна. - -Редактор формы позволяет явно указать профиль струны в начальный момент времени, либо её начальный импульс. - -Ручка 'V' устанавливает громкость текущей струны, 'S' — жёсткость, 'P' — место, где прижата струна, а 'PU'' — положение звукоснимателя - -Ручка подстройки и стереобаланса, есть надежда, не нуждаются в объяснениях. - -Ручка „Длина“ регулирует длину струны - -Индикатор-переключатель слева внизу определяет, включена ли текущая струна. - - - + Enable waveform Включить - - Click here to enable/disable waveform. - Нажмите, чтобы включить/выключить сигнал. + + Enable/disable string + Включить/отключить струну - + String Струна - - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - Переключатель струн позволяет выбрать струну, чьи свойства редактируются. Инструмент Vibed содержит до девяти независимо звучащих струн, индикатор в левом нижнем углу показывает, активна ли текущая струна (т. е. будет ли она слышна). - - - + + Sine wave Синусоида - - Use a sine-wave for current oscillator. - Генерировать гармонический (синусоидальный) сигнал. - - - + + Triangle wave Треугольник - - Use a triangle-wave for current oscillator. - Генерировать треугольный сигнал. - - - + + Saw wave - Зигзаг + Пило-волна - - Use a saw-wave for current oscillator. - Генерировать зигзагообразный сигнал. - - - + + Square wave Квадратная волна - - Use a square-wave for current oscillator. - Генерировать квадрат (меандр). - - - - White noise wave + + + White noise Белый шум - - Use white-noise for current oscillator. - Генерировать белый шум. + + + User-defined wave + Своя волна - - User defined wave - Пользовательская + + + Smooth waveform + Сгладить волну - - Use a user-defined waveform for current oscillator. - Задать форму сигнала. - - - - Smooth - Сгладить - - - - Click here to smooth waveform. - Щёлкните чтобы сгладить форму сигнала. - - - - Normalize - Нормализовать - - - - Click here to normalize waveform. - Нажмите, чтобы нормализовать сигнал. + + + Normalize waveform + Нормализовать форму волны - voiceObject + VoiceObject - + Voice %1 pulse width Голос %1 длина сигнала - + Voice %1 attack - Вступление %1-го голоса + Атака %1 голоса - + Voice %1 decay - Затухание %1-го голоса + Спад %1 голоса - + Voice %1 sustain - Выдержка для %1-го голоса + Выдержка %1 голоса - + Voice %1 release - Убывание %1-го голоса + Затухание голоса %1 - + Voice %1 coarse detuning - Подстройка %1-го голоса (грубо) + Подстройка %1 голоса (грубо) - + Voice %1 wave shape - Форма сигнала для %1-го голоса + Форма сигнала для %1 голоса - + Voice %1 sync - Синхронизация %1-го голоса + Синхронизация %1 голоса - + Voice %1 ring modulate Голос %1 кольцевой модулятор - + Voice %1 filtered - Фильтрованный %1-й голос + Фильтрованный %1 голос - + Voice %1 test Голос %1 тест - waveShaperControlDialog + WaveShaperControlDialog - + INPUT ВХОД - + Input gain: Входная мощность: - + OUTPUT - Выход + ВЫХОД - + Output gain: Выходная мощность: - - Reset waveform - Сбросить волну + + + Reset wavegraph + Сбросить волновой график - - Click here to reset the wavegraph back to default - Сбросить граф волны обратно по умолчанию + + + Smooth wavegraph + Сгладить волновой график - - Smooth waveform - Сгладить волну + + + Increase wavegraph amplitude by 1 dB + Увеличить амплитуду графика волны на 1 дБ - - Click here to apply smoothing to wavegraph - Применить сглаживание к графу волны + + + Decrease wavegraph amplitude by 1 dB + Уменьшить амплитуду графика волны на 1 дБ - - Increase graph amplitude by 1dB - Повысить амплитуду графа на 1 дБ - - - - Click here to increase wavegraph amplitude by 1dB - Нажмите здесь, чтобы повысить амплитуду графа волны на 1 дБ - - - - Decrease graph amplitude by 1dB - Снизить амплитуду графа на 1 дБ - - - - Click here to decrease wavegraph amplitude by 1dB - Снизить амплитуду графа волны на 1 дБ - - - + Clip input - Срезать выходной сигнал + Срезать входной сигнал - - Clip input signal to 0dB - Срезать входной сигнал до 0дБ + + Clip input signal to 0 dB + Обрезать входной сигнал на 0 dB - waveShaperControls + WaveShaperControls - + Input gain Входная мощность - + Output gain Выходная мощность diff --git a/data/locale/sl.ts b/data/locale/sl.ts index 951fdb1d8..3ad55a4c0 100644 --- a/data/locale/sl.ts +++ b/data/locale/sl.ts @@ -2,91 +2,111 @@ AboutDialog + About LMMS Opis LMMS - Version %1 (%2/%3, Qt %4, %5) - Različica %1 (%2/%3, Qt %4, %5) - - - About - Vizitka - - - LMMS - easy music production for everyone - LMMS - preprost skladateljski program za vsakogar - - - Authors - Avtorji - - - Translation - Prevod - - - 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! - - - - License - Licenca - - + LMMS LMMS + + Version %1 (%2/%3, Qt %4, %5). + + + + + About + Vizitka + + + + LMMS - easy music production for everyone. + + + + + Copyright © %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> + + + + + Authors + Avtorji + + + Involved + Contributors ordered by number of commits: - Copyright © %1 - Avtorske pravice © %1 + + Translation + Prevod - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> + + 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! + + + License + Licenca + AmplifierControlDialog + VOL GLS + Volume: Glasnost: + PAN PAN + Panning: + LEFT LEVO + Left gain: Leva glasnost + RIGHT DESNO + Right gain: Desna glasnost @@ -94,18 +114,22 @@ If you're interested in translating LMMS in another language or want to imp AmplifierControls + Volume Glasnost + Panning + Left gain Leva glasnost + Right gain Desan glasnost @@ -113,10 +137,12 @@ If you're interested in translating LMMS in another language or want to imp AudioAlsaSetupWidget + DEVICE NAPRAVA + CHANNELS KANALI @@ -124,85 +150,60 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorView - Open other sample - - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. + + Open sample + Reverse sample - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - - - - Amplify: - - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - - - - Startpoint: - - - - Endpoint: - - - - Continue sample playback across notes - - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - - - + Disable loop - This button disables looping. The sample plays only once from start to end. - - - + Enable loop - This button enables forwards-looping. The sample loops between the end point and the loop point. + + Enable ping-pong loop - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. + + Continue sample playback across notes - With this knob you can set the point where AudioFileProcessor should begin playing your sample. + + Amplify: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. + + Start point: + + End point: + + + + Loopback point: - - With this knob you can set the point where the loop starts. - - AudioFileProcessorWaveView + Sample length: @@ -210,443 +211,469 @@ If you're interested in translating LMMS in another language or want to imp 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 + + Client name - CHANNELS - KANALI + + Channels + - AudioOss::setupWidget + AudioOss - DEVICE - Naprava + + Device + - CHANNELS - KANALI + + Channels + AudioPortAudio::setupWidget - BACKEND + + Backend - DEVICE - Naprava + + Device + - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - Naprava + + Device + - CHANNELS - KANALI + + Channels + AudioSdl::setupWidget - DEVICE - Naprava + + Device + - AudioSndio::setupWidget + AudioSndio - DEVICE - Naprava + + Device + - CHANNELS - KANALI + + Channels + AudioSoundIo::setupWidget - BACKEND + + Backend - DEVICE - Naprava + + Device + AutomatableModel + &Reset (%1%2) + &Copy value (%1%2) + &Paste value (%1%2) + + &Paste value + + + + Edit song-global automation - Connected to %1 - - - - Connected to controller - - - - Edit connection... - - - - Remove connection - - - - Connect to controller... - - - + Remove song-global automation + Remove all linked controls + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + AutomationEditor - Please open an automation pattern with the context menu of a control! + + Edit Value - Values copied + + New outValue - All selected values were copied to the clipboard. + + New inValue + + + + + Please open an automation clip with the context menu of a control! AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - - - - Stop playing of current pattern (Space) - - - - Click here if you want to stop playing of the current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Flip vertically - - - - Flip horizontally - - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Discrete progression - - - - Linear progression - - - - Cubic Hermite progression - - - - Tension value for spline - - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - Cut selected values (%1+X) - - - - Copy selected values (%1+C) - - - - Paste values from clipboard (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - - - - Tension: - - - - Automation Editor - no pattern - - - - Automation Editor - %1 + + 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 - Timeline controls + + Discrete progression + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + Zoom controls + + Horizontal zooming + + + + + Vertical zooming + + + + Quantization controls - Model is already connected to this pattern. + + Quantization + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. - AutomationPattern + AutomationClip + Drag a control while pressing <%1> - AutomationPatternView - - double-click to open this pattern in automation editor - - + AutomationClipView + Open in Automation editor + Clear + Reset name + Change name - %1 Connections - - - - Disconnect "%1" - - - + Set/clear record + Flip Vertically (Visible) + Flip Horizontally (Visible) - Model is already connected to this pattern. + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. AutomationTrack + Automation track - BBEditor + PatternEditor + Beat+Bassline Editor Ritem+bas urejevalnik + Play/pause current beat/bassline (Space) + Stop playback of current beat/bassline (Space) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - - - - Click here to stop playing of current beat/bassline. - - - - Add beat/bassline - - - - Add automation-track - - - - Remove steps - - - - Add steps - - - + Beat selector + Track and step actions - Clone Steps + + Add beat/bassline + + Clone beat/bassline clip + + + + Add sample-track + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor + Reset name + Change name - - Change color - - - - Reset color to default - - - BBTrack + PatternTrack + Beat/Bassline %1 + Clone of %1 @@ -654,26 +681,32 @@ If you're interested in translating LMMS in another language or want to imp BassBoosterControlDialog + FREQ + Frequency: + GAIN + Gain: + RATIO + Ratio: @@ -681,14 +714,17 @@ If you're interested in translating LMMS in another language or want to imp BassBoosterControls + Frequency Pogostost + Gain + Ratio razmerje @@ -696,111 +732,2344 @@ If you're interested in translating LMMS in another language or want to imp BitcrushControlDialog + IN + OUT + + GAIN - Input Gain: + + Input gain: - NOIS + + NOISE - Input Noise: + + Input noise: - Output Gain: + + Output gain: + CLIP - Output Clip: + + Output clip: - Rate + + Rate enabled - Rate Enabled + + Enable sample-rate crushing - Enable samplerate-crushing + + Depth enabled - Depth + + Enable bit-depth crushing - Depth Enabled - - - - Enable bitdepth-crushing + + FREQ + Sample rate: - STD + + STEREO + Stereo difference: - Levels + + QUANT + Levels: - CaptionMenu + BitcrushControls + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + Vizitka + + + + About text here + + + + + Extended licensing here + + + + + 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 + Licenca + + + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help - Help (not available) + + toolBar + + + + + Disk + + + + + + Home + + + + + Transport + + + + + Playback Controls + + + + + Time Information + + + + + Frame: + + + + + 000'000'000 + + + + + Time: + + + + + 00:00:00 + + + + + BBT: + + + + + 000|00|0000 + + + + + Settings + Nastavitve + + + + BPM + + + + + Use JACK Transport + + + + + Use Ableton Link + + + + + &New + &Novo + + + + Ctrl+N + + + + + &Open... + &Odpri... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + &Shrani + + + + Ctrl+S + + + + + Save &As... + Shr%Ani kot... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + Izhod + + + + 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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. + + Settings + Nastavitve + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + 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 @@ -808,58 +3077,73 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -867,18 +3151,22 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -886,116 +3174,158 @@ If you're interested in translating LMMS in another language or want to imp ControllerView + Controls - Controllers are able to automate the value of a knob, slider, and other controls. - - - + Rename controller + Enter the new name for this controller + + LFO + + + + &Remove this controller + Re&name this controller - - LFO - - 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 2 Gain: + + Band 1 gain: - Band 3 Gain: + + Band 2 gain - Band 4 Gain: + + Band 2 gain: - Band 1 Mute + + Band 3 gain - Mute Band 1 + + Band 3 gain: - Band 2 Mute + + Band 4 gain - Mute Band 2 + + Band 4 gain: - Band 3 Mute + + Band 1 mute - Mute Band 3 + + Mute band 1 - Band 4 Mute + + Band 2 mute - Mute Band 4 + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 DelayControls - Delay Samples + + Delay samples + Feedback - Lfo Frequency + + LFO frequency - Lfo Amount + + LFO amount + Output gain @@ -1003,228 +3333,528 @@ If you're interested in translating LMMS in another language or want to imp DelayControlsDialog - Lfo Amt - - - - Delay Time - - - - Feedback Amount - - - - Lfo - - - - Out Gain - - - - Gain - - - + 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 + + + + + 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 - Filter 1 enabled - - - - Filter 2 enabled - - - - Click to enable/disable Filter 1 - - - - Click to enable/disable Filter 2 - - - + + 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 1 frequency + + Cutoff frequency 1 + Q/Resonance 1 + Gain 1 + Mix + Filter 2 enabled + Filter 2 type - Cutoff 2 frequency + + Cutoff frequency 2 + Q/Resonance 2 + Gain 2 - LowPass + + + Low-pass - HiPass + + + Hi-pass - BandPass csg + + + Band-pass csg - BandPass czpg + + + Band-pass czpg + + Notch - Allpass + + + All-pass + + Moog - 2x LowPass + + + 2x Low-pass - RC LowPass 12dB + + + RC Low-pass 12 dB/oct - RC BandPass 12dB + + + RC Band-pass 12 dB/oct - RC HighPass 12dB + + + RC High-pass 12 dB/oct - RC LowPass 24dB + + + RC Low-pass 24 dB/oct - RC BandPass 24dB + + + RC Band-pass 24 dB/oct - RC HighPass 24dB + + + RC High-pass 24 dB/oct - Vocal Formant Filter + + + Vocal Formant + + 2x Moog - SV LowPass + + + SV Low-pass - SV BandPass + + + SV Band-pass - SV HighPass + + + SV High-pass + + SV Notch + + Fast Formant + + Tripole @@ -1232,41 +3862,55 @@ If you're interested in translating LMMS in another language or want to imp Editor + + Transport controls + + + + Play (Space) + Stop (Space) + Record + Record while playing - Transport controls + + Toggle Step Recording Effect + Effect enabled + Wet/Dry mix Mokro/Suho + Gate + Decay @@ -1274,6 +3918,7 @@ If you're interested in translating LMMS in another language or want to imp EffectChain + Effects enabled @@ -1281,10 +3926,12 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView + EFFECTS CHAIN + Add effect @@ -1292,22 +3939,28 @@ If you're interested in translating LMMS in another language or want to imp EffectSelectDialog + Add effect + + Name Ime + Type + Description + Author @@ -1315,78 +3968,57 @@ If you're interested in translating LMMS in another language or want to imp EffectView - Toggles the effect on or off. - - - + On/Off + W/D + Wet Level: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - - - + DECAY + Time: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - - - + GATE + Gate: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - - - + Controls - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - - - + Move &up + Move &down + &Remove this plugin @@ -1394,408 +4026,409 @@ Right clicking will bring up a context menu where you can change the order in wh EnvelopeAndLfoParameters - Predelay + + Env pre-delay - Attack + + Env attack - Hold + + Env hold - Decay + + Env decay - Sustain + + Env sustain - Release - Prepustitev - - - Modulation + + Env release - LFO Predelay + + Env mod amount - LFO Attack + + LFO pre-delay - LFO speed + + LFO attack - LFO Modulation + + LFO frequency - LFO Wave Shape + + LFO mod amount - Freq x 100 + + LFO wave shape - Modulate Env-Amount + + LFO frequency x 100 + + + + + Modulate env amount EnvelopeAndLfoView + + DEL - Predelay: - - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. + + + Pre-delay: + + ATT + + Attack: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - - - + HOLD + Hold: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - - - + DEC + Decay: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - - - + SUST + Sustain: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - - - + REL + Release: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - - - + + AMT + + Modulation amount: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - - - - LFO predelay: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - - - - LFO- attack: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - - - + SPD - LFO speed: - - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - - - - Click here for a sine-wave. - - - - Click here for a triangle-wave. - - - - Click here for a saw-wave for current. - - - - Click here for a square-wave. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. + + Frequency: + FREQ x 100 - Click here if the frequency of this LFO should be multiplied by 100. + + Multiply LFO frequency by 100 - multiply LFO-frequency by 100 + + MODULATE ENV AMOUNT - MODULATE ENV-AMOUNT - - - - Click here to make the envelope-amount controlled by this LFO. - - - - control envelope-amount by this LFO + + Control envelope amount by this LFO + ms/LFO: + Hint - Drag a sample from somewhere and drop it in this window. - - - - Click here for random wave. + + Drag and drop a sample into this window. EqControls + Input gain + Output gain - Low shelf gain + + Low-shelf gain + Peak 1 gain + Peak 2 gain + Peak 3 gain + Peak 4 gain - High Shelf gain + + High-shelf gain + HP res - Low Shelf res + + Low-shelf res + Peak 1 BW + Peak 2 BW + Peak 3 BW + Peak 4 BW - High Shelf res + + High-shelf res + LP res + HP freq - Low Shelf freq + + Low-shelf freq + Peak 1 freq + Peak 2 freq + Peak 3 freq + Peak 4 freq - High shelf freq + + High-shelf freq + LP freq + HP active - Low shelf active + + Low-shelf active + Peak 1 active + Peak 2 active + Peak 3 active + Peak 4 active - High shelf active + + High-shelf active + LP active + LP 12 + LP 24 + LP 48 + HP 12 + HP 24 + HP 48 - low pass type + + Low-pass type - high pass type + + High-pass type + Analyse IN + Analyse OUT @@ -1803,85 +4436,108 @@ Right clicking will bring up a context menu where you can change the order in wh EqControlsDialog + HP - Low Shelf + + Low-shelf + Peak 1 + Peak 2 + Peak 3 + Peak 4 - High Shelf + + High-shelf + LP - In Gain + + Input gain + + + Gain - Out Gain + + Output gain + Bandwidth: + + Octave + + + + Resonance : + Frequency: - lp grp + + LP group - hp grp - - - - Octave + + HP group EqHandle + Reso: + BW: + + Freq: @@ -1889,174 +4545,271 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog + Export project Izvozi projekt - Output - - - - File format: - - - - Samplerate: - - - - 44100 Hz - - - - 48000 Hz - - - - 88200 Hz - - - - 96000 Hz - - - - 192000 Hz - - - - Bitrate: - - - - 64 KBit/s - - - - 128 KBit/s - - - - 160 KBit/s - - - - 192 KBit/s - - - - 256 KBit/s - - - - 320 KBit/s - - - - Depth: - - - - 16 Bit Integer - - - - 32 Bit Float - - - - Please note that not all of the parameters above apply for all file formats. - - - - Quality settings - - - - Interpolation: - - - - Zero Order Hold - - - - Sinc Fastest - - - - Sinc Medium (recommended) - - - - Sinc Best (very slow!) - - - - Oversampling (use with care!): - - - - 1x (None) - - - - 2x - - - - 4x - - - - 8x - - - - Start - - - - Cancel - Preklic - - - Export as loop (remove end silence) + + Export as loop (remove extra bar) + Export between loop markers + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + + + + + Sampling rate: + + + + + 44100 Hz + + + + + 48000 Hz + + + + + 88200 Hz + + + + + 96000 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 + 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% - - 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! - - Fader + + Set value + + + + Please enter a new value between %1 and %2: Prosim vpišite novo vrednost med %1 in %2: @@ -2064,72 +4817,133 @@ Please make sure you have write permission to the file and the directory contain FileBrowser + + User content + + + + + Factory content + + + + Browser Brskalnik + + + Search + + + + + Refresh list + + FileBrowserTreeWidget + Send to active instrument-track - Open in new instrument-track/B+B Editor + + 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... - --- Factory files --- - - - - Open in new instrument-track/Song Editor - - - + Error - does not appear to be a valid + + %1 does not appear to be a valid %2 file - file + + --- Factory files --- FlangerControls - Delay Samples + + Delay samples - Lfo Frequency + + LFO frequency + Seconds + + Stereo phase + + + + Regen + Noise + Invert @@ -2137,128 +4951,516 @@ Please make sure you have write permission to the file and the directory contain FlangerControlsDialog - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - + DELAY + + Delay time: + + + + RATE - Rate: + + Period: + AMNT + Amount: + + PHASE + + + + + Phase: + + + + FDBK + + Feedback amount: + + + + NOISE + + White noise amount: + + + + Invert - FxLine + 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 + + + + + MixerLine + + Channel send amount - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - + Move &left + Move &right + Rename &channel + R&emove channel + Remove &unused channels + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + Master - FX %1 - - - - - FxMixerView - - FX-Mixer + + + + Channel %1 - FX Fader %1 - + + Volume + Glasnost + Mute Mute - Mute this FX channel + + Solo + Solist + + + + MixerView + + + Mixer + + Fader %1 + + + + + Mute + Mute + + + + Mute this mixer channel + + + + Solo Solist - Solo FX channel + + Solo mixer channel - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 @@ -2266,14 +5468,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument + Bank + Patch + Gain @@ -2281,46 +5486,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - Open other GIG file - - - - Click here to open another GIG file - - - - Choose the patch - - - - Click here to change which patch of the GIG file to use - - - - Change which instrument of the GIG file is being played - - - - Which GIG file is currently being used - - - - Which patch of the GIG file is currently being used - - - - Gain - - - - Factor to multiply samples by - - - + + Open GIG file + + Choose patch + + + + + Gain: + + + + GIG Files (*.gig) @@ -2328,42 +5510,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 @@ -2371,650 +5563,798 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio + Arpeggio + Arpeggio type + Arpeggio range - Arpeggio time + + Note repeats - Arpeggio gate - - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - - - - Free - - - - Sort - - - - Sync - - - - Down and up + + Cycle steps + Skip rate + Miss rate - Cycle steps + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync InstrumentFunctionArpeggioView + ARPEGGIO - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - + RANGE + Arpeggio range: + octave(s) - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. + + REP - TIME + + Note repeats: - Arpeggio time: - - - - ms - - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - - - - GATE - - - - Arpeggio gate: - - - - % - - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - Chord: - - - - Direction: - - - - Mode: - - - - SKIP - - - - Skip rate: - - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - MISS - - - - Miss rate: - - - - The miss function will make the arpeggiator miss the intended note. + + time(s) + CYCLE + Cycle notes: + note(s) - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. + + 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 - Phrygolydian + + Phrygian + Lydian + Mixolydian + Aeolian + Locrian - Chords - - - - Chord type - - - - Chord range - - - + Minor + Chromatic + Half-Whole Diminished + 5 5 + Phrygian dominant + Persian + + + Chords + + + + + Chord type + + + + + Chord range + + InstrumentFunctionNoteStackingView - RANGE - - - - Chord range: - - - - octave(s) - - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - - + STACKING + Chord: + + + RANGE + + + + + Chord range: + + + + + octave(s) + + InstrumentMidiIOView + ENABLE MIDI INPUT - CHANNEL - - - - VELOCITY - - - + ENABLE MIDI OUTPUT - PROGRAM + + + 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 - NOTE - - - + CUSTOM BASE VELOCITY - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + BASE VELOCITY @@ -3022,137 +6362,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView + MASTER PITCH - Enables the use of Master Pitch + + Enables the use of master pitch InstrumentSoundShaping + VOLUME + Volume Obseg + CUTOFF + + Cutoff frequency + RESO + Resonance + Envelopes/LFOs + Filter type + Q/Resonance - LowPass + + Low-pass - HiPass + + Hi-pass - BandPass csg + + Band-pass csg - BandPass czpg + + Band-pass czpg + Notch - Allpass + + All-pass + Moog - 2x LowPass + + 2x Low-pass - RC LowPass 12dB + + RC Low-pass 12 dB/oct - RC BandPass 12dB + + RC Band-pass 12 dB/oct - RC HighPass 12dB + + RC High-pass 12 dB/oct - RC LowPass 24dB + + RC Low-pass 24 dB/oct - RC BandPass 24dB + + RC Band-pass 24 dB/oct - RC HighPass 24dB + + RC High-pass 24 dB/oct - Vocal Formant Filter + + Vocal Formant + 2x Moog - SV LowPass + + SV Low-pass - SV BandPass + + SV Band-pass - SV HighPass + + SV High-pass + SV Notch + Fast Formant + Tripole @@ -3160,50 +6534,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView + TARGET - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - + FILTER - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - - - - Hz - - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - - - - RESO - - - - Resonance: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - + FREQ - cutoff frequency: + + Cutoff frequency: + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. @@ -3211,211 +6577,337 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack + + unnamed_track - Volume - Obseg - - - Panning - - - - Pitch - - - - FX channel - - - - Default preset - - - - With this knob you can set the volume of the opened channel. - - - + Base note + + First note + + + + + Last note + + + + + Volume + Obseg + + + + Panning + + + + + Pitch + + + + Pitch range - Master Pitch + + 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 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 InstrumentTrackWindow + GENERAL SETTINGS - Instrument volume - + + Volume + Glasnost + Volume: Glasnost: + VOL GLS + Panning + Panning: + PAN PAN + Pitch + Pitch: + cents + PITCH - FX channel - - - - ENV/LFO - - - - FUNC - - - - FX - - - - MIDI - - - - Save preset - Shrani glasbilce - - - XML preset file (*.xpf) - - - - PLUGIN - - - + Pitch range (semitones) + RANGE + + Mixer channel + + + + + CHANNEL + + + + Save current instrument track settings in a preset file - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - - - - MISC - Razno - - - Use these controls to view and edit the next/previous track in the song editor. - - - + SAVE SHRANI + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Miscellaneous + + + + + Save preset + Shrani glasbilce + + + + XML preset file (*.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 + + + + + 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: @@ -3423,6 +6915,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControl + Link channels @@ -3430,10 +6923,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlDialog + Link Channels + Channel @@ -3441,28 +6936,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView + Link channels + Value: - - Sorry, no help available. - - 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: @@ -3470,18 +6983,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri LeftRightNav + + + Previous + + + Next + Previous (%1) + Next (%1) @@ -3489,30 +7010,37 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoController + LFO Controller + Base value + Oscillator speed + Oscillator amount + Oscillator phase + Oscillator waveform + Frequency Multiplier @@ -3520,114 +7048,131 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoControllerDialog + LFO - LFO Controller - - - + BASE - Base amount: + + Base: - todo + + FREQ - SPD + + LFO frequency: - LFO-speed: - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. + + AMNT + Modulation amount: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - + PHS + Phase offset: - degrees + + degrees - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. + + Sine wave - Click here for a sine-wave. + + Triangle wave - Click here for a triangle-wave. + + Saw wave - Click here for a saw-wave. + + Square wave - Click here for a square-wave. + + Moog saw wave - Click here for an exponential wave. + + Exponential wave - Click here for white-noise. + + White noise - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Click here for a moog saw-wave. + + Mutliply modulation frequency by 1 - AMNT + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 - LmmsCore + Engine + Generating wavetables + Initializing data structures + Opening audio and midi devices + Launching mixer threads @@ -3635,403 +7180,508 @@ Double click to pick a file. MainWindow - Could not save config-file + + Configuration file - Could not save configuration file %1. You're probably not permitted to write to this file. -Please make sure you have write-access to the file and try again. + + 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 - What's this? - - - + 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 - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - - - + + Beat+Bassline Editor Ritem+bas urejevalnik - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - - - + + Piano Roll Klavirčrtovje - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Kliknite tukaj, da prikažete ali skrijete Klavirčrtovje. S Klavirčrtovjem lahko preprosto ustvarjate melodijo. - - + + Automation Editor Samodejnik - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. + + + Mixer - FX Mixer + + Show/hide controller rack - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - - - - Project Notes - Zabeležke o projektu - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - - - - 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. - LMMS (*.mmp *.mmpz) + + Controller Rack - Version %1 - - - - Configuration file - - - - Error while parsing configuration file at line %1:%2: %3 - - - - Volumes - - - - Undo - Razveljavi - - - Redo - Uveljavi - - - My Projects - Moji projekti - - - My Samples - - - - My Presets - - - - My Home - - - - My Computer - - - - &File - - - - &Recently Opened Projects - Nedavno odp&Rti projekti - - - Save as New &Version - Shrani kot no&Vo različico - - - E&xport Tracks... - - - - Online Help - - - - What's This? - - - - Open Project - Odpri projekt - - - Save Project - Shrani projekt - - - 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. - - - - Ignore - - - - Launch LMMS as usual but with automatic backup disabled to prevent the present recover file from being overwritten. - - - - Discard - - - - Launch a default session and delete the restored files. This is not reversible. - - - - Preparing plugin browser - - - - Preparing file browsers - - - - Root directory - - - - Loading background artwork - - - - New from template - - - - Save as default template - Shrani kot privzeto predlogo - - - &View - - - - Toggle metronome - - - - Show/hide Song-Editor - Prikaži/skrij Urejevalnik skladbe - - - Show/hide Beat+Bassline Editor - Prikaži/skrij Ritem+bas urejevalnik - - - Show/hide Piano-Roll - Prikaži/skrij Klavirčrtovje - - - Show/hide Automation Editor - Prikaži/skrij Samodejnik - - - Show/hide FX Mixer - - - - Show/hide project notes - - - - Show/hide controller rack - - - - Recover session. Please save your work! - - - - Automatic backup disabled. Remember to save your work! - - - - 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? - - - - LMMS Project - LMMS projekt - - - LMMS Project Template - Predloga za LMMS projekt - - - Overwrite default template? - - - - This will overwrite your current default template. + + Project Notes + Zabeležke o projektu + + + + Fullscreen + Volume as dBFS + Smooth scroll + Enable note labels in piano roll - Save project template + + 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 @@ -4039,21 +7689,44 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MeterModel + Numerator + Denominator + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController + MIDI Controller + unnamed_midi_controller @@ -4061,18 +7734,43 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiImport + + Setup incomplete - You do not have 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 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 @@ -4080,541 +7778,911 @@ Please visit http://lmms.sf.net/wiki for documentation on 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) + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 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 + Ur&Edi + + + + &Quit + Izhod + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + MidiPort + Input channel + Output channel + Input controller + Output controller + Fixed input velocity + Fixed output velocity - Output MIDI program - - - - Receive MIDI-events - - - - Send MIDI-events - - - + Fixed output note + + Output MIDI program + + + + Base velocity + + + Receive MIDI-events + + + + + Send MIDI-events + + MidiSetupWidget - DEVICE - Naprava + + Device + MonstroInstrument - Osc 1 Volume + + Osc 1 volume - Osc 1 Panning + + Osc 1 panning - Osc 1 Coarse detune + + Osc 1 coarse detune - Osc 1 Fine detune left + + Osc 1 fine detune left - Osc 1 Fine detune right + + Osc 1 fine detune right - Osc 1 Stereo phase offset + + Osc 1 stereo phase offset - Osc 1 Pulse width + + Osc 1 pulse width - Osc 1 Sync send on rise + + Osc 1 sync send on rise - Osc 1 Sync send on fall + + Osc 1 sync send on fall - Osc 2 Volume + + Osc 2 volume - Osc 2 Panning + + Osc 2 panning - Osc 2 Coarse detune + + Osc 2 coarse detune - Osc 2 Fine detune left + + Osc 2 fine detune left - Osc 2 Fine detune right + + Osc 2 fine detune right - Osc 2 Stereo phase offset + + Osc 2 stereo phase offset - Osc 2 Waveform + + Osc 2 waveform - Osc 2 Sync Hard + + Osc 2 sync hard - Osc 2 Sync Reverse + + Osc 2 sync reverse - Osc 3 Volume + + Osc 3 volume - Osc 3 Panning + + Osc 3 panning - Osc 3 Coarse detune + + Osc 3 coarse detune + Osc 3 Stereo phase offset - Osc 3 Sub-oscillator mix + + Osc 3 sub-oscillator mix - Osc 3 Waveform 1 + + Osc 3 waveform 1 - Osc 3 Waveform 2 + + Osc 3 waveform 2 - Osc 3 Sync Hard + + Osc 3 sync hard - Osc 3 Sync Reverse + + Osc 3 Sync reverse - LFO 1 Waveform + + LFO 1 waveform - LFO 1 Attack + + LFO 1 attack - LFO 1 Rate + + LFO 1 rate - LFO 1 Phase + + LFO 1 phase - LFO 2 Waveform + + LFO 2 waveform - LFO 2 Attack + + LFO 2 attack - LFO 2 Rate + + LFO 2 rate - LFO 2 Phase + + LFO 2 phase - 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 - Osc2-3 modulation + + Osc 2+3 modulation + Selected view - Vol1-Env1 + + Osc 1 - Vol env 1 - Vol1-Env2 + + Osc 1 - Vol env 2 - Vol1-LFO1 + + Osc 1 - Vol LFO 1 - Vol1-LFO2 + + Osc 1 - Vol LFO 2 - Vol2-Env1 + + Osc 2 - Vol env 1 - Vol2-Env2 + + Osc 2 - Vol env 2 - Vol2-LFO1 + + Osc 2 - Vol LFO 1 - Vol2-LFO2 + + Osc 2 - Vol LFO 2 - Vol3-Env1 + + Osc 3 - Vol env 1 - Vol3-Env2 + + Osc 3 - Vol env 2 - Vol3-LFO1 + + Osc 3 - Vol LFO 1 - Vol3-LFO2 + + Osc 3 - Vol LFO 2 - Phs1-Env1 + + Osc 1 - Phs env 1 - Phs1-Env2 + + Osc 1 - Phs env 2 - Phs1-LFO1 + + Osc 1 - Phs LFO 1 - Phs1-LFO2 + + Osc 1 - Phs LFO 2 - Phs2-Env1 + + Osc 2 - Phs env 1 - Phs2-Env2 + + Osc 2 - Phs env 2 - Phs2-LFO1 + + Osc 2 - Phs LFO 1 - Phs2-LFO2 + + Osc 2 - Phs LFO 2 - Phs3-Env1 + + Osc 3 - Phs env 1 - Phs3-Env2 + + Osc 3 - Phs env 2 - Phs3-LFO1 + + Osc 3 - Phs LFO 1 - Phs3-LFO2 + + Osc 3 - Phs LFO 2 - Pit1-Env1 + + Osc 1 - Pit env 1 - Pit1-Env2 + + Osc 1 - Pit env 2 - Pit1-LFO1 + + Osc 1 - Pit LFO 1 - Pit1-LFO2 + + Osc 1 - Pit LFO 2 - Pit2-Env1 + + Osc 2 - Pit env 1 - Pit2-Env2 + + Osc 2 - Pit env 2 - Pit2-LFO1 + + Osc 2 - Pit LFO 1 - Pit2-LFO2 + + Osc 2 - Pit LFO 2 - Pit3-Env1 + + Osc 3 - Pit env 1 - Pit3-Env2 + + Osc 3 - Pit env 2 - Pit3-LFO1 + + Osc 3 - Pit LFO 1 - Pit3-LFO2 + + Osc 3 - Pit LFO 2 - PW1-Env1 + + Osc 1 - PW env 1 - PW1-Env2 + + Osc 1 - PW env 2 - PW1-LFO1 + + Osc 1 - PW LFO 1 - PW1-LFO2 + + Osc 1 - PW LFO 2 - Sub3-Env1 + + Osc 3 - Sub env 1 - Sub3-Env2 + + Osc 3 - Sub env 2 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 - Sub3-LFO2 + + 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 @@ -4622,278 +8690,240 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MonstroView + Operators view - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - + Matrix view - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - + + + Volume Obseg + + + Panning + + + Coarse detune + + + semitones - Finetune left + + + Fine tune left + + + + cents - Finetune right + + + 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 @@ -4901,117 +8931,145 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator MultitapEchoControlDialog + Length + Step length: + Dry - Dry Gain: + + Dry gain: + Stages - Lowpass stages: + + Low-pass stages: + Swap inputs - Swap left and right input channel for reflections + + Swap left and right input channels for reflections NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune - Channel 1 Volume + + Channel 1 volume - Channel 1 Envelope length + + Channel 1 envelope length - Channel 1 Duty cycle + + Channel 1 duty cycle - Channel 1 Sweep amount + + Channel 1 sweep amount - Channel 1 Sweep rate + + Channel 1 sweep rate + Channel 2 Coarse detune + Channel 2 Volume - Channel 2 Envelope length + + Channel 2 envelope length - Channel 2 Duty cycle + + Channel 2 duty cycle - Channel 2 Sweep amount + + Channel 2 sweep amount - Channel 2 Sweep rate + + Channel 2 sweep rate - Channel 3 Coarse detune + + Channel 3 coarse detune - Channel 3 Volume + + Channel 3 volume - Channel 4 Volume + + Channel 4 volume - Channel 4 Envelope length + + Channel 4 envelope length - Channel 4 Noise frequency + + Channel 4 noise frequency - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep + Master volume Poveljnik ladje + Vibrato Vibrato @@ -5019,196 +9077,447 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 - + + 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 volume - - - - Osc %1 panning - - - - 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 - - - + 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 Ime + OK V redu + Cancel Preklic @@ -5216,85 +9525,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - - - - Click here to open another patch-file. Loop and Tune settings are not reset. + + Open patch + Loop + Loop mode - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - - - + Tune + Tune mode - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - - - + No file selected + Open patch file + Patch-Files (*.pat) - PatternView + 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 - use mouse wheel to set velocity of a step - - - - double-click to open in Piano Roll - Z dvoklikom odprete v Klavirčrtovju - - + Clone Steps @@ -5302,14 +9611,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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. @@ -5317,10 +9629,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK + LFO Controller @@ -5328,326 +9642,518 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog + BASE - Base amount: - - - - Modulation amount: - - - - Attack: - - - - Release: + + Base: + AMNT + + Modulation amount: + + + + MULT - Amount Multiplicator: + + Amount multiplicator: + ATCK + + Attack: + + + + DCAY + + Release: + + + + + TRSH + + + + Treshold: - TRSH + + Mute output + + + + + Absolute value PeakControllerEffectControls + Base value + Modulation amount - Mute output - - - + Attack + Release Prepustitev - Abs Value - - - - Amount Multiplicator - - - + Treshold Treshold + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - - - - Last note - - - - Note lock - - - + Note Velocity + Note Panning + Mark/unmark current semitone - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - - Velocity: %1% - - - - Panning: %1% left - - - - Panning: %1% right - - - - Panning: center - - - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - + 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 pattern (Space) + + 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 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - Click here to stop playback of current pattern. - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Detune mode (Shift+T) - - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - - - - Copy selected notes (%1+C) - - - - Paste notes from clipboard (%1+V) - - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. + + 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 pattern + + + Piano-Roll - no clip Klavirčrtovje - ni šablone - Quantize + + + 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"! @@ -5655,144 +10161,1145 @@ Reason: "%2" PluginBrowser + + Instrument Plugins + + + + Instrument browser + Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Instrument Plugins + + 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 + Sito za uvažanje Hydrogen datotek v 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 + 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 + + + + + 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 + + + + + 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 + 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 + + + + + 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 + Nastavitve + + + + 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 + Zapri + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + + + + + + + + PluginName + + + + + MIDI + + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - Project notes + + Project Notes Zabeležke o projektu - Put down your project notes here. + + 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... @@ -5800,720 +11307,1751 @@ Reason: "%2" ProjectRenderer - WAV-File (*.wav) + + WAV (*.wav) - Compressed OGG-File (*.ogg) + + 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: + + File: %1 - File: %1 + + File: + + RecentProjectsMenu + + + &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) - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - - SampleTCOView + SampleClipView - double-click to select sample + + 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 - Sample track - - - + 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 - Setup LMMS + + Reset to default value - General settings - Glavne nastavitve - - - BUFFER SIZE + + Use built-in NaN handler - Reset to default-value - Nastavljeno na privzeto vrednost + + Settings + Nastavitve - MISC - Razno - - - Enable tooltips + + + General - Show restart warning after changing settings + + Graphical user interface (GUI) + Display volume as dBFS - Compress project files per default + + Enable tooltips - One instrument track window mode + + Enable master oscilloscope by default - HQ-mode for output audio-device + + Enable all note labels in piano roll - Compact track buttons + + 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 - Enable note labels in piano roll - - - - Enable waveform display by default - - - + Keep effects running even without input - Create backup file when saving a project + + + Audio - LANGUAGE - Jezik - - - Paths + + Audio interface + + HQ mode for output audio device + + + + + Buffer size + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + LMMS working directory - VST-plugin directory + + VST plugins directory + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + Background artwork - STK rawwave directory + + Some changes require restarting. - Default Soundfont File + + Autosave interval: %1 - Performance settings + + Choose the LMMS working directory - UI effects vs. performance + + Choose your VST plugins directory - Smooth scroll in Song Editor + + Choose your LADSPA plugins directory - Show playback cursor in AudioFileProcessor + + Choose your default SF2 - Audio settings + + Choose your theme directory - AUDIO INTERFACE + + Choose your background picture - MIDI settings - - - - MIDI INTERFACE + + + Paths + OK V redu + Cancel Preklic - Restart LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - - - + Frames: %1 Latency: %2 ms - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - - - - Choose LMMS working directory - - - - Choose your VST-plugin directory - - - - Choose artwork-theme directory - - - - Choose LADSPA plugin directory - - - - Choose STK rawwave directory - - - - Choose default SoundFont - - - - Choose background artwork - - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - - - - Reopen last project on start - - - - Directories - - - - Themes directory - - - - GIG directory - - - - SF2 directory - - - - LADSPA plugin directories - - - - Auto save - - - + Choose your GIG directory + Choose your SF2 directory + minutes minute + minute minuta - Enable auto-save - - - - Allow auto-save while playing - - - + Disabled + + + SidInstrument - Auto-save interval: %1 + + Cutoff frequency - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + 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 - 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 + + Aborting project load - Hydrogen projects - Hydrogen projekti - - - All file types - Dovoljene vrste datotek - - - Empty project - Prazen projekt - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Ta projekt je prazen, zato izvoz ni smiseln. Najprej prosim nekaj vpišite v Urejevalnik skladbe. - - - Select directory for writing exported tracks... + + Project file contains local paths to plugins, which could be used to run malicious code. - untitled - Neimenovan - - - Select file for project-export... - Izberi datoteko za izvoz projekta... - - - The following errors occured while loading: - - - - MIDI File (*.mid) + + Can't load project: Project file contains local paths to plugins. + LMMS Error report - Save project + + (repeated %1 times) + + + + + The following errors occurred while loading: SongEditor + Could not open file - Could not write 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. - Tempo - Tempo - - - TEMPO/BPM - - - - tempo of song - - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - High quality mode - - - - Master volume - Poveljnik ladje - - - master volume - - - - Master pitch - Poveljnik ladje - - - master pitch - - - - Value: %1% - - - - Value: %1 semitones - - - - 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. - - - - template - - - - project - projekt - - + Version difference - This %1 was created with LMMS %2. + + 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) - Add beat/bassline - - - - Add sample-track - - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - + 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 - - - SpectrumAnalyzerControlDialog - Linear spectrum + + Horizontal zooming - Linear Y axis + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum + + Hint - Linear Y axis - - - - Channel mode + + Move recording curser using <Left/Right> arrows SubWindow + Close Zapri + Maximize Maksimiraj + Restore Obnovi @@ -6521,81 +13059,110 @@ Remember to also save your project manually. You can choose to disable saving wh 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 @@ -6603,30 +13170,37 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units + + Time units + MIN + SEC + MSEC + BAR + BEAT + TICK @@ -6634,45 +13208,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - Enable/disable auto-scrolling + + Auto scrolling - Enable/disable loop-points + + Loop points - After stopping go back to begin + + 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. - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - - Track + Mute Mute + Solo Solist @@ -6680,299 +13259,490 @@ Remember to also save your project manually. You can choose to disable saving wh 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... - TrackContentObject + Clip + Mute Mute - TrackContentObjectView + ClipView + Current position - Hint - - - - Press <%1> and drag to make a copy. - - - + Current length - Press <%1> for free resizing. - - - + + %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. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - Actions for this track + + Actions + + Mute Mute + + Solo Solist - Mute this track + + 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 - FX %1: %2 + + Channel %1: %2 + + Assign to new mixer Channel + + + + Turn all recording on + Turn all recording off - Assign to new FX Channel + + Change color + + + + + Reset color to default + + + + + Set random color + + + + + Clear clip colors TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 + + Modulate phase of oscillator 1 by oscillator 2 - Use amplitude modulation for modulating oscillator 1 with oscillator 2 + + Modulate amplitude of oscillator 1 by oscillator 2 - Mix output of oscillator 1 & 2 + + Mix output of oscillators 1 & 2 + Synchronize oscillator 1 with oscillator 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 + + Modulate frequency of oscillator 1 by oscillator 2 - Use phase modulation for modulating oscillator 2 with oscillator 3 + + Modulate phase of oscillator 2 by oscillator 3 - Use amplitude modulation for modulating oscillator 2 with oscillator 3 + + Modulate amplitude of oscillator 2 by oscillator 3 - Mix output of oscillator 2 & 3 + + Mix output of oscillators 2 & 3 + Synchronize oscillator 2 with oscillator 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 + + Modulate frequency of oscillator 2 by oscillator 3 + Osc %1 volume: - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - - - + Osc %1 panning: - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - - - + Osc %1 coarse detuning: + semitones - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - - - + Osc %1 fine detuning left: + + cents - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 fine detuning right: - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 phase-offset: + + degrees - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - - - + Osc %1 stereo phase-detuning: - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. + + Sine wave - Use a sine-wave for current oscillator. + + Triangle wave - Use a triangle-wave for current oscillator. + + Saw wave - Use a saw-wave for current oscillator. + + Square wave - Use a square-wave for current oscillator. + + Moog-like saw wave - Use a moog-like saw-wave for current oscillator. + + Exponential wave - Use an exponential wave for current oscillator. + + White noise - Use white-noise for current oscillator. + + User-defined wave + + + + + VecControls + + + Display persistence amount - Use a user-defined waveform for current oscillator. + + 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? @@ -6980,156 +13750,117 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - Open other VST-plugin - Odpri drugi VST vtičnik - - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. + + + Open VST plugin - Show/hide GUI + + Control VST plugin from LMMS host - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - - - - Turn off all notes - - - - Open VST-plugin - Odpri VST vtičnik - - - DLL-files (*.dll) - - - - EXE-files (*.exe) - - - - No VST-plugin loaded - - - - Control VST-plugin from LMMS host - - - - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset + Previous (-) - Click here, if you want to switch to another VST-plugin preset program. - - - + Save preset Shrani glasbilce - Click here, if you want to save current VST-plugin preset program. - - - + Next (+) - Click here to select presets that are currently loaded in VST. + + Show/hide GUI + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + No VST plugin loaded + + + + Preset + by + - VST plugin control - - VisualizationWidget - - click to enable/disable visualization of master-output - - - - Click to enable - - - VstEffectControlDialog + Show/hide - Control VST-plugin from LMMS host + + Control VST plugin from LMMS host - Click here, if you want to control VST-plugin from host. - - - - Open VST-plugin preset - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset + Previous (-) - Click here, if you want to switch to another VST-plugin preset program. - - - + Next (+) - Click here to select presets that are currently loaded in VST. - - - + Save preset Shrani glasbilce - Click here, if you want to save current VST-plugin preset program. - - - + + Effect by: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7137,173 +13868,207 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - Loading plugin + + + The VST plugin %1 could not be loaded. + Open Preset + + Vst Plugin Preset (*.fxp *.fxb) + : default - " - - - - ' - - - + Save Preset Shrani glasbilce + .fxp + .FXP + .FXB + .fxb - Please wait while loading VST plugin... + + Loading plugin - The VST plugin %1 could not be loaded. + + 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 @@ -7311,2638 +14076,2251 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - Select oscillator A1 - - - - Select oscillator A2 - - - - Select oscillator B1 - - - - Select oscillator B2 - - - - Mix output of A2 to A1 - - - - Modulate amplitude of A1 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with output of B2 - - - - Draw your own waveform here by dragging your mouse on this graph. - - - - Load waveform - - - - Click to load a waveform from a sample file - - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - - - - Click to normalize - - - - Invert - - - - Click to invert - - - - Smooth - - - - Click to smooth - - - - Sine wave - - - - Click for sine wave - - - - Triangle wave - - - - Click for triangle wave - - - - Click for saw wave - - - - Square wave - - - - Click for square wave - - - + + + + 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 + + + + + + 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 + + + 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 Portamento - Filter Frequency + + Filter frequency - Filter Resonance + + Filter resonance + Bandwidth Pasovna širina - FM Gain + + FM gain - Resonance Center Frequency + + Resonance center frequency - Resonance Bandwidth + + Resonance bandwidth - Forward MIDI Control Change Events + + Forward MIDI control change events ZynAddSubFxView - Show GUI - - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - - - + Portamento: + PORT - Filter Frequency: + + Filter frequency: + FREQ - Filter Resonance: + + Filter resonance: + RES + Bandwidth: + BW - FM Gain: + + FM gain: + FM GAIN + Resonance center frequency: + RES CF + Resonance bandwidth: + RES BW - Forward MIDI Control Changes + + Forward MIDI control changes + + + + + Show GUI - audioFileProcessor + AudioFileProcessor + Amplify + Start of sample + End of sample - Reverse sample - - - - Stutter - - - + Loopback point + + Reverse sample + + + + Loop mode + + Stutter + + + + Interpolation mode + None + Linear + Sinc + Sample not found: %1 - bitInvader + BitInvader - Samplelength + + Sample length - bitInvaderView + BitInvaderView - Sample Length - - - - Sine wave - - - - Triangle wave - - - - Saw wave - - - - Square wave - - - - White noise wave - - - - User defined wave - - - - Smooth - - - - Click here to smooth waveform. - - - - Interpolation - - - - Normalize + + Sample length + Draw your own waveform here by dragging your mouse on this graph. - Click for a sine-wave. + + + Sine wave - Click here for a triangle-wave. + + + Triangle wave - Click here for a saw-wave. + + + Saw wave - Click here for a square-wave. + + + Square wave - Click here for white-noise. + + + White noise - Click here for a user-defined shape. - - - - - dynProcControlDialog - - INPUT - - - - Input gain: - - - - OUTPUT - - - - Output gain: - - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Reset waveform - - - - Click here to reset the wavegraph back to default + + + User-defined wave + + Smooth waveform - Click here to apply smoothing to wavegraph + + Interpolation - Increase wavegraph amplitude by 1dB + + Normalize + + + + + DynProcControlDialog + + + INPUT - Click here to increase wavegraph amplitude by 1dB + + Input gain: - Decrease wavegraph amplitude by 1dB + + OUTPUT - Click here to decrease wavegraph amplitude by 1dB + + Output gain: - Stereomode Maximum + + 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 - Stereomode Average + + Stereo mode: average + Process based on the average of both stereo channels - Stereomode Unlinked + + Stereo mode: unlinked + Process each stereo channel independently - dynProcControls + DynProcControls + Input gain + Output gain + Attack time + Release time + Stereo mode - - fxLineLcdSpinBox - - Assign to: - - - - New FX Channel - - - graphModel + Graph graf - kickerInstrument + KickerInstrument + Start frequency + End frequency - Gain - - - + Length - Distortion Start + + Start distortion - Distortion End + + End distortion - Envelope Slope + + Gain + + Envelope slope + + + + Noise + Click - Frequency Slope + + Frequency slope + Start from note + End to note - kickerInstrumentView + KickerInstrumentView + Start frequency: + End frequency: + + Frequency slope: + + + + Gain: - Frequency Slope: + + Envelope length: - Envelope Length: - - - - Envelope Slope: + + Envelope slope: + Click: + Noise: - Distortion Start: + + Start distortion: - Distortion End: + + End distortion: - ladspaBrowserView + LadspaBrowserView + + Available Effects + + Unavailable Effects + + Instruments + + Analysis Tools + + Don't know - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - - - + Type: - ladspaDescription + LadspaDescription + Plugins + Description - ladspaPortDialog + LadspaPortDialog + Ports + Name Ime + Rate + Direction + Type + Min < Default < Max + Logarithmic + SR Dependent + Audio + Control + Input + Output + Toggled + Integer + Float + + Yes - lb302Synth + 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 + 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 + MalletsInstrument + Hardness + Position - Vibrato Gain + + Vibrato gain - Vibrato Freq + + Vibrato frequency - Stick Mix + + Stick mix + Modulator + Crossfade - LFO Speed + + LFO speed - LFO Depth + + LFO depth + ADSR + Pressure + Motion + Speed + Bowed + Spread + Marimba + Vibraphone + Agogo - Wood1 + + Wood 1 + Reso - Wood2 + + Wood 2 + Beats - Two Fixed + + Two fixed + Clump - Tubular Bells + + Tubular bells - Uniform Bar + + Uniform bar - Tuned Bar + + Tuned bar + Glass - Tibetan Bowl + + Tibetan bowl - malletsInstrumentView + MalletsInstrumentView + Instrument + Spread + Spread: - Hardness - - - - Hardness: - - - - Position - - - - Position: - - - - Vib Gain - - - - Vib Gain: - - - - Vib Freq - - - - Vib Freq: - - - - Stick Mix - - - - Stick Mix: - - - - Modulator - - - - Modulator: - - - - Crossfade - - - - Crossfade: - - - - LFO Speed - - - - LFO Speed: - - - - LFO Depth - - - - LFO Depth: - - - - ADSR - - - - ADSR: - - - - Pressure - - - - Pressure: - - - - Speed - - - - Speed: - - - + 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 + ManageVSTEffectView + - VST parameter control - VST Sync - - - - Click here if you want to synchronize all parameters with VST plugin. + + VST sync + + Automated - Click here if you want to display automated parameters only. - - - + Close - - Close VST effect knob-controller window. - - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control + VST Sync - Click here if you want to synchronize all parameters with VST plugin. - - - + + Automated - Click here if you want to display automated parameters only. - - - + Close - - Close VST plugin knob-controller window. - - - opl2instrument - - Patch - - - - Op 1 Attack - - - - Op 1 Decay - - - - Op 1 Sustain - - - - Op 1 Release - - - - Op 1 Level - - - - Op 1 Level Scaling - - - - Op 1 Frequency Multiple - - - - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - - - - Vibrato Depth - - - - Tremolo Depth - - - - - opl2instrumentView - - Attack - - - - Decay - - - - Release - Prepustitev - - - Frequency multiplier - - - - - organicInstrument + OrganicInstrument + Distortion izkrivljanje + Volume Obseg - organicInstrumentView + OrganicInstrumentView + Distortion: + Volume: Glasnost: + Randomise + + Osc %1 waveform: + Osc %1 volume: + Osc %1 panning: - cents - - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - - + Osc %1 stereo detuning + + cents + + + + Osc %1 harmonic: - FreeBoyInstrument - - Sweep time - - - - Sweep direction - - - - Sweep RtShift amount - - - - Wave Pattern Duty - - - - Channel 1 volume - - - - Volume sweep direction - - - - Length of each step in sweep - - - - Channel 2 volume - - - - Channel 3 volume - - - - Channel 4 volume - - - - 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 - - - - Shift Register width - - - - - FreeBoyInstrumentView - - Sweep Time: - - - - Sweep Time - - - - Sweep RtShift amount: - - - - Sweep RtShift amount - - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - - - - Length of each step in sweep: - - - - Length of each step in sweep - - - - Wave pattern duty - - - - Square Channel 2 Volume: - - - - Square Channel 2 Volume - - - - Wave Channel Volume: - - - - Wave 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 - - - - Channel1 to SO1 (Right) - - - - Channel2 to SO1 (Right) - - - - Channel3 to SO1 (Right) - - - - Channel4 to SO1 (Right) - - - - Channel1 to SO2 (Left) - - - - Channel2 to SO2 (Left) - - - - Channel3 to SO2 (Left) - - - - Channel4 to SO2 (Left) - - - - Wave Pattern - - - - The amount of increase or decrease in frequency - - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - - - - Draw the wave here - - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset + Bank selector + Bank + Program selector + Patch + Name Ime + OK V redu + Cancel Preklic - pluginBrowser - - no description - - - - Incomplete monophonic imitation tb303 - - - - Plugin for freely manipulating stereo output - - - - Plugin for controlling knobs with sound peaks - - - - Plugin for enhancing stereo separation of a stereo input file - - - - List installed LADSPA plugins - - - - GUS-compatible patch instrument - - - - Additive Synthesizer for organ-like sounds - - - - Tuneful things to bang on - - - - VST-host for using VST(i)-plugins within LMMS - - - - Vibrating string modeler - - - - plugin for using arbitrary LADSPA-effects inside LMMS. - - - - Filter for importing MIDI-files into LMMS - Sito za uvažanje MIDI datotek v LMMS - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - - - - Player for SoundFont files - - - - Emulation of GameBoy (TM) APU - - - - Customizable wavetable synthesizer - - - - Embedded ZynAddSubFX - - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - Sito za uvažanje Hydrogen datotek v LMMS - - - LMMS port of sfxr - - - - Monstrous 3-oscillator synth with modulation matrix - - - - Three powerful oscillators you can modulate in several ways - - - - A native amplifier plugin - - - - Carla Rack Instrument - - - - 4-oscillator modulatable wavetable synth - - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - - - - plugin for using arbitrary VST effects inside LMMS. - - - - Graphical spectrum analyzer plugin - - - - A NES-like synthesizer - - - - A native delay plugin - - - - Player for GIG files - - - - A multitap echo delay plugin - - - - A native flanger plugin - - - - An oversampling bitcrusher - - - - A native eq plugin - - - - A 4-band Crossover Equalizer - - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - Sito za izvažanje MIDI datotek iz LMMS - - - - sf2Instrument + Sf2Instrument + Bank + Patch + Gain + Reverb - Reverb Roomsize + + Reverb room size - Reverb Damping + + Reverb damping - Reverb Width + + Reverb width - Reverb Level + + Reverb level + Chorus - Chorus Lines + + Chorus voices - Chorus Level + + Chorus level - Chorus Speed + + Chorus speed - Chorus Depth + + Chorus depth + A soundfont %1 could not be loaded. - sf2InstrumentView - - Open other SoundFont file - Odpri drugo SoundFont datoteko - - - Click here to open another SF2 file - - - - Choose the patch - - - - Gain - - - - Apply reverb (if supported) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - - - - Reverb Roomsize: - - - - Reverb Damping: - - - - Reverb Width: - - - - Reverb Level: - - - - Apply chorus (if supported) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - - - - Chorus Lines: - - - - Chorus Level: - - - - Chorus Speed: - - - - Chorus Depth: - - + Sf2InstrumentView + + Open SoundFont file Odpri SoundFont datoteko - SoundFont2 Files (*.sf2) + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) - sfxrInstrument + SfxrInstrument - Wave Form + + Wave - sidInstrument + StereoEnhancerControlDialog - Cutoff - - - - Resonance - - - - Filter type - - - - Voice 3 off - - - - Volume - Obseg - - - Chip model - - - - - sidInstrumentView - - Volume: - Glasnost: - - - Resonance: - - - - Cutoff frequency: - - - - High-Pass filter - - - - Band-Pass filter - - - - Low-Pass filter - - - - Voice3 Off - - - - MOS6581 SID - - - - MOS8580 SID - - - - Attack: - - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - - - - Decay: - - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - Sustain: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - Release: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - Pulse Width: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - Coarse: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - Pulse Wave - - - - Triangle Wave - - - - SawTooth - - - - Noise - - - - Sync - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - Ring-Mod - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - Filtered - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - Test - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - - - - - stereoEnhancerControlDialog - - WIDE + + WIDTH + Width: - stereoEnhancerControls + StereoEnhancerControls + Width - stereoMatrixControlDialog + StereoMatrixControlDialog + Left to Left Vol: + Left to Right Vol: + Right to Left Vol: + Right to Right Vol: - stereoMatrixControls + StereoMatrixControls + Left to Left Od desne proti levi + Left to Right Od leve proti desni + Right to Left Od desne proti levi + Right to Right Od desne proti levi - vestigeInstrument + VestigeInstrument + Loading plugin - Please wait while loading VST-plugin... + + Please wait while loading the VST plugin... - vibed + Vibed + String %1 volume + String %1 stiffness + Pick %1 position + Pickup %1 position - Pan %1 + + String %1 panning - Detune %1 + + String %1 detune - Fuzziness %1 + + String %1 fuzziness - Length %1 + + String %1 length + Impulse %1 - Octave %1 + + String %1 - vibedView + VibedView - Volume: - Glasnost: - - - The 'V' knob sets the volume of the selected string. + + String volume: + String stiffness: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - - - + Pick position: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - - - + Pickup position: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. + + String panning: - Pan: + + String detune: - The Pan knob determines the location of the selected string in the stereo field. + + String fuzziness: - Detune: + + String length: - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - - - - Fuzziness: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - - - - Length: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - Impulse or initial state - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. + + Impulse + Octave - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - - - + Impulse Editor - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - - - + Enable waveform - Click here to enable/disable waveform. + + Enable/disable string + String - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - - - + + Sine wave + + Triangle wave + + Saw wave + + Square wave - White noise wave + + + White noise - User defined wave + + + User-defined wave - Smooth + + + Smooth waveform - Click here to smooth waveform. - - - - Normalize - - - - Click here to normalize waveform. - - - - Use a sine-wave for current oscillator. - - - - Use a triangle-wave for current oscillator. - - - - Use a saw-wave for current oscillator. - - - - Use a square-wave for current oscillator. - - - - Use white-noise for current oscillator. - - - - Use a user-defined waveform for current oscillator. + + + Normalize waveform - voiceObject + 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 + WaveShaperControlDialog + INPUT + Input gain: + OUTPUT + Output gain: - Reset waveform + + + Reset wavegraph - Click here to reset the wavegraph back to default + + + Smooth wavegraph - Smooth waveform + + + Increase wavegraph amplitude by 1 dB - Click here to apply smoothing to wavegraph - - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB + Clip input - Clip input signal to 0dB + + Clip input signal to 0 dB - waveShaperControls + WaveShaperControls + Input gain + Output gain - \ No newline at end of file + diff --git a/data/locale/sr.ts b/data/locale/sr.ts index f746c74d3..9b90164ab 100644 --- a/data/locale/sr.ts +++ b/data/locale/sr.ts @@ -346,7 +346,7 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditor - Please open an automation pattern with the context menu of a control! + Please open an automation clip with the context menu of a control! @@ -361,7 +361,7 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditorWindow - Play/pause current pattern (Space) + Play/pause current clip (Space) @@ -369,7 +369,7 @@ If you're interested in translating LMMS in another language or want to imp - Stop playing of current pattern (Space) + Stop playing of current clip (Space) @@ -469,7 +469,7 @@ If you're interested in translating LMMS in another language or want to imp - Automation Editor - no pattern + Automation Editor - no clip @@ -497,19 +497,19 @@ If you're interested in translating LMMS in another language or want to imp - Model is already connected to this pattern. + Model is already connected to this clip. - AutomationPattern + AutomationClip Drag a control while pressing <%1> - AutomationPatternView + AutomationClipView double-click to open this pattern in automation editor @@ -551,7 +551,7 @@ If you're interested in translating LMMS in another language or want to imp - Model is already connected to this pattern. + Model is already connected to this clip. @@ -563,7 +563,7 @@ If you're interested in translating LMMS in another language or want to imp - BBEditor + PatternEditor Beat+Bassline Editor @@ -614,7 +614,7 @@ If you're interested in translating LMMS in another language or want to imp - BBTCOView + PatternClipView Open in Beat+Bassline-Editor @@ -637,7 +637,7 @@ If you're interested in translating LMMS in another language or want to imp - BBTrack + PatternTrack Beat/Bassline %1 @@ -2178,18 +2178,18 @@ Please make sure you have write-permission to the file and the directory contain - FxLine + MixerLine Channel send amount - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. + The mixer channel receives input from one or more instrument tracks. + It in turn can be routed to multiple other mixer channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. +In order to route the channel to another channel, select the mixer channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. +You can remove and move mixer channels in the context menu, which is accessed by right-clicking the mixer channel. @@ -2215,24 +2215,24 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FxMixer + Mixer Master - FX %1 + Channel %1 - FxMixerView + MixerView - FX-Mixer + Mixer - FX Fader %1 + Fader %1 @@ -2240,7 +2240,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri - Mute this FX channel + Mute this mixer channel @@ -2248,12 +2248,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri - Solo FX channel + Solo mixer channel - FxRoute + MixerRoute Amount to send from channel %1 to channel %2 @@ -3163,7 +3163,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX channel + Mixer channel @@ -3226,7 +3226,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX %1: %2 + Channel %1: %2 @@ -3277,7 +3277,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX channel + Mixer channel @@ -3289,7 +3289,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX + CHANNEL @@ -3550,7 +3550,7 @@ Double click to pick a file. - LmmsCore + Engine Generating wavetables @@ -3692,11 +3692,11 @@ Please make sure you have write-access to the file and try again. - FX Mixer + Mixer - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. + Click here to show or hide the Mixer. The Mixer is a very powerful tool for managing effects for your song. You can insert effects into different mixer-channels. @@ -3901,7 +3901,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. - Show/hide FX Mixer + Show/hide Mixer @@ -5184,7 +5184,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - PatternView + MidiClipView Open in piano-roll @@ -5337,7 +5337,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PianoRoll - Please open a pattern by double-clicking on it! + Please open a clip by double-clicking on it! @@ -5412,7 +5412,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PianoRollWindow - Play/pause current pattern (Space) + Play/pause current clip (Space) @@ -5424,7 +5424,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Stop playing of current pattern (Space) + Stop playing of current clip (Space) @@ -5540,7 +5540,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Piano-Roll - no pattern + Piano-Roll - no clip @@ -5837,7 +5837,7 @@ Reason: "%2" - SampleTCOView + SampleClipView double-click to select sample @@ -6389,7 +6389,7 @@ Remember to also save your project manually. - SpectrumAnalyzerControlDialog + SaControlsDialog Linear spectrum @@ -6400,7 +6400,7 @@ Remember to also save your project manually. - SpectrumAnalyzerControls + SaControls Linear spectrum @@ -6630,14 +6630,14 @@ Please make sure you have read-permission to the file and the directory containi - TrackContentObject + Clip Mute - TrackContentObjectView + ClipView Current position @@ -6718,7 +6718,7 @@ Please make sure you have read-permission to the file and the directory containi - FX %1: %2 + Channel %1: %2 @@ -6730,7 +6730,7 @@ Please make sure you have read-permission to the file and the directory containi - Assign to new FX Channel + Assign to new mixer Channel @@ -6980,7 +6980,7 @@ Please make sure you have read-permission to the file and the directory containi - VisualizationWidget + Oscilloscope click to enable/disable visualization of master-output @@ -7505,7 +7505,7 @@ Please make sure you have read-permission to the file and the directory containi - audioFileProcessor + AudioFileProcessor Amplify @@ -7556,14 +7556,14 @@ Please make sure you have read-permission to the file and the directory containi - bitInvader + BitInvader Samplelength - bitInvaderView + BitInvaderView Sample Length @@ -7638,7 +7638,7 @@ Please make sure you have read-permission to the file and the directory containi - dynProcControlDialog + DynProcControlDialog INPUT @@ -7729,7 +7729,7 @@ Please make sure you have read-permission to the file and the directory containi - dynProcControls + DynProcControls Input gain @@ -7752,13 +7752,13 @@ Please make sure you have read-permission to the file and the directory containi - fxLineLcdSpinBox + MixerLineLcdSpinBox Assign to: - New FX Channel + New mixer Channel @@ -7770,7 +7770,7 @@ Please make sure you have read-permission to the file and the directory containi - kickerInstrument + KickerInstrument Start frequency @@ -7821,7 +7821,7 @@ Please make sure you have read-permission to the file and the directory containi - kickerInstrumentView + KickerInstrumentView Start frequency: @@ -7864,7 +7864,7 @@ Please make sure you have read-permission to the file and the directory containi - ladspaBrowserView + LadspaBrowserView Available Effects @@ -7907,7 +7907,7 @@ Double clicking any of the plugins will bring up information on the ports. - ladspaDescription + LadspaDescription Plugins @@ -7918,7 +7918,7 @@ Double clicking any of the plugins will bring up information on the ports. - ladspaPortDialog + LadspaPortDialog Ports @@ -7985,7 +7985,7 @@ Double clicking any of the plugins will bring up information on the ports. - lb302Synth + Lb302Synth VCF Cutoff Frequency @@ -8032,7 +8032,7 @@ Double clicking any of the plugins will bring up information on the ports. - lb302SynthView + Lb302SynthView Cutoff Freq: @@ -8155,7 +8155,7 @@ Double clicking any of the plugins will bring up information on the ports. - malletsInstrument + MalletsInstrument Hardness @@ -8274,7 +8274,7 @@ Double clicking any of the plugins will bring up information on the ports. - malletsInstrumentView + MalletsInstrumentView Instrument @@ -8393,7 +8393,7 @@ Double clicking any of the plugins will bring up information on the ports. - manageVSTEffectView + ManageVSTEffectView - VST parameter control @@ -8424,7 +8424,7 @@ Double clicking any of the plugins will bring up information on the ports. - manageVestigeInstrumentView + ManageVestigeInstrumentView - VST plugin control @@ -8455,7 +8455,7 @@ Double clicking any of the plugins will bring up information on the ports. - opl2instrument + OpulenzInstrument Patch @@ -8574,7 +8574,7 @@ Double clicking any of the plugins will bring up information on the ports. - opl2instrumentView + OpulenzInstrumentView Attack @@ -8593,7 +8593,7 @@ Double clicking any of the plugins will bring up information on the ports. - organicInstrument + OrganicInstrument Distortion @@ -8604,7 +8604,7 @@ Double clicking any of the plugins will bring up information on the ports. - organicInstrumentView + OrganicInstrumentView Distortion: @@ -8921,7 +8921,7 @@ Double clicking any of the plugins will bring up information on the ports. - patchesDialog + PatchesDialog Qsynth: Channel Preset @@ -8956,13 +8956,13 @@ Double clicking any of the plugins will bring up information on the ports. - pluginBrowser + PluginBrowser no description - Incomplete monophonic imitation tb303 + Incomplete monophonic imitation TB-303 @@ -9136,7 +9136,7 @@ This chip was used in the Commodore 64 computer. - sf2Instrument + Sf2Instrument Bank @@ -9195,7 +9195,7 @@ This chip was used in the Commodore 64 computer. - sf2InstrumentView + Sf2InstrumentView Open other SoundFont file @@ -9270,14 +9270,14 @@ This chip was used in the Commodore 64 computer. - sfxrInstrument + SfxrInstrument Wave Form - sidInstrument + SidInstrument Cutoff @@ -9304,7 +9304,7 @@ This chip was used in the Commodore 64 computer. - sidInstrumentView + SidInstrumentView Volume: @@ -9439,7 +9439,7 @@ This chip was used in the Commodore 64 computer. - stereoEnhancerControlDialog + StereoEnhancerControlDialog WIDE @@ -9450,14 +9450,14 @@ This chip was used in the Commodore 64 computer. - stereoEnhancerControls + StereoEnhancerControls Width - stereoMatrixControlDialog + StereoMatrixControlDialog Left to Left Vol: @@ -9476,7 +9476,7 @@ This chip was used in the Commodore 64 computer. - stereoMatrixControls + StereoMatrixControls Left to Left @@ -9495,7 +9495,7 @@ This chip was used in the Commodore 64 computer. - vestigeInstrument + VestigeInstrument Loading plugin @@ -9506,7 +9506,7 @@ This chip was used in the Commodore 64 computer. - vibed + Vibed String %1 volume @@ -9549,7 +9549,7 @@ This chip was used in the Commodore 64 computer. - vibedView + VibedView Volume: @@ -9740,7 +9740,7 @@ The LED in the lower right corner of the waveform editor determines whether the - voiceObject + VoiceObject Voice %1 pulse width @@ -9787,7 +9787,7 @@ The LED in the lower right corner of the waveform editor determines whether the - waveShaperControlDialog + WaveShaperControlDialog INPUT @@ -9846,7 +9846,7 @@ The LED in the lower right corner of the waveform editor determines whether the - waveShaperControls + WaveShaperControls Input gain @@ -9856,4 +9856,4 @@ The LED in the lower right corner of the waveform editor determines whether the - \ No newline at end of file + diff --git a/data/locale/sv.ts b/data/locale/sv.ts index eb51c9082..4963b07a9 100644 --- a/data/locale/sv.ts +++ b/data/locale/sv.ts @@ -2,69 +2,69 @@ AboutDialog - + About LMMS Om LMMS - + LMMS LMMS - - Version %1 (%2/%3, Qt %4, %5) + + Version %1 (%2/%3, Qt %4, %5). Version %1 (%2/%3, Qt %4, %5) - + About Om - - LMMS - easy music production for everyone - LMMS - enkel musikproduktion för alla + + LMMS - easy music production for everyone. + LMMS - enkel musikproduktion för alla. - - Copyright © %1 - Copyright © %1 + + Copyright © %1. + Copyright © %1. - - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">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> + <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#33cc33;">https://lmms.io/?lang=sv_SE</span></a></p></body></html> - + Authors Upphovsmän - + Involved Engagerade - + Contributors ordered by number of commits: Bidragsgivare ordnade efter mängd bidrag: - + Translation Översättning - + 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! - + Aktuellt språk översätts (eller inhemsk engelska). +Om du är intresserad av att översätta LMMS till ett annat språk eller vill förbättra befintliga översättningar är du välkommen att hjälpa oss! Kontakta bara underhållaren! - + License Licens @@ -151,106 +151,60 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorView - - Open other sample - Öppna annan ljudfil + + Open sample + Öppna ljudfil - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Klicka här för att öppna en annan ljudfil. En dialog visas där du väljer din fil. Inställningar som looping, start och slutpunkter, amplifiering och sådant omställs inte. Därför låter det kanske inte som originalfilen. - - - + Reverse sample Spela baklänges - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Den här knappen gör att ljudfilen spelas baklänges. Den kan användas för intressanta effekter t.ex. en baklänges cymbal. - - - + Disable loop Inaktivera slinga - - This button disables looping. The sample plays only once from start to end. - Den här knappen avaktiverar looping. Ljudfilen spelas bara en gång från start till slut. - - - - + Enable loop Aktivera slinga - - This button enables forwards-looping. The sample loops between the end point and the loop point. - Den här knappen aktiverar looping. Ljudfilen loopar mellan slutpunkten och looppunkten. + + Enable ping-pong loop + Aktivera ping-pong loop - - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Den här knappen aktiverar "ping-pong" looping. Ljudfilen spelar från start till slut, och sen tillbaka, och fortsätter så. - - - + Continue sample playback across notes Fortsätt spela ljudfil över noter - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Denna inställningen gör att ljudfilen fortsätter spela över noter. Om en not avslutas före ljudfilen är slut fortsätter nästa not där den förra slutade. Om du vill starta från början av ljudfilen innan den spelat färdigt, placera en not på botten av pianot (vid 20Hz) - - - + Amplify: Förstärkning: - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Med detta vred ställer du in förstärkningen. Vid 100% blir det ingen skillnad. Annars blir din ljudfil mer eller mindre högljudd, men originalfilen förändras inte. - - - - Startpoint: + + Start point: Startpunkt: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Med den här vreden ställer du in vartifrån ljudfilen ska börja spela. - - - - Endpoint: + + End point: Slutpunkt: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Med den här vreden ställer du in vart ljudfilen slutar spela. - - - + Loopback point: Slinga-tillbaka punkt: - - - With this knob you can set the point where the loop starts. - Den här vreden ställer in vart loopen startar. - AudioFileProcessorWaveView - + Sample length: Ljudfilens längd: @@ -258,163 +212,168 @@ If you're interested in translating LMMS in another language or want to imp 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 - KLIENT-NAMN + + Client name + Klientnamn - - CHANNELS - KANALER + + Channels + Kanaler - AudioOss::setupWidget + AudioOss - DEVICE - ENHET + Device + Enhet - CHANNELS - KANALER + Channels + Kanaler AudioPortAudio::setupWidget - - BACKEND - BACKEND + + Backend + Bakände - - DEVICE - ENHET + + Device + Enhet - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - ENHET + Device + Enhet - CHANNELS - KANALER + Channels + Kanaler AudioSdl::setupWidget - - DEVICE - ENHET + + Device + Enhet - AudioSndio::setupWidget + AudioSndio - DEVICE - ENHET + Device + Enhet - CHANNELS - KANALER + Channels + Kanaler AudioSoundIo::setupWidget - - BACKEND - BAKÄNDE + + Backend + Bakände - - DEVICE - ENHET + + 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... @@ -422,385 +381,300 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditor - - Please open an automation pattern with the context menu of a control! + + 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! - - - Values copied - Värden kopierade - - - - All selected values were copied to the clipboard. - Alla valda värden blev kopierade till urklipp. - AutomationEditorWindow - - Play/pause current pattern (Space) + + Play/pause current clip (Space) Spela/pausa aktuellt mönster (Mellanslag) - - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Klicka här för att spela det aktuella mönstret, detta är användbart när man redigerar. Mönstret spelas från början igen när det nått sitt slut. - - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Sluta spela aktuellt mönster (Mellanslag) - - Click here if you want to stop playing of the current pattern. - Klicka här för att stoppa uppspelning av de aktuella mönstret. - - - + 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) + + + + Flip vertically Spegla vertikalt - + Flip horizontally Spegla horizontellt - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Klicka här för att spegla mönstret. Punkterna förflyttas på y-axeln - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Klicka här för att spegla mönstret. Punkterna förflyttas på x-axeln - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - Klicka här för att aktivera ritläget. I detta läget kan du lägga till och förflytta individuella värden. Det här är standardläget. Det går också att trycka "Skift+D" på tangentbordet för att aktivera detta läget. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - Klicka här för att aktivera suddläget. I detta läget kan du ta bort individuella värden. Det går också att trycka "Skift+E" på tangentbordet för att aktivera detta läget. - - - + Interpolation controls Interpoleringskontroller - + 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 - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Högre spänning ger en mjuk kurva som ibland missar individuella punkter. Med lägre spänning planar kurvan ut nära punkterna. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Klicka här för att aktivera diskret talföljd. Värdet är konstant mella kontroll punkter och ändras direkt när en ny kontrollpunkt nås. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Klicka här för att aktivera linjär talföljd. Värdet ändras vid en stadig takt mellan kontrollpunkter för att gradvis nå nästa värde. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Klicka här för att aktivera cubic hermite talföljd. Värdet följer en mjuk kurva mellan kontrollpunkter. - - - + Tension: Spänning: - - Cut selected values (%1+X) - Klipp ut valda värden (%1+X) - - - - Copy selected values (%1+C) - Kopiera valda värden (%1+C) - - - - Paste values from clipboard (%1+V) - Klistra värden (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klicka här för att klippa de valda värderna. Du kan sen klistra dem var som helst genom att klicka på klistra knappen. - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klicka här för att kopiera de valda värderna. Du kan sedan klistra dem var som helst genom att klicka på klistra knappen. - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - Klicka här för att klistra kopierade värderna vid den första synliga metern. - - - + Zoom controls Zoomningskontroller - + + Horizontal zooming + Horisontell zoomning + + + + Vertical zooming + Vertikal zoomning + + + Quantization controls Kvantiseringskontroller - + Quantization Kvantisering - - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - - - - - - Automation Editor - no pattern + + + Automation Editor - no clip Redigera Automation - inget automationsmönster - - + + Automation Editor - %1 Redigera Automation - %1 - - Model is already connected to this pattern. + + Model is already connected to this clip. Modellen är redan ansluten till det här mönstret. - AutomationPattern + AutomationClip - + Drag a control while pressing <%1> Dra en kontroll samtidigt som du håller <%1> - AutomationPatternView + AutomationClipView - - double-click to open this pattern in automation editor - dubbelklicka för att öppna det här automationsmönstret för redigering - - - + 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 pattern. + + Model is already connected to this clip. Modellen är redan ansluten till det här mönstret. AutomationTrack - + Automation track Automationsspår - BBEditor + PatternEditor - + Beat+Bassline Editor - Takt+Basgång-redigeraren + Takt+Basgång-redigerare - + Play/pause current beat/bassline (Space) Spela/pausa nuvarande takt/basgång (Mellanslag) - + Stop playback of current beat/bassline (Space) - Avsluta uppspelning av nuvarande takt/basgång (Mellanslag) + Stoppa uppspelning av nuvarande takt/basgång (Mellanslag) - - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Klicka här för att spela takt/basgång. Takt/basgång återupprepas automatiskt när dess slut nås. - - - - Click here to stop playing of current beat/bassline. - Klicka här för att sluta spela takt/basgång. - - - + 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 - BBTCOView + PatternClipView - + Open in Beat+Bassline-Editor - Öppna Takt+Basgång-redigeraren + Öppna i Takt+Basgång-redigeraren - + Reset name Nollställ namn - + Change name Byt namn - - - Change color - Byt färg - - - - Reset color to default - Nollställ färg till standard - - BBTrack + PatternTrack - + Beat/Bassline %1 Takt/Basgång %1 - + Clone of %1 Kopia av %1 @@ -876,8 +750,8 @@ If you're interested in translating LMMS in another language or want to imp - Input Gain: - Ingång förstärkning: + Input gain: + Ingångsförstärkning: @@ -886,13 +760,13 @@ If you're interested in translating LMMS in another language or want to imp - Input Noise: - + Input noise: + Ingångsbrus: - Output Gain: - Output Förstärkning + Output gain: + Utgångsförstärkning: @@ -901,84 +775,2577 @@ If you're interested in translating LMMS in another language or want to imp - Output Clip: - + Output clip: + Utmatningsklipp: - - Rate Enabled - Hastighet Aktiverad + + Rate enabled + Hastighet aktiverad - - Enable samplerate-crushing - + + Enable sample-rate crushing + Aktivera sampelhastighetskrossare - - Depth Enabled - + + Depth enabled + Djup aktiverat - - Enable bitdepth-crushing - + + Enable bit-depth crushing + Aktivera bitdjupskrossare - + FREQ FREKV. - + Sample rate: Samplingsfrekvens: - + STEREO STEREO - + Stereo difference: Stereo skillnad: - + QUANT - + KVANT - + Levels: Nivåer: - CaptionMenu + 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 + + + + CarlaAboutW + + + About Carla + Om Carla + + + + About + Om + + + + About text here + Om-text här + + + + Extended licensing here + 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 + + 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 + +   GNU GENERAL PUBLIC LICENSE +Version 2, Juni 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Var och en äger kopiera och distribuera exakta kopior av detta +licensavtal, men att ändra det är inte tillåtet. + +BAKGRUND + +De flesta programvarulicenser är skapade för att ta bort din frihet +att ändra och dela med dig av programvaran. GNU General Public License +är tvärtom skapad för att garantera din frihet att dela med dig av och +förändra fri programvara -- för att försäkra att programvaran är fri för alla +dess användare. Denna licens [General Public License] används för de +flesta av Free Software Foundations programvaror och för alla andra +program vars upphovsmän använder sig av General Public License. (Viss +programvara från Free Software Foundation använder istället GNU +Library General Public License.) Du kan använda licensen för dina program. + +När vi talar om fri programvara syftar vi på frihet och inte på pris. +Våra [General Public License-] licenser är skapade för att garantera din +rätt distribuera och sprida kopior av fri programvara (och ta betalt för +denna tjänst om du önskar), att garantera att du får källkoden till +programvaran eller kan få den om du så önskar, att garantera att du +kan ändra och modifiera programvaran eller använda dess delar i ny fri +programvara samt slutligen att garantera att du är medveten om dessa +rättigheter. + +För att skydda dina rättigheter, måste vi begränsa var och ens möjlighet +att hindra dig från att använda dig av dessa rättigheter samt från att kräva +att du ger upp dessa rättigheter. Dessa begränsningar motsvaras av en +förpliktelse för dig om du distribuerar kopior av programvaran eller om du +ändrar eller modifierar programvaran. + +Om du exempelvis distribuerar kopior av en fri programvara, oavsett om +du gör det gratis eller mot en avgift, måste du ge mottagaren alla de +rättigheter du själv har. Du måste också tillse att mottagaren får källkoden +eller kan få den om mottagaren så önskar. Du måste också visa dessa +licensvillkor för mottagaren så att mottagaren känner till sina rättigheter. + +Vi skyddar dina rättigheter i två steg: (1) upphovsrätt till programvaran +och (2) dessa licensvillkor som ger dig rätt att kopiera, distribuera och eller +ändra programvaran. + +För varje upphovsmans säkerhet och vår säkerhet vill vi för tydlighets skull +klargöra att det inte lämnas några garantier för denna fria programvara. Om +programvaran förändras av någon annan än upphovsmannen vill vi klargöra för +mottagaren att det som mottagaren har är inte originalversionen av +programvaran och att förändringar av och felaktigheter i programvaran inte skall +belasta den ursprunglige upphovsmannen. + +Slutligen skall det sägas att all fri programvara ständigt hotas av +mjukvarupatent. Vi vill undvika att en distributör [eller vidareutvecklare] +av fri programvara individuellt skaffar patentlicenser till programvaran och +därmed gör programvaran till föremål för äganderätt. För att undvika detta +har vi gjorde det tydligt att samtliga mjukvarupatent måste registreras för +allas fria användning eller inte registreras alls. + +Här nedan följer licensvillkoren för att kopiera, distribuera och ändra +programvaran. + +GNU GENERAL PUBLIC LICENSE +VILLKOR FÖR ATT KOPIERA, DISTRIBUERA OCH ÄNDRA PROGRAMVARAN + +Dessa licensvillkor gäller varje programvara eller annat verk som innehåller +en hänvisning till dessa licensvillkor där upphovsrättsinnehavaren stadgat att +programvaran kan distribueras enligt [General Public License] dessa villkor. +"Programvaran" enligt nedan syftar på varje sådan programvara eller verk +och "Verk baserat på Programvaran" syftar på antingen Programvaran eller +på derivativa verk, såsom ett verk som innehåller Programvaran eller en del +av Programvaran, antingen en exakt kopia eller en ändrad kopia och/eller +översatt till ett annat språk. (översättningar ingår nedan utan begränsningar i +begreppet "förändringar", "förändra" samt "ändringar" eller "ändra".) Varje +licenstagare benämns som "Du". + +Åtgärder utom kopiering, distribution och ändringar täcks inte av dessa +licensvillkor. Användningen av Programvaran är inte begränsad och +resultatet av användningen av Programvaran täcks endast av dessa +licensvillkor om resultatet utgör ett Verk baserat på Programvaran +(oberoende av att det skapats av att programmet körts). Det beror på +vad Programvaran gör. + +1. Du äger kopiera och distribuera exakta kopior av Programvarans källkod +såsom Du mottog den, i alla medier, förutsatt att Du tydligt och på ett skäligt +sätt på varje exemplar fäster en riktig upphovsrättsklausul och +garantiavsägelse, vidhåller alla hänvisningar till dessa licensvillkor och till alla +garantiavsägelser samt att till alla mottagaren av Programvaran ge en kopia +av dessa licensvillkor tillsammans med Programvaran. + +Du äger utta en avgift för mekaniseringen [att fysiskt fästa Programvaran +på ett medium, såsom en diskett eller en CD-ROM-skiva] eller överföringen +av en kopia och du äger erbjuda en garanti för Programvaran mot en avgift. + +2. Du äger ändra ditt exemplar eller andra kopior av Programvaran eller +någon del av Programvaran och därmed skapa ett Verk baserat på +Programvaran, samt att kopiera och distribuera sådana förändrade versioner +av Programvaran eller verk enligt villkoren i paragraf 1 ovan, förutsatt att du +också uppfyller följande villkor: + +a) Du tillser att de förändrade filerna har ett tydligt meddelande som +berättar att Du ändrat filerna samt vilket datum dessa ändringar gjordes. + +b) Du tillser att alla verk som du distribuerar eller offentliggör som till en +del eller i sin helhet innehåller eller är härlett från Programvaran eller en +del av Programvaran, licensieras i sin helhet, utan kostnad till tredje man +enligt dessa licensvillkor. + +c) Om den förändrade Programvaran i sitt normala utförande kan utföra +interaktiv kommandon när det körs, måste Du tillse att när +Programmet startas skall det skriva ut eller visa, på ett enkelt tillgängligt sätt, +ett meddelande som tydligt och på ett skäligt sätt på varje exemplar fäster +en riktig upphovsrättsklausul och garantiavsägelse (eller i förekommande fall +ett meddelande som klargör att du tillhandahåller en garanti) samt att +mottagaren äger distribuera Programvaran enligt dessa licensvillkor samt +berätta hur mottagaren kan se dessa licensvillkor. (Från denna skyldighet +undantas det fall att Programvaran förvisso är interaktiv, men i sitt normala +utförande inte visar ett meddelande av denna typ. I sådant fall behöver Verk +baserat Programvaran inte visa ett sådant meddelande som nämns ovan.) + +Dessa krav gäller det förändrade verket i dess helhet. Om identifierbara delar +av verket inte härrör från Programvaran och skäligen kan anses vara fristående +och självständiga verk i sig, då skall dessa licensvillkor inte gälla i de delarna när +de distribueras som egna verk. Men om samma delar distribueras tillsammans +med en helhet som innehåller verk som härrör från Programvaran, måste +distributionen i sin helhet ske enligt dessa licensvillkor. Licensvillkoren skall i +sådant fall gälla för andra licenstagare för hela verket och sålunda till alla delar +av Programvaran, oavsett vem som är upphovsman till vilka delar av verket. + +Denna paragraf skall sålunda inte tolkas som att anspråk görs på rättigheter +eller att ifrågasätta Dina rättigheter till programvara som skrivits helt av Dig. +Syftet är att tillse att rätten att kontrollera distributionen av derivativa eller +samlingsverk av Programvaran. + +Förekomsten av ett annat verk på ett lagringsmedium eller samlingsmedium +som innehåller Programvaran eller Verk baserat på Programvaran leder inte +till att det andra verket omfattas av dessa licensvillkor. + +3. Du äger kopiera och distribuera Programvaran (eller Verk baserat på +Programvaran enligt paragraf 2) i objektkod eller i körbar form enligt villkoren i +paragraf 1 och paragraf 2 förutsatt att Du också gör en av följande saker: + +a) Bifogar den kompletta källkoden i maskinläsbar form, som måste +distribueras enligt villkoren i paragraf 1 och 2 på ett medium som i allmänhet +används för utbyte av programvara, eller + +b) Bifogar ett skriftligt erbjudande, med minst tre års giltighet, att ge tredje +man, mot en avgift som högst uppgår till Din kostnad att utföra fysisk +distribution, en fullständig kopia av källkoden i maskinläsbar form, distribuerad +enligt villkoren i paragraf 1 och 2 på ett medium som i allmänhet används för +utbyte av programvara, eller + +c) Bifogar det skriftligt erbjudande Du fick att erhålla källkoden. (Detta +alternativ kan endast användas för icke-kommersiell distribution och endast +om Du erhållit ett program i objektkod eller körbar form med ett erbjudande i +enlighet med b ovan.) + +Källkoden för ett verk avser den form av ett verk som är att föredra för att göra +förändringar av verket. För ett körbart verk avser källkoden all källkod för +moduler det innehåller, samt alla tillhörande gränssnittsfiler, definitioner, scripts +för att kontrollera kompilering och installation av den körbara Programvaran. Ett +undantag kan dock göras för sådant som normalt distribueras, antingen i binär +form eller som källkod, med huvudkomponterna i operativsystemet (kompliator, +kärna och så vidare) i vilket den körbara programvaran körs, om inte denna +komponent medföljer den körbara programvaran. + +Om distributionen av körbar Programvara eller objektkod görs genom att +erbjuda tillgång till att kopiera från en bestämd plats, då skall motsvarande +tillgång till att kopiera källkoden från samma plats räknas som distribution av +källkoden, även om trejde man inte behöver kopiera källkoden tillsammans med +objektkoden. + +4. Du äger inte kopiera, ändra, licensiera eller distribuera Programvaran +utom på dessa licensvillkor. All övrig kopiering, ändringar, licensiering eller +distribution av Programvaran är ogiltig och kommer automatiskt medföra att +Du förlorar Dina rättigheter enligt dessa licensvillkor. Tredje man som har +mottagit kopior eller rättigheter från Dig enligt dessa licensvillkor kommer dock +inte att förlora sina rättigheter så länge de följer licensvillkoren. + +5. Du åläggs inte att acceptera licensvillkoren, då du inte har skrivit under +detta avtal. Du har dock ingen rätt att ändra eller distribuera Programvaran +eller Verk baserat på Programvaran. Sådan verksamhet är förbjuden i lag om +du inte accepterar och följer dessa licensvillkor. Genom att ändra eller +distribuera Programvaran (eller verk baserat på Programvaran) visar du med +genom ditt handlande att du accepterar licensvillkoren och alla villkor för att +kopiera, distribuera eller ändra Programvaran eller Verk baserat på +Programvaran. + +6. Var gång du distributerar Progamvaran (eller Verk baserat på +Programvaran), kommer mottagaren per automatik att få en licens från den +första licensgivaren att kopiera, distribuera eller ändra Programvaran enligt +dessa licensvillkor. Du äger inte ålägga mottagaren några andra restriktioner +än de som följer av licensvillkoren. Du är inte skyldig att tillse att tredje man +följer licensvillkoren. + +7. Om Du på grund av domstols dom eller anklagelse om patentintrång +eller på grund av annan anledning (ej begränsat till patentfrågor), Du får villkor +(oavsett om de kommer via domstols dom, avtal eller på annat sätt) som +strider mot dessa licensvillkor så fråntar de inte Dina förpliktelser enligt +dessa licensvillkor. Om du inte kan distribuera Programvaran och samtidigt +uppfylla licensvillkor och andra skyldigheter, får du som en konsekvens inte +distribuera Programvaran. Om exempelvis ett patent gör att Du inte distribuera +Programvaran fritt till alla de som mottager kopior direkt eller indirekt från Dig, +så måste Du helt sluta distribuera Programvaran. + +Om delar av denna paragraf förklaras ogiltig eller annars inte kan verkställas +skall resten av paragrafen äga fortsatt giltighet och paragrafen i sin helhet äga +fortsatt giltighet i andra sammanhang. + +Syftet med denna paragraf är inte att förmå Dig att begå patentintrång eller +att begå intrång i andra rättigheter eller att förmå Dig att betrida giltigheten i +sådana rättigheter. Denna paragraf har ett enda syfte, vilket är att skydda +distributionssystemet för fri programvara vilket görs genom användandet av +dessa licensvillkor. Många har bidragit till det stora utbudet av programvara +som distribueras med hjälp av dessa licensvillkor och den fortsatta giltigheten +och användningen av detta system, men det är upphovsmannen själv som +måste besluta om han eller hon vill distribuera Programvaran genom detta +system eller ett annat och en licenstagare kan inte tvinga en upphovsman till +ett annat beslut. + +Denna paragraf har till syfte att ställa det utom tvivel vad som anses följa +av resten av dessa licensvillkor. + +8. Om distributionen och/eller användningen av Programvaran är begränsad +i vissa länder på grund av patent eller upphovsrättsligt skyddade gränssnitt +kan upphovsmannen till Programvaran lägga till en geografisk spridningsklausul, +enligt vilken distribution är tillåten i länder förutom dem i vilket det är förbjudet. +Om så är fallet kommer begränsningen att utgöra en fullvärdig del av +licensvillkoren. + +9. The Free Software Foundation kan offentliggöra ändrade och/eller nya +versioner av the General Public License från tid till annan. Sådana nya +versioner kommer i sin helhet att påminna om nuvarande version av the +General Public License, men kan vara ändrade i detaljer för att behandla nya +problem eller göra nya överväganden. Varje version ges ett särskiljande +versionsnummer. Om Programvaran specificerar ett versionsnummer av +licensvillkoren samt "alla senare versioner" kan Du välja mellan att följa +dessa licensvillkor eller licensvillkoren i alla senare versioner offentliggjorda +av the Free Software Foundation. Om Programvaran inte specificerar ett +versionnummer av licensvillkoren kan Du välja fritt bland samtliga versioner +som någonsin offentligjorts. + +10. Om du vill använda delar av Programvaran i annan fri programvara som +distribueras enligt andra licensvillkor, begär tillstånd från upphovsmannen. För +Programvaran var upphovsrätt innehas av Free Software Foundation, tillskriv +Free Software Foundation, vi gör ibland undantag för detta. Vårt beslut grundas +på våra två mål att bibehålla den fria statusen av alla verk som härleds från vår +Programvara och främjandet av att dela med sig av och återanvända mjukvara +i allmänhet. + +INGEN GARANTI + +11. DÅ DENNA PROGRAMVARA LICENSIERAS UTAN KOSTNAD GES INGEN +GARANTI FÖR PROGRAMMET, UTOM SÅDAN GARANTI SOM MÅSTE GES ENLIGT +TILLÄMPLIG LAG. FÖRUTOM DÅ DET UTTRYCKS I SKRIFT TILLHANDAHÅLLER +UPPHOVSRÄTTSINNEHAVAREN OCH/ELLER ANDRA PARTER PROGRAMMET "I +BEFINTLIGT SKICK" ("AS IS") UTAN GARANTIER AV NÅGRA SLAG, VARKEN +UTTRYCKLIGA ELLER UNDERFÖRSTÅDDA, INKLUSIVE, MEN INTE BEGRÄNSAT +TILL, UNDERFÖRSTÅDDA GARANTIER VID KÖP OCH LÄMPLIGHET FÖR ETT +SÄRSKILT ÄNDAMÅL. HELA RISKEN FÖR KVALITET OCH ANVÄNDBARHET BÄRS +AV DIG. OM PROGRAMMET SKULLE VISA SIG HA DEFEKTER SKALL DU BÄRA +ALLA KOSTNADER FöR FELETS AVHJÄLPANDE, REPARATIONER ELLER +NÖDVÄNDIG SERVICE. + +12. INTE I NÅGOT FALL, UTOM NÄR DET GÄLLER ENLIGT TILLÄMPLIG LAG +ELLER NÄR DET ÖVERENSKOMMITS SKRIFTLIGEN, SKALL EN +UPPHOVSRÄTTSINNEHAVARE ELLER ANNAN PART SOM ÄGER ÄNDRA +OCH/ELLER DISTRIBUERA PROGRAMVARAN ENLIGT OVAN, VARA SKYLDIG UTGE +ERSÄTTNING FÖR SKADA DU LIDER, INKLUSIVE ALLMÄN, DIREKT ELLER INDIREKT +SKADA SOM FÖLJER PÅ GRUND AV ANVÄNDNING ELLER OMÖJLIGHET ATT +ANVÄNDA PROGRAMVARAN (INKLUSIVE MEN INTE BEGRÄNSAT TILL FÖRLUST +AV DATA OCH INFORMATION ELLER DATA OCH INFORMATION SOM +FRAMSTÄLLTS FELAKTIGT AV DIG ELLER TREDJE PART ELLER FEL DÄR +PROGRAMMET INTE KUNNAT KÖRAS SAMTIDIGT MED ANNAN PROGRAMVARA), +ÄVEN OM EN SÅDAN UPPHOVSRÄTTSINNEHAVAREN ELLER ANNAN PART +UPPLYSTS OM MÖJLIGHETEN TILL SÅDAN SKADA. + +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> + + + + + (Engine not running) + (Motor kör inte) + + + + 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) + + + + CarlaHostW + + + MainWindow + HuvudFönster + + + + Rack + Rack + + + + Patchbay + Kopplingsplint + + + + Logs + Loggar + + + + Loading... + Läser in... + + + + 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 - - Help (not available) - Hjälp (inte tillgängligt) + + toolBar + verktygsFält + + + + 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 + + + + &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… + + + + 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 - - Click here to show or hide the graphical user interface (GUI) of Carla. - Klicka här för att visa eller gömma användargränssnittet för Carla. + + Settings + Inställningar + + + + main + huvud + + + + canvas + duk + + + + engine + motor + + + + osc + osc + + + + file-paths + filsökvägar + + + + plugin-paths + tilläggssökvägar + + + + wine + wine + + + + experimental + experimentell + + + + Widget + Kontroll + + + + + Main + Huvud + + + + + Canvas + Duk + + + + + Engine + Motor + + + + File Paths + Filsökvägar + + + + Plugin Paths + Tilläggssökvägar + + + + Wine + Wine + + + + + Experimental + Experimentell + + + + <b>Main</b> + <b>Huvud</b> + + + + Paths + Sökvägar + + + + Default project folder: + Standardprojektmapp: + + + + Interface + Gränssnitt + + + + 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 + + + + 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 + + + + 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 + + + + 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) + + + + Whenever possible, run the plugins in bridge mode. + När det är möjligt, kör tillägget i bryggat läge. + + + + 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 @@ -992,96 +3359,96 @@ If you're interested in translating LMMS in another language or want to imp 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 + 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. @@ -1089,37 +3456,32 @@ If you're interested in translating LMMS in another language or want to imp ControllerView - + Controls Kontroller - - Controllers are able to automate the value of a knob, slider, and other controls. - Kontroller kan automatisera värdet på en vred, reglage, och andra 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 @@ -1128,86 +3490,106 @@ If you're interested in translating LMMS in another language or want to imp CrossoverEQControlDialog - Band 1/2 Crossover: - + Band 1/2 crossover: + Band 1/2-korsningspunkt: - Band 2/3 Crossover: - + Band 2/3 crossover: + Band 2/3-korsningspunkt: - Band 3/4 Crossover: - + Band 3/4 crossover: + Band 3/4-korsningspunkt: + + + + Band 1 gain + Band 1-förstärkning - Band 1 Gain: - Band 1 Förstärkn.: + Band 1 gain: + Band 1-förstärkning: + + + + Band 2 gain + Band 2-förstärkning - Band 2 Gain: - Band 2 Förstärkn.: + Band 2 gain: + Band 2-förstärkning: + + + + Band 3 gain + Band 3-förstärkning - Band 3 Gain: - Band 3 Förstärkn.: + Band 3 gain: + Band 3-förstärkning: + + + + Band 4 gain + Band 4-förstärkning - Band 4 Gain: - Band 4 Förstärkn.: + Band 4 gain: + Band 4-förstärkning: - Band 1 Mute - Band 1 Tyst + Band 1 mute + Band 1-tystning - Mute Band 1 - Tysta Band 1 + Mute band 1 + Tysta band 1 - Band 2 Mute - Band 2 Tyst + Band 2 mute + Band 2-tystning - Mute Band 2 - Tysta Band 2 + Mute band 2 + Tysta band 2 - Band 3 Mute - Band 3 Tyst + Band 3 mute + Band 3-tystning - Mute Band 3 - Tysta Band 3 + Mute band 3 + Tysta band 3 - Band 4 Mute - Band 4 Tyst + Band 4 mute + Band 4-tystning - Mute Band 4 - Tysta Band 4 + Mute band 4 + Tysta band 4 DelayControls - Delay Samples - Fördröj samplingar + Delay samples + Fördröj ljudfiler @@ -1216,13 +3598,13 @@ If you're interested in translating LMMS in another language or want to imp - Lfo Frequency - Lfo-frekvens + LFO frequency + LFO-frekvens - Lfo Amount - Lfo-mängd + LFO amount + LFO-mängd @@ -1239,18 +3621,18 @@ If you're interested in translating LMMS in another language or want to imp - Delay Time - Tidsfördröjning + Delay time + Fördröjningstid FDBK - + RNDG - Feedback Amount - Återgivningsmängd + Feedback amount + Rundgångsbelopp @@ -1259,23 +3641,23 @@ If you're interested in translating LMMS in another language or want to imp - Lfo - Lfo + LFO frequency + LFO-frekvens AMNT - + BELP - Lfo Amt - + LFO amount + LFO-mängd - Out Gain - Ut-förstärkning + Out gain + Utgångsförstärkning @@ -1283,6 +3665,224 @@ If you're interested in translating LMMS in another language or want to imp 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 + Carla-kontroll - Anslut + + + + Remote setup + Fjärrinställning + + + + UDP Port: + UDP-port: + + + + Remote host: + Fjärrvärd: + + + + 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 + Ställ in värde + + + + TextLabel + TextLabel + + + + Scale Points + Skala punkter + + + + DriverSettingsW + + + Driver Settings + Drivrutinsinställningar + + + + Device: + Enhet: + + + + Buffer size: + Buffertstorlek: + + + + Sample rate: + Samplingsfrekvens: + + + + Triple buffer + Trippelbuffring + + + + Show Driver Control Panel + Visa kontrollpanel för drivrutin + + + + Restart the engine to load the new settings + Starta om motorn för att läsa in de nya inställningarna + + DualFilterControlDialog @@ -1343,13 +3943,13 @@ If you're interested in translating LMMS in another language or want to imp - Click to enable/disable Filter 1 - Klicka för att aktivera/inaktivera Filter 1 + Enable/disable filter 1 + Aktivera/inaktivera filter 1 - Click to enable/disable Filter 2 - Klicka för att aktivera/inaktivera Filter 2 + Enable/disable filter 2 + Aktivera/inaktivera filter 2 @@ -1366,8 +3966,8 @@ If you're interested in translating LMMS in another language or want to imp - Cutoff 1 frequency - Cutoff 1 frekvens + Cutoff frequency 1 + Brytfrekvens 1 @@ -1396,8 +3996,8 @@ If you're interested in translating LMMS in another language or want to imp - Cutoff 2 frequency - Cutoff 2 frekvens + Cutoff frequency 2 + Brytfrekvens 2 @@ -1412,37 +4012,37 @@ If you're interested in translating LMMS in another language or want to imp - LowPass + Low-pass Lågpass - HiPass + Hi-pass Högpass - BandPass csg - BandPass csg + Band-pass csg + Bandpass csg - BandPass czpg - BandPass czpg + Band-pass czpg + Banspass czpg Notch - + Bandspärr - Allpass + All-pass Allpass @@ -1454,50 +4054,50 @@ If you're interested in translating LMMS in another language or want to imp - 2x LowPass + 2x Low-pass 2x Lågpass - RC LowPass 12dB - RC Lågpass 12dB + RC Low-pass 12 dB/oct + RC Lågpass 12 dB/oct - RC BandPass 12dB - RC BandPass 12dB + RC Band-pass 12 dB/oct + RC Bandpass 12 dB/oct - RC HighPass 12dB - RC Högpass 12dB + RC High-pass 12 dB/oct + RC Högpass 12 dB/oct - RC LowPass 24dB - RC Lågpass 24dB + RC Low-pass 24 dB/oct + RC Lågpass 24 dB/oct - RC BandPass 24dB - RC BandPass 24dB + RC Band-pass 24 dB/oct + RC Bandpass 24 dB/oct - RC HighPass 24dB - RC Högpass 24dB + RC High-pass 24 dB/oct + RC Högpass 24 dB/oct - Vocal Formant Filter - + Vocal Formant + Språkformant @@ -1508,89 +4108,94 @@ If you're interested in translating LMMS in another language or want to imp - SV LowPass + SV Low-pass SV Lågpass - SV BandPass - SV BandPass + SV Band-pass + SV Bandpass - SV HighPass + 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 - Blöt/Torr mix + Effekt/original-mix - + Gate Gate - + Decay - Förfall + Decay @@ -1604,12 +4209,12 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView - + EFFECTS CHAIN EFFEKTKEDJA - + Add effect Lägg till effekt @@ -1617,28 +4222,28 @@ If you're interested in translating LMMS in another language or want to imp EffectSelectDialog - + Add effect Lägg till effekt - - + + Name Namn - + Type Typ - + Description Beskrivning - + Author Författare @@ -1646,396 +4251,256 @@ If you're interested in translating LMMS in another language or want to imp EffectView - - Toggles the effect on or off. - Slår på eller av effekten. - - - + On/Off På/Av - + W/D B/T - + Wet Level: Blöt Nivå: - - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - - - - + DECAY - FÖRFALL + DECAY - + Time: Tid: - - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - - - - + GATE GATE - + Gate: Gate: - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - - - - + Controls Kontroller - - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - - - - + Move &up Flytta &upp - + Move &down Flytta &ner - + &Remove this plugin - &Ta bort den här insticksmodulen + &Ta bort det här tillägget EnvelopeAndLfoParameters - - - Predelay - För-fördröjning - - - - Attack - Attack - - Hold - Hold + Env pre-delay + Knt förfördröjning - Decay - Decay + Env attack + Knt stegring - Sustain - Sustain + Env hold + Knt håll - Release - Release + Env decay + Knt sänkning - Modulation - Modulering + Env sustain + Knt håll - - LFO Predelay - + + Env release + Knt avklingning - - LFO Attack - LFO-Attack + + Env mod amount + Knt mod-mängd - - LFO speed - LFO-hastighet + + LFO pre-delay + LFO förfördröjning - - LFO Modulation - LFO-Modulering + + LFO attack + LFO-attack - LFO Wave Shape - LFO-vågform + LFO frequency + LFO-frekvens - Freq x 100 - Frekv. x 100 + LFO mod amount + LFO mod-mängd - Modulate Env-Amount - Modulera Env-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 - - Predelay: - För-fördröjning: + + + Pre-delay: + Förfördröjning: - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - - - - - + + ATT ATT - + + Attack: Attack: - - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - - - - + HOLD HOLD - + Hold: Hold: - - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - - - - + DEC DEC - + Decay: Decay: - - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - - - - + SUST SUST - + Sustain: Sustain: - - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - - - - + REL REL - + Release: Release: - - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - - - - - + + AMT MÄNGD - - + + Modulation amount: Moduleringsmängd: - - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - - - - - LFO predelay: - LFO-för-fördröjning: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Använd denna ratt för att ställa för-fördröjningen för aktuell LFO. Ju högre värdet är desto längre tid tar det innan LFO'n börjar oscillera. - - - - LFO- attack: - LFO-attack: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Använd denna ratt för att ställa attack-tiden för aktuell LFO. Ju högre värdet är desto längre tid tar det för LFO'n att nå sin maximala amplitud. - - - + SPD SPD - - LFO speed: - LFO-hastighet: + + Frequency: + Frekvens: - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Använd denna ratt för att ställa hastigheten för aktuell LFO. Ju högre värdet är desto snabbare oscillerar LFO'n och desto snabbare är effekten. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Använd denna ratt för att ställa mängden modulering för aktuell LFO. Ju högre värdet är desto större valt värde (volym eller cutoff-frekvens) kommer influeras av denna LFO. - - - - Click here for a sine-wave. - Klicka här för sinusvåg. - - - - Click here for a triangle-wave. - Klicka här för triangelvåg. - - - - Click here for a saw-wave for current. - Klicka här för sågtandsvåg för aktuell. - - - - Click here for a square-wave. - Klicka här för fyrkantvåg. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - - - - - Click here for random wave. - Klicka här för en slumpmässig vågform. - - - + FREQ x 100 FREKV. x 100 - - Click here if the frequency of this LFO should be multiplied by 100. - Klicka här för att multiplicera frekvensen för denna LFO med 100. + + Multiply LFO frequency by 100 + Multiplicera LFO-frekvens med 100 - - multiply LFO-frequency by 100 - multiplicera LFO-frekvensen med 100 + + MODULATE ENV AMOUNT + MODULERA KNT-MÄNGD - - MODULATE ENV-AMOUNT - + + Control envelope amount by this LFO + Styr konturmängd via denna LFO - - Click here to make the envelope-amount controlled by this LFO. - - - - - control envelope-amount by this LFO - - - - + ms/LFO: ms/LFO: - + Hint Ledtråd - - Drag a sample from somewhere and drop it in this window. - Dra en ljudfil till det här fönstret. + + Drag and drop a sample into this window. + Drag och släpp en ljudfil hit. @@ -2052,148 +4517,148 @@ Right clicking will bring up a context menu where you can change the order in wh - Low shelf gain - + 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 - + High-shelf gain + Högsockel först. HP res - + HP uppl. - Low Shelf res - + 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 - + High-shelf res + Högsockel uppl. LP res - + LP uppl. HP freq - + HP frekv. - Low Shelf freq - + 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 - + High-shelf freq + Högsockel frekv. LP freq - + LP-frekv. HP active - + HP aktiv - Low shelf active - + 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 - + High-shelf active + Högsockel aktiv @@ -2232,13 +4697,13 @@ Right clicking will bring up a context menu where you can change the order in wh - low pass type - Lågpass-typ + Low-pass type + Lågpasstyp - high pass type - Högpass-typ + High-pass type + Högpasstyp @@ -2260,33 +4725,33 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf - + Low-shelf + Lågsockel Peak 1 - + Topp 1 Peak 2 - + Topp 2 Peak 3 - + Topp 3 Peak 4 - + Topp 4 - High Shelf - + High-shelf + Högsockel @@ -2295,8 +4760,8 @@ Right clicking will bring up a context menu where you can change the order in wh - In Gain - In-förstärkning + Input gain + Ingångsförstärkning @@ -2307,8 +4772,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Out Gain - Ut-förstärkning + Output gain + Utgångsförstärkning @@ -2332,13 +4797,13 @@ Right clicking will bring up a context menu where you can change the order in wh - lp grp - + LP group + LP-grup - hp grp - + HP group + HP-grupp @@ -2351,7 +4816,7 @@ Right clicking will bring up a context menu where you can change the order in wh BW: - + BW: @@ -2363,202 +4828,217 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog - + Export project Exportera projekt - - Output - Utgång + + Export as loop (remove extra bar) + Exportera som loop (ta bort extra takt) - - File format: - Filformat: - - - - Samplerate: - Samplingshastighet: - - - - 44100 Hz - 44100 Hz - - - - 48000 Hz - 48000 Hz - - - - 88200 Hz - 88200 Hz - - - - 96000 Hz - 96000 Hz - - - - 192000 Hz - 192000 Hz - - - - Depth: - Djup: - - - - 16 Bit Integer - - - - - 24 Bit Integer - - - - - 32 Bit Float - - - - - Stereo mode: - Stereoläge: - - - - Stereo - Stereo - - - - Joint Stereo - - - - - Mono - Mono - - - - Bitrate: - Bithastighet: - - - - 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 - Använd variabel bithastighet - - - - Quality settings - Kvalitetsinställningar - - - - Interpolation: - Interpolering: - - - - Zero Order Hold - - - - - Sinc Fastest - - - - - Sinc Medium (recommended) - - - - - Sinc Best (very slow!) - - - - - Oversampling (use with care!): - Översampling (använd varsamt!): - - - - 1x (None) - 1x (Ingen) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - - Export as loop (remove end silence) - Exportera som loop (ta bort slut-tystnad) - - - + Export between loop markers Exportera mellan slinga-markeringar - + + Render Looped Section: + Rendera loopat område: + + + + time(s) + gång(er) + + + + File format settings + Inställningar för filformat + + + + File format: + Filformat: + + + + Sampling rate: + Samplingsfrekvens: + + + + 44100 Hz + 44100 Hz + + + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Bitdjup: + + + + 16 Bit integer + 16-bitar heltal + + + + 24 Bit integer + 24-bitar heltal + + + + 32 Bit float + 32-bitar flyttal + + + + Stereo mode: + Stereoläge: + + + + Mono + Mono + + + + Stereo + Stereo + + + + Joint stereo + Kombinerad stereo + + + + Compression level: + Kompressionsnivå: + + + + Bitrate: + Bithastighet: + + + + 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 + Använd variabel bithastighet + + + + Quality settings + Kvalitetsinställningar + + + + Interpolation: + Interpolering: + + + + Zero order hold + Nollnivå håll + + + + Sinc worst (fastest) + Sinc sämst (snabbast) + + + + Sinc medium (recommended) + Sinc medium (rekommenderas) + + + + Sinc best (slowest) + Sinc bäst (långsammast) + + + + Oversampling: + Översampling: + + + + 1x (None) + 1x (Ingen) + + + + 2x + 2x + + + + 4x + 4x + + + + 8x + 8x + + + Start Starta - + Cancel Avbryt @@ -2575,22 +5055,32 @@ Please make sure you have write permission to the file and the directory contain 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% @@ -2598,8 +5088,12 @@ Se till att du har skrivbehörighet till filen och mappen som innehåller filen 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: @@ -2607,55 +5101,95 @@ Se till att du har skrivbehörighet till filen och mappen som innehåller filen 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 instrument-spår + Skicka till aktivt instrumentspår - - Open in new instrument-track/Song Editor - Öppna i nytt instrument-spår/Låt-redigeraren + + Open containing folder + Öppna innehållande mapp - - Open in new instrument-track/B+B Editor - + + 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 - - does not appear to be a valid - verkar inte vara en giltig + + %1 does not appear to be a valid %2 file + %1 verkar inte vara en giltig %2-fil - - file - fil - - - + --- Factory files --- --- Grundfiler --- @@ -2664,13 +5198,13 @@ Se till att du har skrivbehörighet till filen och mappen som innehåller filen FlangerControls - Delay Samples - Fördröj samplingar + Delay samples + Fördröj ljudfiler - Lfo Frequency - Lfo-frekvens + LFO frequency + LFO-frekvens @@ -2679,16 +5213,21 @@ Se till att du har skrivbehörighet till filen och mappen som innehåller filen - Regen - + Stereo phase + Stereofas + Regen + Regen + + + Noise Brus - + Invert Invertera @@ -2702,7 +5241,7 @@ Se till att du har skrivbehörighet till filen och mappen som innehåller filen - Delay Time: + Delay time: Fördröjningstid: @@ -2718,7 +5257,7 @@ Se till att du har skrivbehörighet till filen och mappen som innehåller filen AMNT - + BELP @@ -2727,142 +5266,485 @@ Se till att du har skrivbehörighet till filen och mappen som innehåller filen - FDBK - + PHASE + FAS - Feedback Amount: - + Phase: + Fas: + FDBK + RNDG + + + + Feedback amount: + Mängd rundgång: + + + NOISE BRUS - - White Noise Amount: - + + White noise amount: + Mängd vitt brus: - + Invert Invertera - FxLine + 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 + + + + MixerLine + + Channel send amount Kanalsändningsbelopp - - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - - + 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 + - FxMixer + MixerLineLcdSpinBox - + + Assign to: + Tilldela till: + + + + New mixer Channel + Ny FX-kanal + + + + Mixer + + Master Master - - - - FX %1 + + + + Channel %1 FX %1 - + Volume Volym - + Mute Tysta - + Solo Solo - FxMixerView + MixerView - - FX-Mixer - FX-Mixer + + Mixer + mixer - - FX Fader %1 + + Fader %1 FX Fader %1 - + Mute Tysta - - Mute this FX channel + + Mute this mixer channel Tysta denna FX-kanal - + Solo Solo - - Solo FX channel - FX-kanal Solo + + Solo mixer channel + Solo FX-kanal - FxRoute + MixerRoute - - + + Amount to send from channel %1 to channel %2 Mängd att skicka från kanal %1 till kanal %2 @@ -2870,17 +5752,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument - + Bank Bank - + Patch - + Inställning - + Gain Förstärkning @@ -2888,58 +5770,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - - Open other GIG file - Öppna en annan GIG-fil - - - - Click here to open another GIG file - Klicka här för att öppna en annan GIG-fil - - - - Choose the patch - - - - - Click here to change which patch of the GIG file to use - - - - - - Change which instrument of the GIG file is being played - Välj vilket instrument i GIG-filen som ska spelas - - - - Which GIG file is currently being used - Vilken GIG-fil används för närvarande - - - - Which patch of the GIG file is currently being used - Vilken del av GIG-filen används för närvarande - - - - Gain - Förstärkning - - - - Factor to multiply samples by - Faktor att multiplicera samplingar med - - - + + Open GIG file Öppna GIG-fil - + + Choose patch + Välj inställning + + + + Gain: + Förstärkning: + + + GIG Files (*.gig) GIG-filer (*.gig) @@ -2947,52 +5794,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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. Vill du skapa denna nu? Du kan ändra mappen senare via Redigera -> Inställningar. + 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 @@ -3000,34 +5847,39 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio - + Arpeggio Arpeggio - + Arpeggio type Arpeggio-typ - + Arpeggio range Arpeggio-omfång + + + Note repeats + + Cycle steps - + Cykelsteg Skip rate - + Överhoppshastighet Miss rate - + Misshastighet @@ -3037,7 +5889,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri Arpeggio gate - + Arpeggiogrind @@ -3093,139 +5945,119 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggioView - + ARPEGGIO ARPEGGIO - - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - - + RANGE OMFÅNG - + Arpeggio range: Arpeggio-omfång: - + octave(s) oktav(er) - - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. + + REP - + + Note repeats: + + + + + time(s) + gång(er) + + + CYCLE - + CYKEL - + Cycle notes: - + Cykelnoter: - + note(s) not(er) - - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - - - - + SKIP - + HOPP - + Skip rate: - + Överhoppshastighet: - - - + + + % % - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - + MISS - + MISS - + Miss rate: - + Misshastighet - - The miss function will make the arpeggiator miss the intended note. - - - - + TIME TID - + Arpeggio time: Arpeggio-tid: - + ms ms - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Använd denna ratt för att ställa arpeggio-tiden i millisekunder. Arpeggio-tiden anger hur länge varje arpeggio-ton ska spelas. - - - + GATE GATE - + Arpeggio gate: - + Arpeggiogate: - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - + Chord: Ackord: - + Direction: Riktning: - + Mode: Läge: @@ -3233,488 +6065,488 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionNoteStacking - + octave oktav - - + + Major Dur - + Majb5 - + Majb5 - + minor moll - + minb5 - + mollb5 + + + + sus2 + sus2 - sus2 - + sus4 + sus4 - sus4 - + aug + aug - aug - + augsus4 + augsus4 - augsus4 - - - - tri - + tre - + 6 6 - + 6sus4 - + 6sus4 + + + + 6add9 + 6add9 - 6add9 - + m6 + 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 - 7add13 - - - - 7#11 7#11 - + Maj7 - + Maj7 + + + + Maj7b5 + Maj7b5 - Maj7b5 - + Maj7#5 + Maj7#5 - Maj7#5 - + Maj7#11 + Maj7#11 - Maj7#11 - + Maj7add13 + Maj7add13 - Maj7add13 - + m7 + m7 - m7 - + m7b5 + m7b5 - m7b5 - + m7b9 + m7b9 - m7b9 - + m7add11 + m7add11 - m7add11 - + m7add13 + m7add13 - m7add13 - + m-Maj7 + m-Maj7 - m-Maj7 - + m-Maj7add11 + m-Maj7add11 - m-Maj7add11 - - - - m-Maj7add13 - + m-Maj7add13 - + 9 9 - + 9sus4 - + 9sus4 + + + + add9 + add9 - add9 - - - - 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 - + Maj9 + + + + Maj9sus4 + Maj9sus4 - Maj9sus4 - + Maj9#5 + Maj9#5 - Maj9#5 - + Maj9#11 + Maj9#11 - Maj9#11 - + m9 + m9 - m9 - + madd9 + madd9 - madd9 - + m9b5 + m9b5 - m9b5 - - - - m9-Maj7 - + m9-Maj7 - + 11 11 - + 11b9 - + 11b9 + + + + Maj11 + Maj11 - Maj11 - + m11 + m11 - m11 - - - - m-Maj11 - + m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 - + Maj13 + + + + m13 + 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 - Minor pentatonic - + Jap in sen + Jap in sen - Jap in sen - + Major bebop + Dur bebop - Major bebop - + Dominant bebop + Dominant bebop - Dominant bebop - - - - Blues Blues - + Arabic Arabisk - + Enigmatic Gåtfull - + Neopolitan - + Napolitansk + + + + Neopolitan minor + Napolitansk moll - Neopolitan minor - + Hungarian minor + Ungersk moll - Hungarian minor - + Dorian + Dorisk - Dorian - + Phrygian + Frygisk - Phrygian - + Lydian + Lydisk - Lydian - + Mixolydian + Mixolydisk - Mixolydian - + Aeolian + Aeolisk - Aeolian - + Locrian + Lokrisk - Locrian - - - - 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 @@ -3722,349 +6554,333 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionNoteStackingView - + STACKING STAPLA - + Chord: Ackord: - + RANGE OMFÅNG - + Chord range: Ackordomfång: - + octave(s) oktav(er) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - InstrumentMidiIOView - + ENABLE MIDI INPUT AKTIVERA MIDI-INMATNING - - - CHANNEL - KANAL - - - - - VELOCITY - HASTIGHET - - - + ENABLE MIDI OUTPUT AKTIVERA MIDI-UTGÅNG - - PROGRAM - PROGRAM + + + 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 BASHASTIGHET + ANPASSAD BAS-VELOCITET - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - + + 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 - BASHASTIGHET + BAS-VELOCITET InstrumentMiscView - + MASTER PITCH - + HUVUDTONHÖJD - - Enables the use of Master Pitch - + + 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 - - LowPass + + Low-pass Lågpass - - HiPass + + Hi-pass Högpass + + + Band-pass csg + Bandpass csg + - BandPass csg - BandPass csg + Band-pass czpg + Banspass czpg - BandPass czpg - BandPass czpg + Notch + Bandspärr - Notch - - - - - Allpass + All-pass Allpass - + Moog Moog - - 2x LowPass + + 2x Low-pass 2x Lågpass + + + RC Low-pass 12 dB/oct + RC Lågpass 12 dB/oct + - RC LowPass 12dB - RC Lågpass 12dB + RC Band-pass 12 dB/oct + RC Bandpass 12 dB/oct - RC BandPass 12dB - RC BandPass 12dB + RC High-pass 12 dB/oct + RC Högpass 12 dB/oct - RC HighPass 12dB - RC Högpass 12dB + RC Low-pass 24 dB/oct + RC Lågpass 24 dB/oct - RC LowPass 24dB - RC Lågpass 24dB + RC Band-pass 24 dB/oct + RC Bandpass 24 dB/oct - RC BandPass 24dB - RC BandPass 24dB + RC High-pass 24 dB/oct + RC Högpass 24 dB/oct - RC HighPass 24dB - RC Högpass 24dB + Vocal Formant + Språkformant - Vocal Formant Filter - - - - 2x Moog 2x Moog - - SV LowPass + + SV Low-pass SV Lågpass - - SV BandPass - SV BandPass + + SV Band-pass + SV Bandpass - - SV HighPass + + SV High-pass SV Högpass - + SV Notch - + SV Bandspärr + + + + Fast Formant + Snabbformant - Fast Formant - - - - Tripole - + Tripol InstrumentSoundShapingView - + TARGET MÅL - - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - - + FILTER FILTER - - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Här kan du välja vilket inbyggt filter du vill använda för detta instrument-spår. Filter är väldigt viktiga om man vill ändra karaktäristiken på ett ljud. - - - + FREQ FREKV. - - cutoff frequency: - cutoff-frekvens: + + Cutoff frequency: + Brytfrekvens: - + Hz Hz - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - + + Q/RESO + Q/UPPL - - RESO - RESO + + Q/Resonance: + Q/Resonans: - - Resonance: - Resonans: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - - + Envelopes, LFOs and filters are not supported by the current instrument. - + Konturer, LFO:er och filter stöds inte av det aktuella instrumentet. InstrumentTrack - - With this knob you can set the volume of the opened channel. - Med denna ratt ställer du volymen för den öppnade kanalen. - - - + unnamed_track namnlöst_spår - + Base note Grundton + + + First note + + + + + Last note + Senaste noten + Volume @@ -4087,17 +6903,27 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX channel + Mixer channel FX-kanal - Master Pitch + Master pitch + Huvudtonhöjd + + + + Enable/Disable MIDI CC + Aktivera/inaktivera MIDI CC + + + + CC Controller %1 - - + + Default preset Standardinställning @@ -4105,213 +6931,274 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrackView - + Volume Volym - + Volume: Volym: - + VOL VOL - + Panning Panorering - + Panning: Panorering: - + PAN PAN - + MIDI MIDI - + Input Ingång - + Output Utgång - - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 FX %1: %2 InstrumentTrackWindow - + GENERAL SETTINGS ÖVERGRIPANDE INSTÄLLNINGAR - - Use these controls to view and edit the next/previous track in the song editor. - Använd dessa kontroller för att visa och redigera nästa/föregående spår i låtredigeraren. + + Volume + Volym - - Instrument volume - Instrument-volym - - - + Volume: Volym: - + VOL VOL - + Panning Panorering - + Panning: Panorering: - + PAN PAN - + Pitch Tonhöjd - + Pitch: Tonhöjd: - + cents - + hundradelar - + PITCH - + TONDHÖJD - + Pitch range (semitones) - + Tonhöjdsomfång (halvtoner) - + RANGE OMFÅNG - - FX channel + + Mixer channel FX-kanal - - FX + + CHANNEL FX - + Save current instrument track settings in a preset file Spara aktuella instrumentspårinställningar i en förinställd fil - - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - - - - + SAVE SPARA - + Envelope, filter & LFO - + Kontur, filter & LFO - + Chord stacking & arpeggio - + Ackordstapling & apreggio - + Effects Effekter - - MIDI settings - MIDI-inställningar + + MIDI + MIDI - + Miscellaneous Diverse - + Save preset Spara förinställning - + XML preset file (*.xpf) XML förinställnings-fil (*.xpf) - + Plugin - Insticksmodul + 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: @@ -4340,33 +7227,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView - + Link channels Länka kanaler - + Value: Värde: - - - Sorry, no help available. - Ledsen, ingen hjälp är tillgänglig. - LadspaEffect - + Unknown LADSPA plugin %1 requested. - Okänd LADSPA-insticksmodul %1 efterfrågad. + 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: @@ -4403,7 +7303,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri LFO Controller - + LFO-kontroller @@ -4444,640 +7344,640 @@ You can remove and move FX channels in the context menu, which is accessed by ri LFO - - LFO Controller - + + BASE + BAS - BASE - - - - - Base amount: - + Base: + Bas: - todo - + FREQ + FREKV. - - SPD - SPD + + LFO frequency: + LFO-frekvens: - - LFO-speed: - - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - - - - + AMNT - + BELP - + Modulation amount: Moduleringsmängd: - - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - - + PHS - + FAS - + Phase offset: - + Fasposition: - - degrees - grader + + degrees + grader - - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - + + Sine wave + Sinusvåg - - Click here for a sine-wave. - Klicka här för sinusvåg. + + Triangle wave + Triangelvåg - - Click here for a triangle-wave. - Klicka här för triangelvåg. + + Saw wave + Sågtandsvåg - - Click here for a saw-wave. - Klicka här för sågtandsvåg + + Square wave + Fyrkantvåg - - Click here for a square-wave. - Klicka här för fyrkantvåg. + + Moog saw wave + Moog sågtandsvåg - - Click here for a moog saw-wave. - + + Exponential wave + Exponentiell våg - - Click here for an exponential wave. - + + White noise + Vitt brus - - Click here for white-noise. - Klicka här för vitt brus. - - - - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Klicka här för en användardefinierad form. + 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 + - LmmsCore + 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 insticksmodulsbläddraren + 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 - Rotmapp + Root-mapp - + Volumes Volymer - + My Computer Min dator - - Loading background artwork - Laddar bakgrunds-grafik - - - + &File &Arkiv - + &New &Ny - - New from template - Nytt från mall - - - + &Open... &Öppna... - - &Recently Opened Projects - &Nyligen öppnade projekt + + 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 - - What's This? - Vad är det här? - - - + About Om - + Create new project Skapa nytt projekt - + Create new project from template Skapa nytt projekt från mall - + Open existing project - Öppna existerande projekt + Öppna befintligt projekt - + Recently opened projects Nyligen öppnade projekt - + Save current project Spara aktuellt projekt - + Export current project Exportera aktuellt projekt - - What's this? - Vad är detta? + + Metronome + Metronom - - Toggle metronome - Slå på/av metronom + + + Song Editor + Låtredigerare - - Show/hide Song-Editor - Visa/dölj Låtredigeraren + + + Beat+Bassline Editor + Takt+Basgång-redigerare - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Genom att trycka på den här knappen kan du visa eller dölja Låtredigeraren. Med hjälp av Låtredigeraren kan du redigera låtspellista och ange när vilken låt ska spelas. Du kan också infoga och flytta samplingar (t.ex. rap-samplingar) direkt i spellistan. + + + Piano Roll + Pianorulle - - Show/hide Beat+Bassline Editor - Visa/dölj Takt+Basgång-redigeraren + + + Automation Editor + Automatiseringsredigerare - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - + + + Mixer + mixer - - Show/hide Piano-Roll - Visa/dölj pianorulle - - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Klicka här för att visa eller dölja pianorullen. Med hjälp av pianorullen kan du skapa melodier på ett enkelt sätt. - - - - Show/hide Automation Editor - Visa/dölj Automationsredigeraren - - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - - - - - Show/hide FX Mixer - Visa/dölj FX Mixer - - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - - - - - Show/hide project notes - Visa/dölj projektanteckningar - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Klicka här för att visa eller dölja fönstret för projektanteckningar. I detta fönster kan du göra noteringar om ditt projekt, - - - + 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). - - Song Editor - Låtredigeraren - - - - Beat+Bassline Editor - Takt+Basgång-redigeraren - - - - Piano Roll - Pianorulle - - - - Automation Editor - Automatiseringsredigeraren - - - - FX Mixer - FX-mixer - - - - Project Notes - Projektanteckningar - - - + Controller Rack Kontrollrack - + + Project Notes + Projektanteckningar + + + + Fullscreen + Helskärm + + + Volume as dBFS Volym som dBFS - + Smooth scroll - Mjuk rullning + 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 @@ -5093,6 +7993,25 @@ Besök https://lmms.io/documentation/ för dokumentation (Engelska).Nämnare + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + CC %1 + + MidiController @@ -5109,23 +8028,43 @@ Besök https://lmms.io/documentation/ för dokumentation (Engelska). MidiImport - - + + Setup incomplete Installation ofullständig - - You do not have 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 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 @@ -5145,6 +8084,241 @@ Besök https://lmms.io/documentation/ för dokumentation (Engelska).JACK-servern verkar vara avstängd. + + MidiPatternW + + + MIDI Pattern + MIDI-mönster + + + + Time Signature: + Tidsignatur: + + + + + + 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: + Takter: + + + + + + 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: + Standardlängd: + + + + + 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: + Kvantisera: + + + + &File + &Arkiv + + + + &Edit + &Redigera + + + + &Quit + &Avsluta + + + + &Insert Mode + &Infogningsläge + + + + F + F + + + + &Velocity Mode + &Hastighetsläge + + + + D + D + + + + Select All + Välj alla + + + + A + A + + MidiPort @@ -5170,12 +8344,12 @@ Besök https://lmms.io/documentation/ för dokumentation (Engelska). Fixed input velocity - Fast ingångshastighet + Fast ingångsvelocitet Fixed output velocity - Fast utgångshastighet + Fast utgångsvelocitet @@ -5190,7 +8364,7 @@ Besök https://lmms.io/documentation/ för dokumentation (Engelska). Base velocity - Bashastighet + Bas-velocitet @@ -5206,1037 +8380,844 @@ Besök https://lmms.io/documentation/ för dokumentation (Engelska). MidiSetupWidget - - DEVICE - ENHET + + Device + Enhet MonstroInstrument - - Osc 1 Volume - Osc 1 Volym + + Osc 1 volume + Osc. 1 volym - - Osc 1 Panning - Osc 1 Panorering + + Osc 1 panning + Osc 1 panorering - - Osc 1 Coarse detune - + + Osc 1 coarse detune + Osc. 1 grovurstämning - - Osc 1 Fine detune left - + + Osc 1 fine detune left + Osc. 1 finurstämning vänster - - Osc 1 Fine detune right - + + Osc 1 fine detune right + Osc. 1 finurstämning höger - - Osc 1 Stereo phase offset - + + Osc 1 stereo phase offset + Osc. 1 stereofasposition - - Osc 1 Pulse width - + + Osc 1 pulse width + Osc. 1 pulsbredd - - Osc 1 Sync send on rise - + + Osc 1 sync send on rise + Osc. 1 synksändning vid stigning - - Osc 1 Sync send on fall - + + Osc 1 sync send on fall + Osc. 1 synksändning vid fall - - Osc 2 Volume - + + Osc 2 volume + Osc. 2 volym - - Osc 2 Panning - + + Osc 2 panning + Osc 2 panorering - - Osc 2 Coarse detune - + + Osc 2 coarse detune + Osc. 2 grovurstämning - - Osc 2 Fine detune left - + + Osc 2 fine detune left + Osc. 2 finurstämning vänster - - Osc 2 Fine detune right - + + Osc 2 fine detune right + Osc. 2 finurstämning höger - - Osc 2 Stereo phase offset - + + Osc 2 stereo phase offset + Osc. 2 stereofasposition - - Osc 2 Waveform - + + Osc 2 waveform + Osc. 2 vågform - - Osc 2 Sync Hard - + + Osc 2 sync hard + Osc. 2 synk hård - - Osc 2 Sync Reverse - + + Osc 2 sync reverse + Osc. 2 synk omvänd - - Osc 3 Volume - + + Osc 3 volume + Osc. 3 volym - - Osc 3 Panning - + + Osc 3 panning + Osc 3 panorering - - Osc 3 Coarse detune - + + Osc 3 coarse detune + Osc. 3 grovurstämning - + Osc 3 Stereo phase offset - + Osc. 3 stereofastposition - - Osc 3 Sub-oscillator mix - + + Osc 3 sub-oscillator mix + Osc. 3 underoscillatormix - - Osc 3 Waveform 1 - + + Osc 3 waveform 1 + Osc. 3 vågform 1 - - Osc 3 Waveform 2 - + + Osc 3 waveform 2 + Osc. 3 vågform 2 - - Osc 3 Sync Hard - + + Osc 3 sync hard + Osc. 3 synk hård - - Osc 3 Sync Reverse - + + Osc 3 Sync reverse + Osc. 3 synk omvänd - - LFO 1 Waveform - + + LFO 1 waveform + LFO 1 vågform - - LFO 1 Attack - + + LFO 1 attack + LFO 1. stegring - - LFO 1 Rate - + + LFO 1 rate + LFO 1 hastighet - - LFO 1 Phase - + + LFO 1 phase + LFO 1 fas - - LFO 2 Waveform - + + LFO 2 waveform + LFO 2 vågform - - LFO 2 Attack - + + LFO 2 attack + LFO 2 stegring - - LFO 2 Rate - + + LFO 2 rate + LFO 2 hastighet - - LFO 2 Phase - + + LFO 2 phase + LFO 2 fas - - Env 1 Pre-delay - + + Env 1 pre-delay + Knt 1 förfördröjning - - Env 1 Attack - + + Env 1 attack + Knt 1 stegring - - Env 1 Hold - + + Env 1 hold + Knt 1 håll - - Env 1 Decay - + + Env 1 decay + Knt 1 sänkning - - Env 1 Sustain - + + Env 1 sustain + Knt 1 hållnivå - - Env 1 Release - + + Env 1 release + Knt 1 avklingning - - Env 1 Slope - + + Env 1 slope + Knt 1 kurva - - Env 2 Pre-delay - + + Env 2 pre-delay + Knt 2 förfördröjning - - Env 2 Attack - + + Env 2 attack + Knt 2 stegring - - Env 2 Hold - + + Env 2 hold + Knt 2 håll - - Env 2 Decay - + + Env 2 decay + Knt 2 sänkning - - Env 2 Sustain - + + Env 2 sustain + Knt 2 hållnivå - - Env 2 Release - + + Env 2 release + Knt 2 avklingning - - Env 2 Slope - + + Env 2 slope + Knt 2 kurva - - Osc2-3 modulation - + + Osc 2+3 modulation + Osc. 2+3-modulering - + Selected view Vald vy - - Vol1-Env1 - + + Osc 1 - Vol env 1 + Osc. 1 - Vol. knt 1 - - Vol1-Env2 - + + Osc 1 - Vol env 2 + Osc. 1 - Vol. knt 2 - - Vol1-LFO1 - + + Osc 1 - Vol LFO 1 + Osc. 1 - Vol. LFO 1 - - Vol1-LFO2 - + + Osc 1 - Vol LFO 2 + Osc. 1 - Vol. LFO 2 - - Vol2-Env1 - + + Osc 2 - Vol env 1 + Osc. 2 - Vol. knt 1 - - Vol2-Env2 - + + Osc 2 - Vol env 2 + Osc. 2 - Vol. knt 2 - - Vol2-LFO1 - + + Osc 2 - Vol LFO 1 + Osc. 2 - Vol. LFO 1 - - Vol2-LFO2 - + + Osc 2 - Vol LFO 2 + Osc. 2 - Vol. LFO 2 - - Vol3-Env1 - + + Osc 3 - Vol env 1 + Osc. 3 - Vol. knt 1 - - Vol3-Env2 - + + Osc 3 - Vol env 2 + Osc. 3 - Vol. knt 2 - - Vol3-LFO1 - + + Osc 3 - Vol LFO 1 + Osc. 3 - Vol. LFO 1 - - Vol3-LFO2 - + + Osc 3 - Vol LFO 2 + Osc. 3 - Vol. LFO 2 - - Phs1-Env1 - + + Osc 1 - Phs env 1 + Osc. 1 - Fas knt 1 - - Phs1-Env2 - + + Osc 1 - Phs env 2 + Osc. 1 - Fas knt 2 - - Phs1-LFO1 - + + Osc 1 - Phs LFO 1 + Osc. 1 - Fas LFO 1 - - Phs1-LFO2 - + + Osc 1 - Phs LFO 2 + Osc. 1 - Fas LFO 2 - - Phs2-Env1 - + + Osc 2 - Phs env 1 + Osc. 2 - Fas knt 1 - - Phs2-Env2 - + + Osc 2 - Phs env 2 + Osc. 2 - Fas knt 2 - - Phs2-LFO1 - + + Osc 2 - Phs LFO 1 + Osc. 2 - Fas LFO 1 - - Phs2-LFO2 - + + Osc 2 - Phs LFO 2 + Osc. 2 - Fas LFO 2 - - Phs3-Env1 - + + Osc 3 - Phs env 1 + Osc. 3 - Fas knt 1 - - Phs3-Env2 - + + Osc 3 - Phs env 2 + Osc. 3 - Fas knt 2 - - Phs3-LFO1 - + + Osc 3 - Phs LFO 1 + Osc. 3 - Fas LFO 1 - - Phs3-LFO2 - + + Osc 3 - Phs LFO 2 + Osc. 3 - Fas LFO 2 - - Pit1-Env1 - + + Osc 1 - Pit env 1 + Osc. 1 - Pit knt 1 - - Pit1-Env2 - + + Osc 1 - Pit env 2 + Osc. 1 - Pit knt 2 - - Pit1-LFO1 - + + Osc 1 - Pit LFO 1 + Osc. 1 - Pit LFO 1 - - Pit1-LFO2 - + + Osc 1 - Pit LFO 2 + Osc. 1 - Pit LFO 2 - - Pit2-Env1 - + + Osc 2 - Pit env 1 + Osc. 2 - Pit knt 1 - - Pit2-Env2 - + + Osc 2 - Pit env 2 + Osc. 2 - Pit knt 2 - - Pit2-LFO1 - + + Osc 2 - Pit LFO 1 + Osc. 2 - Pit LFO 1 - - Pit2-LFO2 - + + Osc 2 - Pit LFO 2 + Osc. 2 - Pit LFO 2 - - Pit3-Env1 - + + Osc 3 - Pit env 1 + Osc. 3 - Pit knt 1 - - Pit3-Env2 - + + Osc 3 - Pit env 2 + Osc. 3 - Pit knt 2 - - Pit3-LFO1 - + + Osc 3 - Pit LFO 1 + Osc. 3 - Pit LFO 1 - - Pit3-LFO2 - + + Osc 3 - Pit LFO 2 + Osc. 3 - Pit LFO 2 - - PW1-Env1 - + + Osc 1 - PW env 1 + Osc. 1 - PW knt 1 - - PW1-Env2 - + + Osc 1 - PW env 2 + Osc. 1 - PW knt 2 - - PW1-LFO1 - + + Osc 1 - PW LFO 1 + Osc. 1 - PW LFO 1 - - PW1-LFO2 - + + Osc 1 - PW LFO 2 + Osc. 1 - PW LFO 2 - - Sub3-Env1 - + + Osc 3 - Sub env 1 + Osc. 3 - Sub knt 1 - - Sub3-Env2 - + + Osc 3 - Sub env 2 + Osc. 3 - Sub knt 2 - - Sub3-LFO1 - + + Osc 3 - Sub LFO 1 + Osc. 3 - Sub LFO 1 - - Sub3-LFO2 - + + 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 - Mjuk fyrkantvåg + 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 slät + Slumpmässigt jämn MonstroView - + Operators view Operatörernas vy - - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - - + Matrix view - + Matrisvy - - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - - - + + + Volume Volym - - - + + + Panning Panorering - - - + + + Coarse detune - + Grovurstämning - - - + + + semitones halvtoner - - - Finetune left - + + + Fine tune left + Finurstämning vänster - - - - + + + + cents - + hundradelar - - - Finetune right - + + + 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 - Släpp + Release - - + + Slope Lutning - - Mix Osc2 with Osc3 - Mixa Osc2 med Osc3 + + Mix osc 2 with osc 3 + Mixa osc. 2 med osc. 3 - - Modulate amplitude of Osc3 with Osc2 - Modulera amplituden för Osc3 med Osc2 + + Modulate amplitude of osc 3 by osc 2 + Modulera amplituden för osc. 3 med osc. 2 - - Modulate frequency of Osc3 with Osc2 - Modulera frekvensen för Osc3 med Osc2 + + Modulate frequency of osc 3 by osc 2 + Modulera frekvens för osc. 3 med osc. 2 - - Modulate phase of Osc3 with Osc2 - Modulera fasen för Osc3 med Osc2 + + Modulate phase of osc 3 by osc 2 + Modulera fasen för osc. 3 med osc. 2 - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Hard sync: varje gång oscillatorn tar emot en synkroniseringssignal från oscillator 1 återställs dess fas till 0 + vad dess fasförskjutning är. - - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - - Choose waveform for oscillator 2. - Välj vågform för oscillator 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - - - PHS controls the phase offset of the LFO. - - - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount Moduleringsmängd @@ -6251,17 +9232,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator Step length: - + Steglängd: Dry - + Original - Dry Gain: - + Dry gain: + Originalförstärkning: @@ -6270,340 +9251,528 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Lowpass stages: - + Low-pass stages: + Lågpassteg: Swap inputs - + Växla ingångar - Swap left and right input channel for reflections - + 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 - + + Channel 1 coarse detune + Kanal 1 grovurstämning - - Channel 1 Volume + + Channel 1 volume Kanal 1 volym - - Channel 1 Envelope length - + + Channel 1 envelope length + Kanal 1 konturlängd - - Channel 1 Duty cycle - + + Channel 1 duty cycle + Kanal 1 arbetscykel - - Channel 1 Sweep amount - + + Channel 1 sweep amount + Kanal 1 svepmängd - - Channel 1 Sweep rate - + + 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 - + + Channel 2 envelope length + Kanal 2 konturlängd - - Channel 2 Duty cycle - + + Channel 2 duty cycle + Kanal 2 arbetscykel - - Channel 2 Sweep amount - + + Channel 2 sweep amount + Kanal 2 svepmängd - - Channel 2 Sweep rate - + + Channel 2 sweep rate + Kanal 2 svephastighet - - Channel 3 Coarse detune - + + Channel 3 coarse detune + Kanal 3 grovurstämning - - Channel 3 Volume + + Channel 3 volume Kanal 3 volym - - Channel 4 Volume + + Channel 4 volume Kanal 4 volym - - Channel 4 Envelope length - + + Channel 4 envelope length + Kanal 4 konturlängd - - Channel 4 Noise frequency - + + Channel 4 noise frequency + Kanal 4 brusfrekvens - - Channel 4 Noise frequency sweep - + + 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 + + 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 @@ -6629,7 +9798,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator Patch - + Inställning @@ -6650,105 +9819,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - - Open other patch - + + Open patch + Öppna inställning - - Click here to open another patch-file. Loop and Tune settings are not reset. - - - - + Loop Slinga - + Loop mode Slinga-läge - - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - - - - + Tune Tune - + Tune mode Tune-läge - - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - - - - + No file selected Ingen fil vald - + Open patch file Öppna patch-fil - + Patch-Files (*.pat) Patch-filer (*.pat) - PatternView + MidiClipView - - use mouse wheel to set velocity of a step - använd mushjulet för att ställa in hastigheten på ett steg - - - - double-click to open in Piano Roll - Dubbelklicka för att öppna i Pianorulle - - - + 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 @@ -6758,17 +9907,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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. @@ -6776,210 +9925,245 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PEAK - + TOPP LFO Controller - + LFO-kontroller PeakControllerEffectControlDialog - + BASE - + BAS - - Base amount: - + + Base: + Bas: - + AMNT - + BELP - + Modulation amount: Moduleringsmängd: - + MULT - + MULT - - Amount Multiplicator: - + + 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 - Släpp + Release - + Treshold Tröskelvärde - + Mute output Tysta utgångs-ljud - - Abs Value - Abs-värde + + Absolute value + Absolut värde - - Amount Multiplicator - + + Amount multiplicator + Mängdmultiplikator PianoRoll - + Note Velocity - Nothastighet + 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 - - Velocity: %1% - Hastighet: %1% + + Nudge + - + + Snap + + + + + Velocity: %1% + Velocitet: %1% + + + Panning: %1% left Panorering: %1% vänster - + Panning: %1% right Panorering: %1% höger - + Panning: center Panorering: center - - Please open a pattern by double-clicking on it! + + 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: @@ -6987,386 +10171,1434 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PianoRollWindow - - Play/pause current pattern (Space) + + 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 sång eller BB-spår spelas + Spela in noter från MIDI-enhet/kanal-piano medan låt eller BB-spår spelas - - Stop playing of current pattern (Space) + + 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) - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Klicka här för att spela det aktuella mönstret, detta är användbart när man redigerar. Mönstret spelas från början igen när det nått sitt slut. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - - Click here to stop playback of current pattern. - Klicka här för att stoppa uppspelning av de aktuella mönstret. - - - + 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) - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Klicka här och ritläget kommer att aktiveras. I det här läget kan du lägga till, ändra storlek och flytta anteckningar. Detta är standardläget som används för det mesta. Du kan också trycka på 'Shift+D' på tangentbordet för att aktivera det här läget. I det här läget håller du %1 intryckt för att tillfälligt gå in i välja-läget. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Klicka här och radera-läge kommer att aktiveras. I det här läget kan du radera anteckningar. Du kan också trycka på "Skift+E" på tangentbordet för att aktivera det här läget. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Klicka här och välja-läget aktiveras. I det här läget kan du välja anteckningar. Alternativt kan du hålla %1 i ritläget för att tillfälligt använda välja-läget. - - - + Pitch Bend mode (Shift+T) - + Tonhöjdsböjningsläge (Shift+T) - - Click here and Pitch Bend mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - + 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 selected notes (%1+X) - Klipp ut valda noter (%1+X) + + Cut (%1+X) + Klipp ut (%1+X) - - Copy selected notes (%1+C) - Kopiera valda noter (%1+C) + + Copy (%1+C) + Kopiera (%1+C) - - Paste notes from clipboard (%1+V) - Klistra in noter (%1+V) + + Paste (%1+V) + Klistra in (%1+V) - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klicka här och de valda noterna kommer att klippas ut till urklipp. Du kan klistra in dem var som helst i något mönster genom att klicka på knappen klistra in. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - Klicka här och de valda anteckningarna kopieras till urklipp. Du kan klistra in dem var som helst i något mönster genom att klicka på knappen klistra in. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - - - - + 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 - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - + + Clear ghost notes + Rensa spöknoter - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - - - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - - - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - - - - - + + Piano-Roll - %1 Pianorulle - %1 - - - Piano-Roll - no pattern + + + 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 - Instickmodulen hittades inte + Tillägget hittades inte - + The plugin "%1" wasn't found or could not be loaded! Reason: "%2" - Instickmodulen "%1" hittades inte eller kunde inte läsas in! + Tillägget "%1" hittades inte eller kunde inte läsas in! Orsak: "%2" - + Error while loading plugin - Fel vid inläsning av instickmodulen + Fel vid inläsning av tillägg - + Failed to load plugin "%1"! - Misslyckades att läsa in insticksmodulen "%1"! + Misslyckades att läsa in tillägget "%1"! PluginBrowser - + Instrument Plugins - Instrument insticksmoduler + 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 instrument spår. + 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 + + + + Format + Format + + + + Internal + Intern + + + + LADSPA + LADSPA + + + + 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 + + + + PluginEdit + + + Plugin Editor + Tilläggsredigerare + + + + Edit + Redigera + + + + Control + Kontroll + + + + MIDI Control Channel: + MIDI-kontrollkanal: + + + + N + N + + + + Output dry/wet (100%) + Utgång original/effekt (100%) + + + + Output volume (100%) + Utgångsvolym (100%) + + + + Balance Left (0%) + Balans vänster (0%) + + + + + Balance Right (0%) + Balans höger (0%) + + + + Use Balance + Använd balans + + + + Use Panning + Använd panorering + + + + Settings + Inställningar + + + + Use Chunks + Använd stycken + + + + Audio: + Ljud: + + + + Fixed-Size Buffer + Buffer med fix storlek + + + + Force Stereo (needs reload) + Tvingad stereo (kräver omstart) + + + + MIDI: + MIDI: + + + + Map Program Changes + Mapp programändringar + + + + 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 + + +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: PluginFactory - + Plugin not found. - Insticksmodulen hittades inte. + 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! + + + + PluginParameter + + + Form + Form + + + + Parameter Name + Parameternamn + + + + ... + ... + + + + PluginRefreshW + + + Carla - Refresh + Carla - Uppdatera + + + + Search for new... + Sök efter nya... + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + 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 + + + + PluginWidget + + + + + + + Frame + 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 + + + + Plugin Name + Tilläggsnamn + + + + Preset: + 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... @@ -7374,94 +11606,125 @@ Orsak: "%2" ProjectRenderer - - WAV-File (*.wav) - WAV-Fil (*.wav) + + WAV (*.wav) + WAV (*.wav) - - Compressed OGG-File (*.ogg) - Komprimerad OGG-Fil (*.ogg) + + FLAC (*.flac) + FLAC (*.flac) - - Compressed MP3-File (*.mp3) - Komprimerad MP3-fil ( *.mp3) + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QObject + + + Reload Plugin + Läs in tillägg igen + + + + Show GUI + Visa användargränssnitt + + + + Help + Hjälp QWidget - - + + + Name: - Namn: + Namn: - - + + URI: + URI: + + + + + Maker: - Skapare: + Skapare: - - + + + Copyright: Copyright: - - + + Requires Real Time: - + Kräver realtid: - - - - - - + + + + + + Yes Ja - - - - - - + + + + + + No Nej - - + + Real Time Capable: - + Klarar realtid: - - - In Place Broken: - - - - - - Channels In: - Kanaler In: - - - + - Channels Out: - Kanaler Ut: + In Place Broken: + Trasig på plats: - + + + Channels In: + Kanaler in: + + + + + Channels Out: + Kanaler ut: + + + File: %1 Fil: %1 @@ -7471,10 +11734,18 @@ Orsak: "%2" Fil: + + RecentProjectsMenu + + + &Recently Opened Projects + &Nyligen öppnade projekt + + RenameDialog - + Rename... Byt namn... @@ -7488,8 +11759,8 @@ Orsak: "%2" - Input Gain: - Input Förstärkning: + Input gain: + Ingångsförstärkning: @@ -7518,15 +11789,15 @@ Orsak: "%2" - Output Gain: - Output Förstärkning + Output gain: + Utgångsförstärkning: ReverbSCControls - Input Gain + Input gain Ingångsförstärkning @@ -7541,126 +11812,601 @@ Orsak: "%2" - Output Gain + Output gain Utgångsförstärkning + + SaControls + + + Pause + Pausa + + + + Reference freeze + Referensfrysning + + + + Waterfall + Vattenfall + + + + Averaging + Medelvärdesbildning + + + + Stereo + Stereo + + + + Peak hold + Topphållning + + + + Logarithmic frequency + Logaritmisk frekvens + + + + Logarithmic amplitude + Logaritmisk amplitud + + + + Frequency range + Frekvensområde + + + + Amplitude range + Amplitudomfång + + + + FFT block size + Blockstorlek för FFT + + + + FFT window type + FFT-fönstertyp + + + + Peak envelope resolution + Toppkonturupplösning + + + + Spectrum display resolution + Spektrumvisningsupplösning + + + + Peak decay multiplier + Toppavklingingsmultiplikator + + + + Averaging weight + Genomsnittsviktning + + + + Waterfall history size + Historikstorlek för vattenfall + + + + Waterfall gamma correction + Gammakorrigering för vattenfall + + + + FFT window overlap + Överlappning för FFT-fönster + + + + FFT zero padding + Nollfyllnad för FFT + + + + + Full (auto) + Fullständig (automatisk) + + + + + + Audible + Hörbart + + + + Bass + Bas + + + + Mids + Mellanregister + + + + High + Hög + + + + Extended + Utökat + + + + Loud + Högljudd + + + + 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 + + + + 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) - SampleTCOView + SampleClipView - - double-click to select sample - dubbelklicka för att välja ljudfil + + 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 + + + + + Use track color + Använd spårfärg + SampleTrack - + Volume Volym - + Panning Panorering - - + + Mixer channel + FX-kanal + + + + Sample track Ljudspår @@ -7668,608 +12414,795 @@ Orsak: "%2" SampleTrackView - + Track volume Spårvolym - + Channel volume: Kanalvolym: - + VOL VOL - + Panning Panorering - + Panning: Panorering: - + PAN PAN + + + Channel %1: %2 + FX %1: %2 + + + + SampleTrackWindow + + + 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 - - Setup LMMS - Ställ in LMMS - - - - - General settings - Allmänna inställningar - - - - BUFFER SIZE - BUFFERTSTORLEK - - - - - Reset to default-value + + Reset to default value Återställ till standardvärde - - MISC - - - - - Enable tooltips - Aktivera verktygstips - - - - Show restart warning after changing settings - Visa omstartsvarning efter att ha ändrat inställningar - - - - Display volume as dBFS - Visa volym som dBFS - - - - Compress project files per default - Komprimera projektfiler som standard - - - - One instrument track window mode - - - - - HQ-mode for output audio-device - HQ-läge för ljudenhetsutgång - - - - Compact track buttons - Kompakta spårknappar - - - - Sync VST plugins to host playback - - - - - Enable note labels in piano roll - Visa noter i pianorulle - - - - Enable waveform display by default - Aktivera vågformsvisning som standard - - - - Keep effects running even without input - Håll effekter igång även utan ingång - - - - Create backup file when saving a project - Skapa en backup-fil när ett projekt sparas - - - - Reopen last project on start - Öppna senaste projektet vid start - - - + Use built-in NaN handler Använd inbyggd NaN-hanterare - - PLUGIN EMBEDDING + + 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 - + + Mute automation tracks during solo + Tysta automatiseringsspårk vid solo + + + + Show warning when deleting tracks + + + + + Projects + Projekt + + + + Compress project files by default + Komprimera projektfiler som standard + + + + Create a backup file when saving a project + Skapa en säkerhetskopieringsfil vid sparning av projekt + + + + Reopen last project on startup + Öppna det senaste projektet vid uppstart + + + + Language + Språk + + + + + Performance + Prestanda + + + + Autosave + Spara automatiskt + + + + Enable autosave + Aktivera spara automatiskt + + + + Allow autosave while playing + Tillåt spara automatiskt medan du spelar + + + + User interface (UI) effects vs. performance + Användargränssnitts effekter versus prestanda + + + + Smooth scroll in song editor + Mjuk rullning i låtredigeraren + + + + 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 - - LANGUAGE - SPRÅK + + Keep plugin windows on top when not embedded + Håll tilläggsfönstren överst när de inte är inbäddade - - - Paths - Sökvägar + + Sync VST plugins to host playback + Synkronisera VST-tillägg för att vara värd för uppspelning - - Directories - Kataloger + + 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 - - Themes directory - Mapp för teman + + VST plugins directory + VST-tilläggsmapp - - Background artwork - Bakgrund konstverk + + LADSPA plugins directories + Mappar för LADSPA-tillägg - - VST-plugin directory - Mapp för VST-insticksmoduler - - - - GIG directory - Mapp för GIG-filer - - - + SF2 directory Mapp för SF2-filer - - LADSPA plugin directories - Katalog för LADSPA-insticksmoduler + + Default SF2 + Standard SF2 - - STK rawwave directory - Mapp för STK rå-vågform + + GIG directory + Mapp för GIG-filer - - Default Soundfont File - Standard Soundfont-fil + + Theme directory + Temamapp - - - Performance settings - Prestandainställningar + + Background artwork + Bakgrundskonstverk - - Auto save - Spara automatiskt + + Some changes require restarting. + Några ändringar kräver omstart. - - Enable auto-save - Aktivera automatisk sparande + + Autosave interval: %1 + Intervall för att spara automatisk: %1 - - Allow auto-save while playing - Tillåt automatisk sparande när du spelar + + Choose the LMMS working directory + Välj LMMS-arbetsmapp - - UI effects vs. performance - UI-effekter vs. prestanda + + Choose your VST plugins directory + Välj din VST-tilläggsmapp - - Smooth scroll in Song Editor - Mjuk rullning i Låtredigeraren + + Choose your LADSPA plugins directory + Välj din LADSPA-tilläggsmapp - - Show playback cursor in AudioFileProcessor - Visa uppspelningsmarkören i AudioFileProcessor + + Choose your default SF2 + Välj din standard SF2 - - - Audio settings - Ljudinställningar + + Choose your theme directory + Välj din temamapp - - AUDIO INTERFACE - LJUDGRÄNSSNITT + + Choose your background picture + Välj din bakgrundsbild - - - MIDI settings - MIDI-inställningar + + + Paths + Sökvägar - - MIDI INTERFACE - MIDIGRÄNSSNITT - - - + OK OK - + Cancel Avbryt - - Restart LMMS - Starta om LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - Många av ändringarna kommer inte gälla förrän LMMS startats om! - - - + Frames: %1 Latency: %2 ms Ramar: %1 Latens: %2 ms - - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Här kan du ställa in den interna buffertstorleken som används av LMMS. Mindre värden resulterar i en lägre latens men kan också orsaka oanvändbart ljud eller dålig prestanda, särskilt på äldre datorer eller system med en icke-realtidskernel. - - - - Choose LMMS working directory - Välj LMMS-arbetsmapp - - - + Choose your GIG directory Välj din GIG-mapp - + Choose your SF2 directory Välj din SF2-mapp - - Choose your VST-plugin directory - Välj mapp för dina VST-insticksmoduler - - - - Choose artwork-theme directory - Välj mapp för gränssnitts-tema - - - - Choose LADSPA plugin directory - Välj mapp för LADSPA-insticksmoduler - - - - Choose STK rawwave directory - Välj mapp för STK-rawwave - - - - Choose default SoundFont - Välj standard-SoundFont - - - - Choose background artwork - Välj bakgrunds-grafik - - - + minutes minuter - + minute minut - + Disabled Inaktiverad + + + SidInstrument - - Auto-save interval: %1 - Automatiskt sparande intervall: %1 + + Cutoff frequency + Cutoff frekvens - - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - + + Resonance + Resonans - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - + + Filter type + Filtertyp - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - + + Voice 3 off + Röst 3 av + + + + Volume + Volym + + + + Chip model + Chipmodell + + + + SidInstrumentView + + + Volume: + Volym: + + + + Resonance: + Resonans: + + + + + Cutoff frequency: + Brytfrekvens: + + + + High-pass filter + Högpassfilter + + + + Band-pass filter + Bandpassfilter + + + + Low-pass filter + Lågpassfilter + + + + 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: + + + + SideBarWidget + + + Close + Stäng Song - + Tempo Tempo - + Master volume Huvudvolym - + Master pitch + Huvudtonhöjd + + + + 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 - - 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 - - - - - All file types - Alla filtyper - - - - Empty project - Tomt projekt + (repeated %1 times) + (repetera %1 gånger) - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Projektet är tomt, export är meningslöst. Skapa något i Låtredigeraren innan du exporterar! - - - - Select directory for writing exported tracks... - Välj mapp för att skriva exporterade spår... - - - - - untitled - namnlös - - - - - Select file for project-export... - Välj fil för projekt-export... - - - - Save project - Spara projekt - - - - MIDI File (*.mid) - MIDI-fil (*.mid) - - - - The following errors occured while loading: + + The following errors occurred while loading: Följande fel inträffade under inläsning: SongEditor - + Could not open file Kunde inte öppna fil - + 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 to write to this file. Please make sure you have write-access to the file and try again. - Det gick inte att öppna %1 för att skriva. Du har förmodligen inte tillåtelse att skriva till den här filen. Se till att du har skrivåtkomst till filen och försök igen. + + 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 + + + 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 - - This %1 was created with LMMS %2. - Detta %1 skapades med LMMS %2. - - - + template mall - + project projekt - + Tempo Tempo - - TEMPO/BPM - TEMPO/BPM + + TEMPO + TEMPO - - tempo of song - Sångtempo + + Tempo in BPM + Tempot i BPM - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - - - - + High quality mode Hög kvalitet läge - - + + + Master volume Huvudvolym - - master volume - huvudvolym - - - - + + + Master pitch - + Huvudtonhöjd - - master pitch - - - - + Value: %1% Värde: %1% - + Value: %1 semitones Värde: %1 halvtoner @@ -8277,131 +13210,149 @@ Remember to also save your project manually. You can choose to disable saving wh SongEditorWindow - + Song-Editor Låtredigerare - + Play song (Space) - Spela sång (Mellanslag) + Spela låt (Mellanslag) - + 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) - Sluta spela sång (Mellanslag) + Stoppa låt (Mellanslag) - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Klicka här, om du vill spela hela din låt. Uppspelningen startas vid sångplaceringsmarkören (grön). Du kan också flytta den medan du spelar. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - - + Track actions Spåråtgärder - + Add beat/bassline Lägg till takt/basgång - + 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 - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Linjärt spektrum + + Horizontal zooming + Horisontell zoomning - - Linear Y axis - Linjär Y-axel + + 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 - SpectrumAnalyzerControls + StepRecorderWidget - - Linear spectrum - Linjärt spektrum + + Hint + Ledtråd - - Linear Y axis - Linjär Y-axel - - - - Channel mode - Kanalläge + + 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 @@ -8409,17 +13360,25 @@ Remember to also save your project manually. You can choose to disable saving wh TabWidget - + Settings for %1 Inställningar för %1 + + TemplatesMenu + + + New from template + Nytt från mall + + TempoSyncKnob - + Tempo Sync Temposynkronisering @@ -8469,42 +13428,42 @@ Remember to also save your project manually. You can choose to disable saving wh 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 @@ -8513,36 +13472,36 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units - Klicka för att ändra tidsenheter + Time units + Tidsenheter - + MIN MIN - + SEC SEK - + MSEC MSEK - + BAR - + TAKT - + BEAT TAKT - + TICK TICK @@ -8550,56 +13509,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - - Enable/disable auto-scrolling - Aktivera/inaktivera automatisk rullning + + Auto scrolling + Automatisk rullning - - Enable/disable loop-points - Aktivera/inaktivera loop-punkter + + Loop points + Looppunkter - - After stopping go back to begin - Efter att ha stoppat gå tillbaka till början + + 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. - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Håll nedtryckt för att flytta startlooppunkten; tryck på <%1> för att inaktivera magnetiska slingpunkter. - Track - + Mute Tysta - + Solo Solo @@ -8637,13 +13590,13 @@ Se till att du har läsrättigheter för filen och mappen som innehåller filen - + Cancel Avbryt - + Please wait... Vänligen vänta... @@ -8663,337 +13616,436 @@ Se till att du har läsrättigheter för filen och mappen som innehåller filen Läser in spår %1 (%2/Totalt %3) - + Importing MIDI-file... Importerar MIDI-fil... - TrackContentObject + Clip - + Mute Tysta - TrackContentObjectView + ClipView - + Current position Aktuell position - - - Hint - Ledtråd - - - - Press <%1> and drag to make a copy. - Håll nere <%1> och dra för att kopiera. - - - + Current length Aktuell längd - - Press <%1> for free resizing. - - - - - + + %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 + + + + TrackContentWidget + + + Paste + Klistra in + TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - + + 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 for this track - Åtgärder för detta spår + + Actions + Åtgärder - + + Mute Tysta - - + + Solo Solo - - Mute this track - Tysta detta spår + + 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 Rensa detta spår - - FX %1: %2 + + Channel %1: %2 FX %1: %2 - - Assign to new FX Channel + + Assign to new mixer Channel Koppla till ny FX-kanal - + Turn all recording on Slå på all inspelning - + Turn all recording off Slå av all inspelning + + + Change color + Byt färg + + + + Reset color to default + Nollställ färg till standard + + + + Set random color + Ställ in slumpmässig färg + + + + Clear clip colors + + TripleOscillatorView - - Use phase modulation for modulating oscillator 1 with oscillator 2 - + + Modulate phase of oscillator 1 by oscillator 2 + Modulera fasen för oscillator 1 med oscillator 2 - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - + + Modulate amplitude of oscillator 1 by oscillator 2 + Modulera amplitud för oscillator 1 med oscillator 2 - - Mix output of oscillator 1 & 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 - - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Använd frekvensmodulering för modulerande oscillator 1 med oscillator 2 + + Modulate frequency of oscillator 1 by oscillator 2 + Modulera frekvensen för oscillator 1 med oscillator 2 - - Use phase modulation for modulating oscillator 2 with oscillator 3 - + + Modulate phase of oscillator 2 by oscillator 3 + Modulera fasen för oscillator 2 med oscillator 3 - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Använd amplitudmodulering för modulerande 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 oscillator 2 & 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 - - Use frequency modulation for modulating oscillator 2 with oscillator 3 - + + Modulate frequency of oscillator 2 by oscillator 3 + Modulera frekvensen för oscillator 2 med oscillator 3 - + Osc %1 volume: Osc %1 volym: - - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Med denna knapp kan du ställa in volymen av oscillator %1. När du ställer in ett värde på 0 stängs oscillatorn av. Annars kan du höra oscillatorn så hög som du ställer in den här. - - - + Osc %1 panning: Osc %1 panorering: - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - - - - + Osc %1 coarse detuning: - + Osc %1 grov urstämning: - + semitones halvtoner - - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - - - - + Osc %1 fine detuning left: - + Osc %1 fin urstämning vänster: - - + + cents - + hundradelar - - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - - + Osc %1 fine detuning right: - + Osc %1 fin urstämning höger: - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - - + Osc %1 phase-offset: - + Osc %1 fasposition: - - + + degrees grader - - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - - - - + Osc %1 stereo phase-detuning: - + Osc %1 stereo fasurstämning: - - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - + + Sine wave + Sinusvåg - - Use a sine-wave for current oscillator. - + + Triangle wave + Triangelvåg - - Use a triangle-wave for current oscillator. - + + Saw wave + Sågtandsvåg - - Use a saw-wave for current oscillator. - + + Square wave + Fyrkantvåg - - Use a square-wave for current oscillator. - + + Moog-like saw wave + Moogliknande sågtandsvåg - - Use a moog-like saw-wave for current oscillator. - + + Exponential wave + Exponentiell våg - - Use an exponential wave for current oscillator. - Använd en exponentiell våg för aktuell oscillator. + + White noise + Vitt brus - - Use white-noise for current oscillator. - + + User-defined wave + Användardefinierad våg + + + + VecControls + + + Display persistence amount + Visa avklingningsmängd - - Use a user-defined waveform for current oscillator. - Använd en användardefinierad vågform för nuvarande oscillator. + + Logarithmic scale + Logaritmisk skala + + + + High quality + Hög kvalitet + + + + VecControlsDialog + + + HQ + 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. + Avkling. + + + + 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 - + Decrement version number - + Minska versionsnummer - + + Save Options + Spara Alternativ + + + already exists. Do you want to replace it? finns redan. Vill du ersätta den? @@ -9001,128 +14053,75 @@ Se till att du har läsrättigheter för filen och mappen som innehåller filen VestigeInstrumentView - - Open other VST-plugin - + + + Open VST plugin + Öppna VST-tillägg - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - + + Control VST plugin from LMMS host + Kontroll VST-tillägg från LMMS-värd - - Control VST-plugin from LMMS host - Kontrollera VST-insticksmodulen från LMMS-värd + + Open VST plugin preset + Öppna VST-tilläggsförinställning - - Click here, if you want to control VST-plugin from host. - Klicka här om du vill styra VST-insticksmodulen från värd. - - - - Open VST-plugin preset - - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klicka här om du vill öppna en annan *.fxp, *.FXB VST-insticksmodulsförinställning. - - - + Previous (-) Tidigare (-) - - - Click here, if you want to switch to another VST-plugin preset program. - Klicka här om du vill byta till ett annat VST-insticksmodulsförinställningsprogram. - - - + Save preset Spara förinställning - - Click here, if you want to save current VST-plugin preset program. - - - - + Next (+) Nästa (+) - - Click here to select presets that are currently loaded in VST. - - - - + Show/hide GUI Visa/dölj användargränssnitt - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - - - - + Turn off all notes Stäng av alla noter - - Open VST-plugin - Öppna VST-insticksmodul - - - + DLL-files (*.dll) DLL-filer (*.dll) - + EXE-files (*.exe) EXE-filer (*.exe) - - No VST-plugin loaded - Ingen VST-insticksmodul inläst + + No VST plugin loaded + Inget VST-tillägg inläst - + Preset Förinställning - + by av - + - VST plugin control - - - - - VisualizationWidget - - - click to enable/disable visualization of master-output - - - - - Click to enable - Klicka för att aktivera + - VST tilläggskontroll @@ -9134,63 +14133,37 @@ Se till att du har läsrättigheter för filen och mappen som innehåller filen - Control VST-plugin from LMMS host - Kontrollera VST-plugin från LMMS-värd + Control VST plugin from LMMS host + Kontroll VST-tillägg från LMMS-värd - - Click here, if you want to control VST-plugin from host. - Klicka här om du vill styra VST-insticksmodulen från värd. + + Open VST plugin preset + Öppna VST-tilläggsförinställning - - Open VST-plugin preset - - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Klicka här om du vill öppna en annan *.fxp, *.fxb VST-insticksmodulsförinställning. - - - + Previous (-) Tidigare (-) - - - Click here, if you want to switch to another VST-plugin preset program. - Klicka här om du vill byta till ett annat VST-insticksmodulsförinställningsprogram. - - - + Next (+) Nästa (+) - - Click here to select presets that are currently loaded in VST. - - - - + Save preset Spara förinställning - - Click here, if you want to save current VST-plugin preset program. - - - - - + + Effect by: Effekt skapad av: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -9198,217 +14171,207 @@ Se till att du har läsrättigheter för filen och mappen som innehåller filen VstPlugin - + The VST plugin %1 could not be loaded. - VST-insticksmodulen %1 kunde inte läsas in. + VST-tillägget %1 kunde inte läsas in. - + 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 insticksmodulen + Läser in tillägget Please wait while loading VST plugin... - Vänligen vänta medan VST-instickmodulen läses in... + 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 @@ -9416,3329 +14379,2251 @@ Se till att du har läsrättigheter för filen och mappen som innehåller filen WatsynView - - - - + + + + Volume Volym - - - - + + + + Panning Panorering - - - - + + + + Freq. multiplier - + Frekv.-multiplikator - - - - + + + + Left detune - + Vänster urstämning - - - - - - - - + + + + + + + + cents - + hundradelar - - - - + + + + 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 with output of A2 - + + Modulate amplitude of A1 by output of A2 + Modulera amplituden av A1 med utgången från A2 - - Ring-modulate A1 and A2 - + + Ring modulate A1 and A2 + Ringmodulera A1 och A2 - - Modulate phase of A1 with output of 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 with output of B2 - + + Modulate amplitude of B1 by output of B2 + Modulera amplituden av B1 med utången från B2 - - Ring-modulate B1 and B2 - + + Ring modulate B1 and B2 + Ringmodulera B1 och B2 - - Modulate phase of B1 with output of 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 - - Click to load a waveform from a sample file - Klicka för att ladda in en vågform från en ljudfil + + Load a waveform from a sample file + Läs in en vågform från en sampelfil - + Phase left Fas vänster - - Click to shift phase by -15 degrees - Klicka för att flytta fas med -15 grader + + Shift phase by -15 degrees + Skifta fasen -15 grader - + Phase right Fas höger - - Click to shift phase by +15 degrees - + + Shift phase by +15 degrees + Skifta fasen +15 grader - + + Normalize Normalisera - - Click to normalize - Klicka för normalisering - - - + + Invert Invertera - - Click to invert - Klicka för invertering - - - + + Smooth - Utjämna + Jämna ut - - Click to smooth - Klicka för utjämning - - - + + Sine wave Sinusvåg - - Click for sine wave - Klicka för sinusvåg - - - - + + + Triangle wave Triangelvåg - - Click for triangle wave - Klicka för triangelvåg + + Saw wave + Sågtandsvåg - - Click for saw wave - Klicka för sågtandsvåg + + + Square wave + Fyrkantvåg + + + + Xpressive + + + 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 - - Click for square wave - Klicka för 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 - + + Filter frequency + Filterfrekvens - - Filter Resonance - + + Filter resonance + Filterresonans - + Bandwidth Bandbredd - - FM Gain - FM-Förstärkning + + FM gain + FM-förstärkning - - Resonance Center Frequency - + + Resonance center frequency + Centerfrekvens för resonans - - Resonance Bandwidth - Resonans Bandbredd + + Resonance bandwidth + Resonansbandbredd - - Forward MIDI Control Change Events - + + Forward MIDI control change events + Vidarebefordra MIDI-kontrollförändringshändelser ZynAddSubFxView - + Portamento: Portamento: - + PORT PORT - - Filter Frequency: - Filter-frekvens: + + Filter frequency: + Filterfrekvens: - + FREQ FREQ - - Filter Resonance: - Filter-resonans: + + Filter resonance: + Filterresonans: - + RES - + UPPL. - + Bandwidth: Bandbredd: - + BW - + BW - - FM Gain: - FM-Förstärkning: + + 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 - + + Forward MIDI control changes + Vidarebefordra MIDI-kontrollförändringar - + Show GUI Visa användargränssnitt - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Klicka här för att visa eller dölja användargränssnittet för ZynAddSubFX. - - audioFileProcessor + 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 + BitInvader - - Samplelength - Ljudfilslängd + + Sample length + Ljudfilens längd - bitInvaderView + BitInvaderView - - Sample Length - Ljudfilens Längd + + 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 - - Click for a sine-wave. - Klicka för sinusvåg - - - + + Triangle wave Triangelvåg - - Click here for a triangle-wave. - Klicka här för triangelvåg. - - - + + Saw wave Sågtandsvåg - - Click here for a saw-wave. - Klicka här för sågtandsvåg - - - + + Square wave Fyrkantvåg - - Click here for a square-wave. - Klicka här för fyrkantvåg. + + + White noise + Vitt brus - - White noise wave - Vitt brus-våg + + + User-defined wave + Användardefinierad våg - - Click here for white-noise. - Klicka här för vitt brus. + + + Smooth waveform + Jämn vågform - - User defined wave - Användardefinierad vågform - - - - Click here for a user-defined shape. - Klicka här för en användardefinierad kurva. - - - - Smooth - Utjämna - - - - Click here to smooth waveform. - Klicka här för att jämna vågform. - - - + Interpolation Interpolering - + Normalize Normalisera - dynProcControlDialog + 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 waveform - Återställ vågform + + + Reset wavegraph + Återställ vågdiagram - - Click here to reset the wavegraph back to default - + + + Smooth wavegraph + Jämnt vågdiagram - - Smooth waveform - Mjuk vågform + + + Increase wavegraph amplitude by 1 dB + Öka vågdiagramamplituden med 1 dB - - Click here to apply smoothing to wavegraph - + + + Decrease wavegraph amplitude by 1 dB + Minska vågformsamplitud med 1dB - - Increase wavegraph amplitude by 1dB - + + Stereo mode: maximum + Stereoläge: maximal - - Click here to increase wavegraph amplitude by 1dB - Klicka här för att öka våggrafamplituden med 1 dB - - - - Decrease wavegraph amplitude by 1dB - Minska våggrafamplituden med 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - - - - - Stereomode Maximum - - - - + Process based on the maximum of both stereo channels - + Hantera baserad på max för båda stereokanalerna - - Stereomode Average - + + Stereo mode: average + Stereoläge: medelvärdesbildning - + Process based on the average of both stereo channels - + Hantera baserat på genomsnittet av båda stereokanalerna - - Stereomode Unlinked - + + Stereo mode: unlinked + Stereoläge: olänkat - + Process each stereo channel independently - + Hantera varje stereokanal obereoende - dynProcControls + DynProcControls - + Input gain Ingångsförstärkning - + Output gain Utgångsförstärkning - + Attack time Attacktid - + Release time - + Avklingningstid - + Stereo mode Stereo-läge - - fxLineLcdSpinBox - - - Assign to: - Tilldela till: - - - - New FX Channel - Ny FX-Kanal - - graphModel - + Graph Graf - kickerInstrument + KickerInstrument - + Start frequency Startfrekvens - + End frequency Slutfrekvens - + Length Längd - - Distortion Start - + + Start distortion + Start för distorsion - - Distortion End - + + End distortion + Slut för distorsion - + Gain Förstärkning - - Envelope Slope - + + Envelope slope + Konturkurva - + Noise Brus - + Click Klick - - Frequency Slope - + + Frequency slope + Frekvenslutning - + Start from note Starta från not - + End to note Sluta på not - kickerInstrumentView + KickerInstrumentView - + Start frequency: Startfrekvens: - + End frequency: Slutfrekvens: - - Frequency Slope: - + + Frequency slope: + Frekvenslutning: - + Gain: Förstärkning: - - Envelope Length: - + + Envelope length: + Konturlängd: - - Envelope Slope: - + + Envelope slope: + Konturkurva: - + Click: Klick: - + Noise: Brus: - - Distortion Start: - + + Start distortion: + Startförvrängning: - - Distortion End: - + + End distortion: + Slut för distorsion: - ladspaBrowserView + LadspaBrowserView - - + + Available Effects Tillgängliga effekter - - + + Unavailable Effects Otillgängliga effekter - - + + Instruments Instrument - - + + Analysis Tools Analysverktyg - - + + Don't know Vet inte - - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - - - - + Type: Typ: - ladspaDescription + LadspaDescription - + Plugins - Insticksmoduler + Tillägg - + Description Beskrivning - ladspaPortDialog + 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 + 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 + 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 + MalletsInstrument - + Hardness Hårdhet - + Position Position - - Vibrato Gain - + + Vibrato gain + Vibratoförstärkning - - Vibrato Freq - + + Vibrato frequency + Vibrato frekvens - - Stick Mix - + + Stick mix + Kvistmix - + Modulator Modulator - + Crossfade - Överbländning + Övertoning - - LFO Speed - LFO hastighet + + LFO speed + LFO-hastighet - - LFO Depth - + + 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 - - Wood1 - + + Wood 1 + Trä 1 - + Reso - + Uppl. - - Wood2 - + + Wood 2 + Trä 2 - + Beats Takter - - Two Fixed - + + Two fixed + Två fixa - + Clump - + Klump - - Tubular Bells - + + Tubular bells + Tubklockor - - Uniform Bar - + + Uniform bar + Enhetlig takt - - Tuned Bar - + + Tuned bar + Stämt stycke - + Glass - + Glas - - Tibetan Bowl + + Tibetan bowl Tibetansk skål - malletsInstrumentView + 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: - - Vib Gain - + + Vibrato gain + Vibratoförstärkning - - Vib Gain: - + + Vibrato gain: + Vibratoförstärkning: - - Vib Freq - + + Vibrato frequency + Vibrato frekvens - - Vib Freq: - + + Vibrato frequency: + Vibrato frekvens: - - Stick Mix - + + Stick mix + Kvistmix - - Stick Mix: - + + Stick mix: + Kvistmix: - + Modulator Modulator - + Modulator: Modulator: - + Crossfade - Överbländning + Övertoning - + Crossfade: - Överbländning: + Övertoning: - - LFO Speed - LFO hastighet + + LFO speed + LFO-hastighet - - LFO Speed: - + + LFO speed: + LFO-hastighet: - - LFO Depth - + + LFO depth + LFO-djup - - LFO Depth: - + + LFO depth: + LFO-djup: - + ADSR ADSR - + ADSR: ADSR: - + Pressure Tryck - + Pressure: Tryck: - + Speed Hastighet - + Speed: Hastighet: - manageVSTEffectView + ManageVSTEffectView - + - VST parameter control - + - VST-parameterkontroll - - VST Sync - + + VST sync + VST-synk - - Click here if you want to synchronize all parameters with VST plugin. - - - - - + + Automated Automatiserad - - Click here if you want to display automated parameters only. - Klicka här om du bara vill visa automatiska parametrar. - - - + Close Stäng - - - Close VST effect knob-controller window. - - - manageVestigeInstrumentView + ManageVestigeInstrumentView - - + + - VST plugin control - + - VST tilläggskontroll - + VST Sync - + VST-synk - - Click here if you want to synchronize all parameters with VST plugin. - - - - - + + Automated Automatiserad - - Click here if you want to display automated parameters only. - Klicka här om du bara vill visa automatiserade parametrar. - - - + Close Stäng - - - Close VST plugin knob-controller window. - - - opl2instrument + OrganicInstrument - - Patch - - - - - Op 1 Attack - - - - - Op 1 Decay - - - - - Op 1 Sustain - - - - - Op 1 Release - - - - - Op 1 Level - - - - - Op 1 Level Scaling - - - - - Op 1 Frequency Multiple - - - - - 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 Multiple - - - - - Op 2 Key Scaling Rate - - - - - Op 2 Percussive Envelope - - - - - Op 2 Tremolo - - - - - Op 2 Vibrato - - - - - Op 2 Waveform - - - - - FM - FM - - - - Vibrato Depth - - - - - Tremolo Depth - - - - - opl2instrumentView - - - - Attack - Attack - - - - - Decay - Decay - - - - - Release - Release - - - - - Frequency multiplier - - - - - organicInstrument - - + Distortion Förvrängning - + Volume Volym - organicInstrumentView + OrganicInstrumentView - + Distortion: Förvrängning: - - The distortion knob adds distortion to the output of the instrument. - - - - + Volume: Volym: - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - + Randomise Slumpa - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - Knappen randomisera randomiserar alla rattar utom reglagen övertoner, huvudvolym och distorsion. - - - - + + 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: - FreeBoyInstrument + PatchesDialog - - Sweep time - - - - - Sweep direction - - - - - Sweep RtShift amount - - - - - - Wave Pattern Duty - - - - - Channel 1 volume - Kanal 1 volym - - - - - - Volume sweep direction - - - - - - - Length of each step in sweep - - - - - Channel 2 volume - Kanal 2 volym - - - - Channel 3 volume - Kanal 3 volym - - - - Channel 4 volume - Kanal 4 volym - - - - Shift Register width - - - - - Right Output level - - - - - Left Output level - - - - - 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: - - - - - Sweep Time - - - - - The amount of increase or decrease in frequency - Mängden ökning eller minskning av frekvensen - - - - Sweep RtShift amount: - - - - - Sweep RtShift amount - - - - - The rate at which increase or decrease in frequency occurs - - - - - - Wave pattern duty: - - - - - Wave Pattern Duty - - - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - - - Square Channel 1 Volume: - - - - - Square Channel 1 Volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - - - The delay between step change - - - - - Wave pattern duty - - - - - Square Channel 2 Volume: - - - - - - Square Channel 2 Volume - - - - - Wave Channel Volume: - - - - - - Wave Channel Volume - Volym för vågkanalen - - - - Noise Channel Volume: - - - - - - Noise Channel Volume - - - - - SO1 Volume (Right): - SO1 volym (höger): - - - - SO1 Volume (Right) - - - - - SO2 Volume (Left): - SO2 volym (vänster): - - - - SO2 Volume (Left) - - - - - Treble: - Diskant: - - - - Treble - Diskant - - - - Bass: - Bas: - - - - Bass - Bas - - - - Sweep Direction - - - - - - - - - Volume Sweep Direction - - - - - Shift Register Width - - - - - Channel1 to SO1 (Right) - - - - - Channel2 to SO1 (Right) - Channel2 till SO1 (höger) - - - - Channel3 to SO1 (Right) - - - - - Channel4 to SO1 (Right) - Channel4 till SO1 (höger) - - - - Channel1 to SO2 (Left) - - - - - Channel2 to SO2 (Left) - Channel2 till SO2 (Vänster) - - - - Channel3 to SO2 (Left) - Channel3 till SO2 (vänster) - - - - Channel4 to SO2 (Left) - - - - - Wave Pattern - Vågmönster - - - - Draw the wave here - Rita vågen här - - - - 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 - pluginBrowser + Sf2Instrument - - no description - ingen beskrivning - - - - A native amplifier plugin - En inbyggd förstärkare-insticksmodul - - - - 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 - - - - - An oversampling bitcrusher - - - - - Carla Patchbay Instrument - - - - - Carla Rack Instrument - - - - - A 4-band Crossover Equalizer - - - - - A native delay plugin - En inbyggd fördröjning-insticksmodul - - - - A Dual filter plugin - En Dual filter-insticksmodul - - - - plugin for processing dynamics in a flexible way - insticksmodul för dynamisk bearbetning på ett flexibelt sätt - - - - A native eq plugin - En inbyggd eq-insticksmodul - - - - A native flanger plugin - - - - - 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-insticksmoduler - - - - plugin for using arbitrary LADSPA-effects inside LMMS. - - - - - Incomplete monophonic imitation tb303 - - - - - 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 - - - - - A multitap echo delay plugin - - - - - A NES-like synthesizer - En NES-lik synthesizer - - - - 2-operator FM Synth - - - - - Additive Synthesizer for organ-like sounds - - - - - Emulation of GameBoy (TM) APU - Emulering av GameBoy (TM) APU - - - - GUS-compatible patch instrument - - - - - Plugin for controlling knobs with sound peaks - - - - - Reverb algorithm by Sean Costello - - - - - Player for SoundFont files - Spelare för SoundFont-filer - - - - LMMS port of sfxr - - - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - - - - - Graphical spectrum analyzer plugin - Grafiska spektrumanalysator insticksmodul - - - - Plugin for enhancing stereo separation of a stereo input file - Insticksmodul för att förbättra stereoseparation av en stereoingångsfil - - - - Plugin for freely manipulating stereo output - - - - - Tuneful things to bang on - - - - - Three powerful oscillators you can modulate in several ways - - - - - 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 - insticksmodul för vågformande - - - - Embedded ZynAddSubFX - - - - - sf2Instrument - - + Bank Bank - + Patch - + Inställning - + Gain Förstärkning - + Reverb Reverb - - Reverb Roomsize - + + Reverb room size + Rumsstorlek för reverb - - Reverb Damping - + + Reverb damping + Dämpning för reverb - - Reverb Width - + + Reverb width + Bredd för reverb - - Reverb Level - + + Reverb level + Nivå för reverb - + Chorus - Chorus + Korus - - Chorus Lines - + + Chorus voices + Korus-röster - - Chorus Level - + + Chorus level + Korus-nivå - - Chorus Speed - + + Chorus speed + Korus-hastighet - - Chorus Depth - + + Chorus depth + Korus-djup - + A soundfont %1 could not be loaded. - SoundFont %1 kunde inte läsas in. + En SoundFont %1 kunde inte läsas in. - sf2InstrumentView + Sf2InstrumentView - - Open other SoundFont file - Öppna en annan SoundFont-fil - - - - Click here to open another SF2 file - Klicka här för att öppna en annan SF2-fil - - - - Choose the patch - - - - - Gain - Förstärkning - - - - Apply reverb (if supported) - Applicera reverb (om det stöds) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Denna knapp aktiverar reverb-effekten. Detta är användbart för häftiga effekter, men fungerar bara på filer som stöder den. - - - - Reverb Roomsize: - - - - - Reverb Damping: - - - - - Reverb Width: - - - - - Reverb Level: - - - - - Apply chorus (if supported) - Applicera chorus (om det stöds) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Denna knapp aktiverar köreffekten. Detta är användbart för coola eko effekter, men fungerar bara på filer som stöder den. - - - - Chorus Lines: - - - - - Chorus Level: - - - - - Chorus Speed: - - - - - Chorus Depth: - - - - + + Open SoundFont file Öppna SoundFont-fil - - SoundFont2 Files (*.sf2) - SoundFont2-filer (*.sf2) + + 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 + SfxrInstrument - - Wave Form - Vågform + + Wave + Våg - sidInstrument + StereoEnhancerControlDialog - - Cutoff - + + WIDTH + BREDD - - Resonance - Resonans - - - - Filter type - Filtertyp - - - - Voice 3 off - Röst 3 av - - - - Volume - Volym - - - - Chip model - - - - - sidInstrumentView - - - Volume: - Volym: - - - - Resonance: - Resonans: - - - - - Cutoff frequency: - - - - - High-Pass filter - Högpassfilter - - - - Band-Pass filter - Bandpassfilter - - - - Low-Pass filter - Lågpassfilter - - - - Voice3 Off - Voice3 Av - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Attack: - - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Attack-hastigheten bestämmer hur snabbt utgången för Voice %1 stiger från noll till toppamplitud. - - - - - Decay: - Decay: - - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - - Sustain: - Sustain: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - - - Release: - Release: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - - - Pulse Width: - Pulsbredd: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - - Coarse: - Grov: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - Den grova detuningen gör det möjligt att detunera Voice %1 en oktav upp eller ner. - - - - Pulse Wave - Pulsvåg - - - - Triangle Wave - Triangelvåg - - - - SawTooth - Sågtand - - - - Noise - Brus - - - - Sync - Synkronisera - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - - Ring-Mod - - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - - Filtered - Filtrerad - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - - Test - Testa - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - - - - - stereoEnhancerControlDialog - - - WIDE - - - - + Width: Bredd: - stereoEnhancerControls + StereoEnhancerControls - + Width Bredd - stereoMatrixControlDialog + 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 + 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 + VestigeInstrument - + Loading plugin Läser in plugin - - Please wait while loading VST-plugin... - Vänta medans VST-insticksmodulen läses in... + + Please wait while loading the VST plugin... + Vänligen vänta medan VST-tillägg läses in... - vibed + 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 - - Pan %1 - + + String %1 panning + Sträng %1 panorering - - Detune %1 - + + String %1 detune + Sträng %1 urstämning - - Fuzziness %1 - Oskärpa %1  + + String %1 fuzziness + Sträng %1-luddighet - - Length %1 - Längd %1 + + String %1 length + Sträng %1-längd - + Impulse %1 Impuls %1 - - Octave %1 - Oktav %1 + + String %1 + Sträng %1 - vibedView + VibedView - - Volume: - Volym: + + String volume: + Strängvolym: - - The 'V' knob sets the volume of the selected string. - - - - + String stiffness: Strängstyvhet: - - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - - - - + Pick position: - + Plektrumposition: - - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - "P" - ratten ställer in den position där den valda strängen kommer att "plockas". Ju lägre inställningen desto närmare plockningen är till bridgen. - - - + Pickup position: - + Mikrofonposition: - - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - + + String panning: + Strängpanorering: - - Pan: - + + String detune: + Strängurstämning: - - The Pan knob determines the location of the selected string in the stereo field. - + + String fuzziness: + Strängluddighet: - - Detune: - + + String length: + Stränglängd: - - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - + + Impulse + Impuls - - Fuzziness: - Oskärpa: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - - - - - Length: - Längd: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - - Impulse or initial state - - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - - - - + Octave Oktav - - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - - - - + Impulse Editor - + Impulse Editor - - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - - - - + Enable waveform Aktivera vågform - - Click here to enable/disable waveform. - Klicka här för att aktivera/inaktivera vågform. + + Enable/disable string + Aktivera/inaktivera sträng - + String Sträng - - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - - - - + + Sine wave Sinusvåg - - Use a sine-wave for current oscillator. - - - - + + Triangle wave Triangelvåg - - Use a triangle-wave for current oscillator. - - - - + + Saw wave Sågtandsvåg - - Use a saw-wave for current oscillator. - - - - + + Square wave Fyrkantvåg - - Use a square-wave for current oscillator. - + + + White noise + Vitt brus - - White noise wave - Vitt brus-våg + + + User-defined wave + Användardefinierad våg - - Use white-noise for current oscillator. - + + + Smooth waveform + Jämn vågform - - User defined wave - Användardefinierad vågform - - - - Use a user-defined waveform for current oscillator. - Använd en användardefinierad vågform för aktuell oscillator. - - - - Smooth - Utjämna - - - - Click here to smooth waveform. - Klicka här för att jämna vågform. - - - - Normalize - Normalisera - - - - Click here to normalize waveform. - Klicka här för att normalisera vågformen. + + + Normalize waveform + Normalisera vågform - voiceObject + 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 + WaveShaperControlDialog - + INPUT INGÅNG - + Input gain: Ingångsförstärkning: - + OUTPUT UTGÅNG - + Output gain: Utgångsförstärkning: - - Reset waveform - Återställ vågform + + + Reset wavegraph + Återställ vågdiagram - - Click here to reset the wavegraph back to default - + + + Smooth wavegraph + Jämnt vågdiagram - - Smooth waveform - Mjuk vågform + + + Increase wavegraph amplitude by 1 dB + Öka vågdiagramamplituden med 1 dB - - Click here to apply smoothing to wavegraph - + + + Decrease wavegraph amplitude by 1 dB + Minska vågformsamplitud med 1dB - - Increase graph amplitude by 1dB - Öka grafamplituden med 1dB - - - - Click here to increase wavegraph amplitude by 1dB - Klicka här för att öka våggrafamplituden med 1dB - - - - Decrease graph amplitude by 1dB - Minska grafamplituden med 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - - - - + Clip input - + Klipp ingång - - Clip input signal to 0dB - + + Clip input signal to 0 dB + Klipp ingångssignal till 0 dB - waveShaperControls + WaveShaperControls - + Input gain Ingångsförstärkning - + Output gain Utgångsförstärkning - \ No newline at end of file + diff --git a/data/locale/tr.ts b/data/locale/tr.ts new file mode 100644 index 000000000..387be6d8b --- /dev/null +++ b/data/locale/tr.ts @@ -0,0 +1,16631 @@ + + + AboutDialog + + + About LMMS + LMMS Hakkında + + + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). + Sürüm %1 (%2/%3, Qt %4, %5). + + + + About + Hakkında + + + + LMMS - easy music production for everyone. + LMMS - herkes müzik yapabilir. + + + + Copyright © %1. + Telif hakkı ©%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> + + + + Authors + Yazarlar + + + + Involved + İlişkin + + + + Contributors ordered by number of commits: + Katkıda bulunanların numara sırasına göre: + + + + Translation + Çeviri + + + + 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! + Mevcut dil çevrilmemiş (veya ana dili İngilizce). +LMMS'yi başka bir dilde çevirmekle ilgileniyorsanız veya mevcut çevirileri iyileştirmek istiyorsanız, bize yardımcı olabilirsiniz! Sadece bakımcı ile iletişime geçin! + + + + License + Lisans + + + + AmplifierControlDialog + + + VOL + SES + + + + Volume: + Ses Düzeyi: + + + + PAN + PAN + + + + Panning: + Kaydırma: + + + + LEFT + SOL + + + + Left gain: + Sol kazanç: + + + + RIGHT + SAĞ + + + + Right gain: + Sağ kazanç: + + + + AmplifierControls + + + 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 + + + + CarlaAboutW + + + About Carla + Carla hakkında + + + + About + Hakkında + + + + About text here + Buradaki metin hakkında + + + + Extended licensing here + 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 + + 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 + + GNU GENEL KAMU LİSANSI + Versiyon 2, Haziran 1991 + +Telif Hakkı (C) 1989, 1991 Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 ABD +Herkesin birebir kopyaları kopyalayıp dağıtmasına izin verilir +ancak bu lisans belgesinin değiştirilmesine izin verilmez. + + Önsöz + + Çoğu yazılımın lisansları, +paylaşma ve değiştirme özgürlüğü. Aksine, GNU Genel Kamu +Lisans, özgürce paylaşma ve değiştirme özgürlüğünüzü garanti etmeyi amaçlamaktadır +yazılım - yazılımın tüm kullanıcıları için ücretsiz olduğundan emin olmak için. Bu +Genel Kamu Lisansı, Özgür Yazılımın çoğu için geçerlidir +Vakfın yazılımı ve yazarlarının taahhüt ettiği diğer tüm programlara +onu kullanarak. (Diğer bazı Özgür Yazılım Vakfı yazılımları, +bunun yerine GNU Kısıtlı Genel Kamu Lisansı.) +programlarınız da. + + Özgür yazılımdan bahsettiğimizde, özgürlükten bahsediyoruz, +fiyat. Genel Kamu Lisanslarımız, aşağıdakileri yaptığınızdan emin olmak için tasarlanmıştır: +ücretsiz yazılımın kopyalarını dağıtma özgürlüğüne sahiptir (ve +dilerseniz bu hizmet), kaynak kodunu almanızı veya alabilmenizi +İsterseniz yazılımı değiştirebilir veya parçalarını kullanabilirsiniz +yeni ücretsiz programlarda; ve bunları yapabileceğinizi bildiğinizi. + + Haklarınızı korumak için yasaklayan kısıtlamalar yapmalıyız +herhangi birinin size bu hakları inkar etmesi veya bu hakları teslim etmenizi istemesi. +Bu kısıtlamalar, aşağıdaki durumlarda sizin için belirli sorumluluklara dönüşür: +yazılımın kopyalarını dağıtmak veya değiştirirseniz. + + Örneğin, böyle bir programın kopyalarını dağıtırsanız, +ücretsiz veya bir ücret karşılığında, alıcılara tüm hakları vermelisiniz. +var. Onların da aldığından veya alabildiğinden emin olmalısınız. +kaynak kodu. Ve onlara bu terimleri göstermelisiniz, böylece onların +Haklar. + + Haklarınızı iki adımda koruyoruz: (1) yazılımın telif hakkı ve +(2) size kopyalama için yasal izin veren bu lisansı sunar, +yazılımı dağıtmak ve / veya değiştirmek. + + Ayrıca, her yazarın ve bizim korumamız için, emin olmak istiyoruz +herkes bu ücretsiz garantinin olmadığını anlıyor +yazılım. Yazılım başka biri tarafından değiştirilirse ve başkasına verilirse, biz +alıcılarının sahip oldukları şeyin orijinal olmadığını bilmesini istediği için +Başkalarının getirdiği herhangi bir sorunun orijinali yansıtmayacağını +yazarların itibarları. + + Son olarak, herhangi bir ücretsiz program, yazılım tarafından sürekli olarak tehdit edilmektedir +patentler. Ücretsiz bir ürünün yeniden dağıtımcılarının oluşturduğu tehlikeden kaçınmak istiyoruz. +program bireysel olarak patent lisanslarını alacaktır. +programın tescilli. Bunu önlemek için, herhangi bir +patent herkesin ücretsiz kullanımı için lisanslanmış olmalı veya hiç lisanslanmamış olmalıdır. + + Kopyalama, dağıtım ve +değişiklik takip eder. + + GNU GENEL KAMU LİSANSI + KOPYALAMA, DAĞITIM VE DEĞİŞTİRME İÇİN ŞARTLAR VE KOŞULLAR + + 0. Bu Lisans, aşağıdakileri içeren herhangi bir program veya diğer işler için geçerlidir: +telif hakkı sahibi tarafından dağıtılabileceğini söyleyen bir uyarı +bu Genel Kamu Lisansının koşulları altında. Aşağıdaki "Program", +bu tür herhangi bir program veya çalışmayı ve "Programı temel alan bir çalışmayı" ifade eder +Program ya da telif hakkı yasası kapsamındaki herhangi bir türev çalışma anlamına gelir: +başka bir deyişle, Programı veya bir bölümünü içeren bir çalışma, +kelimesi kelimesine veya değişikliklerle ve / veya başka bir dile çevrilerek +dil. (Bundan sonra, çeviri sınırlama olmaksızın +"değişiklik" terimi.) Her lisans sahibi "siz" olarak ele alınmaktadır. + +Kopyalama, dağıtma ve değiştirme dışındaki faaliyetler, +bu Lisans kapsamındaki; kapsamı dışındadırlar. Eylemi +Programın çalıştırılması kısıtlı değildir ve Programdan elde edilen çıktı +sadece içeriğinin esasa dayalı bir çalışma oluşturması durumunda kapsanır. +Program (Programın çalıştırılarak yapılmış olmasından bağımsız olarak). +Bunun doğru olup olmadığı, Programın ne yaptığına bağlıdır. + + 1. Programın birebir kopyalarını kopyalayabilir ve dağıtabilirsiniz. +herhangi bir ortamda, aldığınız gibi kaynak kodu +Her bir kopyaya uygun bir şekilde dikkat çekici ve uygun bir şekilde yayınlayın. +telif hakkı bildirimi ve garanti reddi; sağlam tut +bu Lisansa ve herhangi bir garantinin bulunmamasına atıfta bulunan bildirimler; +ve Programın diğer alıcılarına bu Lisansın bir kopyasını verin +Program ile birlikte. + +Bir kopyayı aktarmanın fiziksel eylemi için bir ücret talep edebilirsiniz ve +İsteğinize bağlı olarak bir ücret karşılığında garanti koruması sunabilirsiniz. + + 2. Programın kopyasını veya kopyalarını veya herhangi bir bölümünü değiştirebilirsiniz. +Programa dayalı bir çalışma oluşturur ve kopyalayıp +Bu tür değişiklikleri dağıtmak veya Bölüm 1 hükümleri altında çalışmak +yukarıdaki koşulların tümünü de karşılamanız koşuluyla: + + a) Değiştirilen dosyaların göze çarpan uyarılar taşımasına neden olmalısınız + dosyaları ve herhangi bir değişikliğin tarihini değiştirdiğinizi belirten. + + b) Dağıttığınız veya yayınladığınız herhangi bir esere, + tamamen veya kısmen Programdan veya herhangi bir + bunların bir kısmı, bir bütün olarak üçüncü herkese ücretsiz olarak lisanslanacaktır. + bu Lisansın koşulları altındaki taraflar. + + c) Değiştirilen program normalde komutları etkileşimli olarak okursa + koştuğunda, koşmaya başladığında buna sebep olmalısın. + en sıradan şekilde etkileşimli kullanım, bir + uygun bir telif hakkı bildirimini içeren duyuru ve + hiçbir garanti olmadığını fark edin (ya da sağladığınızı söyleyerek + bir garanti) ve kullanıcıların programı aşağıdaki koşullarda yeniden dağıtabileceğini + bu koşullar ve kullanıcıya bunun bir kopyasını nasıl görüntüleyeceğini söyleme + Lisans. (İstisna: Programın kendisi etkileşimli ancak + normalde böyle bir duyuru basmaz, çalışmanız temel alınarak + Programın bir duyuru yazdırması gerekmez.) + +Bu gereksinimler, bir bütün olarak değiştirilmiş iş için geçerlidir. Eğer +bu çalışmanın tanımlanabilir bölümlerinin Programdan türetilmediği, +ve makul bir şekilde bağımsız ve ayrı çalışmalar olarak kabul edilebilir +kendileri, bu Lisans ve koşulları, bunlar için geçerli değildir +bölümleri ayrı işler olarak dağıttığınızda. Ama sen +iş temelli bir bütünün parçası olarak aynı bölümleri dağıtın +Programda, bütünün dağıtımı şu şartlara uygun olmalıdır: +diğer lisans sahipleri için izinleri, +bütün bir bütün ve böylece onu kimin yazdığına bakılmaksızın her bir parçaya. + +Bu nedenle, bu bölümün amacı hak talebinde bulunmak veya itiraz etmek değildir. +tamamen sizin tarafınızdan yazılmış çalışma haklarınız; daha ziyade amaç +türevin dağıtımını kontrol etme hakkını kullanmak veya +Programa dayalı toplu çalışmalar. + +Ayrıca, Programı temel almayan başka bir çalışmanın yalnızca bir araya getirilmesi +Programla (veya Programa dayalı bir çalışmayla) bir ciltte +bir depolama veya dağıtım ortamı, diğer işi +bu Lisansın kapsamı. + + 3. Programı (veya buna dayalı bir çalışmayı, +Bölüm 2 altında) nesne kodu veya çalıştırılabilir biçimde, hükümler altında +Aşağıdakilerden birini de yapmanız şartıyla yukarıdaki Bölüm 1 ve 2: + + a) Tam karşılık gelen makine tarafından okunabilir ile birlikte verin + Bölüm şartlarına göre dağıtılması gereken kaynak kodu + Yazılım değişimi için geleneksel olarak kullanılan bir ortamda yukarıdaki 1 ve 2; veya, + + b) En az üç geçerli yazılı bir teklifle birlikte verin + yıl, herhangi bir üçüncü tarafa, sizden daha fazla olmayan bir ücret karşılığında + fiziksel olarak kaynak dağıtımının maliyeti, tam bir + ilgili kaynak kodunun makine tarafından okunabilir kopyası, + yukarıdaki Bölüm 1 ve 2 hükümlerine göre bir ortamda dağıtılmıştır + yazılım değişimi için geleneksel olarak kullanılır; veya, + + c) Teklifle ilgili olarak aldığınız bilgilerle birlikte verin + ilgili kaynak kodunu dağıtmak için. (Bu alternatif + yalnızca ticari olmayan dağıtım için ve yalnızca + programı nesne kodunda veya böyle bir şekilde yürütülebilir biçimde aldı + yukarıdaki Altbölüm b uyarınca bir teklif.) + +Bir eserin kaynak kodu, eserin tercih edilen şekli anlamına gelir. +üzerinde değişiklik yapmak. Yürütülebilir bir iş için eksiksiz kaynak +kod, içerdiği tüm modüller için tüm kaynak kodu artı herhangi bir +ilişkili arabirim tanımlama dosyaları ve kullanılan komut dosyaları +çalıştırılabilir dosyanın derlenmesini ve yüklenmesini kontrol eder. Ancak, bir +özel istisna, dağıtılan kaynak kodun içermesi gerekmez +normal olarak dağıtılan herhangi bir şey (kaynakta veya ikili olarak +form) ana bileşenleriyle (derleyici, çekirdek vb.) +Bu bileşen hariç, yürütülebilir dosyanın çalıştığı işletim sistemi +yürütülebilir dosyanın kendisi eşlik eder. + +Yürütülebilir veya nesne kodunun dağıtımı teklif yoluyla yapılırsa +belirlenmiş bir yerden kopyalamaya erişim, ardından eşdeğer sunma +aynı yerden kaynak kodunu kopyalamak için erişim, +üçüncü şahıslar olmasa bile kaynak kodun dağıtımı +kaynağı nesne koduyla birlikte kopyalamaya mecburdur. + + 4. Programı kopyalayamaz, değiştiremez, alt lisanslayamaz veya dağıtamazsınız +bu Lisans kapsamında açıkça belirtilmediği sürece. Herhangi bir girişim +aksi takdirde Programın kopyalanması, değiştirilmesi, alt lisansının verilmesi veya dağıtılması, +geçersizdir ve bu Lisans kapsamındaki haklarınızı otomatik olarak feshedecektir. +Bununla birlikte, sizden aşağıda belirtilen kopyaları veya hakları alan taraflar +bu Lisansın lisansları bu kadar uzun süre feshedilmeyecektir +taraflar tam uyum içinde kalır. + + 5. Kabul etmediğiniz için bu Lisansı kabul etmeniz gerekmemektedir. +imzaladı. Ancak, başka hiçbir şey size değiştirme izni vermez veya +Programı veya türev çalışmalarını dağıtmak. Bu eylemler +Bu Lisansı kabul etmiyorsanız kanunen yasaklanmıştır. Bu nedenle, +Programı (veya buna dayalı herhangi bir işi değiştirmek veya dağıtmak) +Program), bunu yapmak için bu Lisansı kabul ettiğinizi belirtirsiniz ve +kopyalamak, dağıtmak veya değiştirmek için tüm hüküm ve koşulları +Program veya buna dayalı olarak çalışır. + + 6. Programı (veya temel alan herhangi bir çalışmayı) her yeniden dağıttığınızda +Program), alıcı otomatik olarak bir lisans alır. +Orijinal lisans veren, bu Programı kopyalamak, dağıtmak veya değiştirmek için +bu hüküm ve koşullar. Daha fazla empoze edemezsin +alıcıların burada verilen hakları kullanmasına ilişkin kısıtlamalar. +Üçüncü şahısların aşağıdakilere uymasını sağlamaktan sorumlu değilsiniz: +bu Lisans. + + 7. Mahkeme kararı veya patent iddiasının bir sonucu olarak +ihlal veya başka herhangi bir nedenle (patent konuları ile sınırlı değildir), +Size şartlar getirilmiştir (ister mahkeme kararı, ister anlaşma veya ister +aksi takdirde) bu Lisansın koşullarıyla çelişen +bu Lisansın koşullarından sizi özür dilerim. Eğer yapamazsan +bu kapsamdaki yükümlülüklerinizi aynı anda yerine getirecek şekilde dağıtın +Lisans ve diğer ilgili yükümlülükler, o zaman sonuç olarak siz +Programı hiç dağıtamaz. Örneğin, bir patent +lisans, Programın telifsiz olarak yeniden dağıtımına izin vermez. +sizin aracılığınızla doğrudan veya dolaylı olarak kopyaları alan herkes, o zaman +hem bunu hem de bu Lisansı tatmin etmenin tek yolu +Programı dağıtmaktan tamamen kaçının. + +Bu bölümün herhangi bir kısmı geçersiz veya uygulanamaz olarak kabul edilirse +herhangi bir özel durumda, bölümün bakiyesi, +uygulayın ve bölüm bir bütün olarak diğer +koşullar. + +Bu bölümün amacı, sizi herhangi bir +patentler veya diğer mülkiyet hakkı iddiaları veya herhangi birinin geçerliliğine itiraz etmek +bu tür iddialar; bu bölümün tek amacı +özgür yazılım dağıtım sisteminin bütünlüğü +kamu lisans uygulamaları ile uygulanmaktadır. Birçok insan yaptı +dağıtılan geniş yazılım yelpazesine cömert katkılar +bunun tutarlı bir şekilde uygulanmasına güvenerek bu sistem aracılığıyla +sistem; istekli olup olmadığına karar vermek yazara / bağışçıya bağlıdır +yazılımı başka herhangi bir sistem üzerinden dağıtmak ve lisans sahibi bunu yapamaz. +bu seçimi empoze edin. + +Bu bölüm, neyin inandığını iyice açıklığa kavuşturmayı amaçlamaktadır. +bu Lisansın geri kalanının bir sonucu olabilir. + + 8. Programın dağıtımı ve / veya kullanımı aşağıda belirtilen +belirli ülkelerde ya patentlerle ya da telif hakkı alınmış arabirimlerle, +Programı bu Lisansın altına yerleştiren asıl telif hakkı sahibi +hariç açık bir coğrafi dağıtım sınırlaması ekleyebilir +bu ülkelerde, dağıtıma yalnızca içinde veya arasında izin verilsin +ülkeler bu nedenle dışlanmadı. Böyle bir durumda, bu Lisans şunları içerir: +bu Lisansın metninde yazılmış gibi sınırlama. + + 9. Özgür Yazılım Vakfı, revize edilmiş ve / veya yeni sürümler yayınlayabilir +Zaman zaman Genel Kamu Lisansı. Böyle yeni sürümler +özü olarak mevcut sürüme benzer olabilir, ancak ayrıntılı olarak farklılık gösterebilir. +yeni sorunları veya endişeleri ele alın. + +Her sürüme ayırt edici bir sürüm numarası verilir. Program +bu Lisansın kendisi için geçerli olan sürüm numarasını ve "herhangi bir +sonraki sürüm ", hüküm ve koşulları takip etme seçeneğiniz vardır +ya bu sürümün ya da Ücretsiz tarafından yayınlanan sonraki herhangi bir sürümün +Yazılım Vakfı. Program bir sürüm numarası belirtmezse +bu Lisans, Özgür Yazılım tarafından şimdiye kadar yayınlanan herhangi bir sürümü seçebilirsiniz. +Yapı temeli. + + 10. Programın bazı kısımlarını diğer ücretsiz +dağıtım koşulları farklı olan programlar yazara yazın +izin istemek için. Ücretsiz tarafından telif hakkı bulunan yazılımlar için +Yazılım Vakfı, Özgür Yazılım Vakfı'na yazın; Biz bazen +bunun için istisnalar yapın. Kararımız iki hedef tarafından yönlendirilecek +özgür yazılımımızın tüm türevlerinin özgür statüsünü korumak ve +genel olarak yazılımın paylaşımını ve yeniden kullanımını teşvik etmek. + + GARANTİ YOK + + 11. PROGRAM ÜCRETSİZ LİSANSLI OLDUĞUNDAN, GARANTİ YOKTUR +PROGRAM İÇİN, UYGULANACAK KANUNLARIN İZİN VERDİĞİ ÖLÇÜDE. NE ZAMAN HARİÇ +TELİF HAKKI SAHİPLERİNİN VE / VEYA DİĞER TARAFLARIN YAZILIMINDA AKSİ BELİRTİLENLER +PROGRAMI HERHANGİ BİR GARANTİ VERMEKSİZİN "OLDUĞU GİBİ" SAĞLAYIN +VEYA ZIMNİ GARANTİLER DAHİL ANCAK BUNLARLA SINIRLI OLMAMAK ÜZERE +BELİRLİ BİR AMACA UYGUNLUK VE SATILABİLİRLİK. RİSK TÜMÜ OLARAK +PROGRAMIN KALİTESİ VE PERFORMANSI SİZE AİTTİR. GEREKİRSE +PROGRAM KUSURLU OLDUĞUNDA, GEREKLİ TÜM SERVİS MALİYETLERİNİ KABUL ETMİŞ OLURSUNUZ, +ONARIM VEYA DÜZELTME. + + 12. YÜRÜRLÜKTEKİ YASA TARAFINDAN GEREKTİRİLMEDİ VEYA YAZILI OLARAK KABUL EDİLMEDİKÇE HİÇBİR DURUMDA +HERHANGİ BİR TELİF HAKKI SAHİBİ VEYA DEĞİŞİKLİK YAPABİLEN BAŞKA BİR TARAF VE / VEYA +YUKARIDA İZİN VERİLDİĞİ GİBİ PROGRAMI YENİDEN DAĞITIN, HASARLARDAN SİZE SORUMLU OLUN, +HERHANGİ BİR GENEL, ÖZEL, ARIZİ VEYA DOLAYLI HASARLAR DAHİL OLMAK ÜZERE +PROGRAMIN KULLANILMAMASI VEYA KULLANILAMAMASI (SINIRLI OLMAMAK ÜZERE DAHİL) +YANLIŞ VERİLEN VERİ VEYA VERİ KAYBI VEYA TARAFINDAN SÜRDÜRÜLEN KAYIPLAR +SİZ VEYA ÜÇÜNCÜ TARAFLAR VEYA PROGRAMIN BAŞKASINA ÇALIŞMAMASI +PROGRAMLAR), BU TÜR SAHİBİ YA DA BAŞKA BİR TARAFA TAVSİYE EDİLMİŞ OLSA BİLE +BU TÜR ZARARLARIN OLASILIĞI. + + HÜKÜM VE KOŞULLARIN SONU + + + + + 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) + + + + CarlaHostW + + + MainWindow + AnaPencere + + + + Rack + Raf + + + + Patchbay + Yama yuvası + + + + Logs + Loglar + + + + Loading... + Yükleniyor... + + + + 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 + + + + 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 + + + + &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ç... + + + + 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 + + + Settings + Ayarlar + + + + main + ana + + + + canvas + tuval + + + + engine + motor + + + + osc + osc + + + + file-paths + dosya yolları + + + + plugin-paths + eklenti yolları + + + + wine + wine + + + + experimental + deneysel + + + + Widget + Araç + + + + + Main + Ana + + + + + Canvas + Tuval + + + + + Engine + Motor + + + + File Paths + Dosya Yolları + + + + Plugin Paths + Eklenti Yolları + + + + Wine + Wine + + + + + Experimental + Deneysel + + + + <b>Main</b> + <b>Ana</b> + + + + Paths + Yollar + + + + Default project folder: + Varsayılan proje klasörü: + + + + Interface + Arayüz + + + + 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 + + + + 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 + + + + 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 + + + + 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) + + + + Whenever possible, run the plugins in bridge mode. + Mümkün olduğunda eklentileri köprü modunda çalıştırın. + + + + 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 + Carla Control - Bağlan + + + + Remote setup + Uzaktan kurulum + + + + UDP Port: + UDP Bağlantı Noktası: + + + + Remote host: + Uzak ana bilgisayar: + + + + 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 + Değeri ayarla + + + + TextLabel + MetinEtiketi + + + + Scale Points + Ölçek Puanları + + + + DriverSettingsW + + + Driver Settings + Sürücü Ayarları + + + + Device: + Aygıt: + + + + Buffer size: + Arabellek boyutu: + + + + Sample rate: + Örnekleme oranı: + + + + Triple buffer + Üçlü arabellek + + + + Show Driver Control Panel + Sürücü Kontrol Panelini Göster + + + + Restart the engine to load the new settings + 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 + + + Export project + Projeyi dışa aktar + + + + Export as loop (remove extra bar) + Döngü olarak dışa aktar (fazla çubuğu kaldırın) + + + + Export between loop markers + Döngü işaretleyicileri arasında dışa aktar + + + + Render Looped Section: + Döngülü Bölümü Oluştur: + + + + time(s) + zamanlar) + + + + File format settings + Dosya biçimi ayarları + + + + File format: + Dosya biçimi: + + + + Sampling rate: + Örnekleme oranı: + + + + 44100 Hz + 44100 Hz + + + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Bit derinliği: + + + + 16 Bit integer + 16 Bit tam sayı + + + + 24 Bit integer + 24 Bit tam sayı + + + + 32 Bit float + 32 Bit kayan + + + + Stereo mode: + Stereo modu: + + + + Mono + Mono + + + + Stereo + Stereo + + + + Joint stereo + Ortak stereo + + + + Compression level: + Sıkıştırma seviyesi: + + + + Bitrate: + Bit oranı: + + + + 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 + Değişken bit hızı kullan + + + + Quality settings + Kalite ayarları + + + + Interpolation: + Aradeğerleme: + + + + Zero order hold + Sıfır emir tutma + + + + Sinc worst (fastest) + Sinc en kötü (en hızlı) + + + + Sinc medium (recommended) + Sinc orta (önerilir) + + + + Sinc best (slowest) + 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 + + + + MixerLine + + + 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 + + + + MixerLineLcdSpinBox + + + 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 + + + + InstrumentMiscView + + + 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 + + + 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. + + + + InstrumentTrack + + + + unnamed_track + adsız_parça + + + + Base note + Temel nota + + + + First note + İlk nota + + + + Last note + Son nota + + + + Volume + Ses Düzeyi + + + + Panning + Panning + + + + Pitch + Zift + + + + 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 + + + + InstrumentTrackView + + + Volume + Ses Düzeyi + + + + Volume: + Ses Düzeyi: + + + + VOL + SES + + + + Panning + Panning + + + + 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 + + + MIDI Pattern + MIDI Örüntüsü + + + + Time Signature: + Zaman İmzası: + + + + + + 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: + Ölçümler: + + + + + + 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: + Varsayılan Uzunluk: + + + + + 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: + Niceleme: + + + + &File + &Dosya + + + + &Edit + &Düzenle + + + + &Quit + &Çıkış + + + + &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 + + + + Format + Biçim + + + + Internal + Dahili + + + + LADSPA + LADSPA + + + + 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 + + + + PluginEdit + + + Plugin Editor + Eklenti Düzenleyicisi + + + + Edit + Düzenle + + + + Control + Kontrol + + + + MIDI Control Channel: + MIDI Kontrol Kanalı: + + + + N + N + + + + Output dry/wet (100%) + Kuru/ıslak çıktı (% 100) + + + + Output volume (100%) + Çıkış düzeyi (% 100) + + + + Balance Left (0%) + Sol Denge (% 0) + + + + + Balance Right (0%) + Sağ Denge (% 0) + + + + Use Balance + Dengelemeyi Kullanın + + + + Use Panning + Kaydırmayı Kullan + + + + Settings + Ayarlar + + + + Use Chunks + Parçaları Kullanın + + + + Audio: + Ses: + + + + Fixed-Size Buffer + Sabit Boyutlu Arabellek + + + + Force Stereo (needs reload) + Stereo'yu Zorla (yeniden yüklenmesi gerekiyor) + + + + MIDI: + MIDI: + + + + Map Program Changes + Harita Programı Değişiklikleri + + + + 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 + + +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: + + + + 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! + + + + PluginParameter + + + Form + Biçim + + + + Parameter Name + Parametre Adı + + + + ... + ... + + + + PluginRefreshW + + + Carla - Refresh + Carla - Yenile + + + + Search for new... + Yeni ara... + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + 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 + + + + PluginWidget + + + + + + + Frame + Ç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 + + + + Plugin Name + Eklenti İsmi + + + + Preset: + Ö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) + + + + QObject + + + Reload Plugin + Eklentiyi Yeniden Yükle + + + + Show GUI + Görselli Arayüzü Göster + + + + Help + Yardım + + + + 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 + + + &Recently Opened Projects + &Yeni Açılan Projeler + + + + RenameDialog + + + Rename... + Yeniden adlandır... + + + + ReverbSCControlDialog + + + Input + Giriş + + + + Input gain: + Giriş kazancı: + + + + Size + Boyut + + + + Size: + Boyut: + + + + Color + Renk + + + + Color: + Renk: + + + + Output + Çıkış + + + + Output gain: + Çıkış kazancı: + + + + ReverbSCControls + + + Input gain + Giriş kazancı + + + + Size + Boyut + + + + Color + Renk + + + + Output gain + Çıkış kazancı + + + + 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 + + + + 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ığı + + + + 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. + + + + + 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ü + + + + SampleBuffer + + + Fail to open file + Dosya açılamadı + + + + 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 + + + + Open audio file + Ses dosyasını aç + + + + 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) + + + + Wave-Files (*.wav) + Wave Dosyaları (*.wav) + + + + OGG-Files (*.ogg) + OGG Dosyaları (*.ogg) + + + + DrumSynth-Files (*.ds) + DrumSynth Dosyaları (*.ds) + + + + FLAC-Files (*.flac) + FLAC Dosyaları (*.flac) + + + + SPEEX-Files (*.spx) + SPEEX Dosyaları (*.spx) + + + + VOC-Files (*.voc) + VOC Dosyaları (*.voc) + + + + AIFF-Files (*.aif *.aiff) + AIFF Dosyaları (*.aif *.aiff) + + + + AU-Files (*.au) + AU Dosyaları (*.au) + + + + RAW-Files (*.raw) + RAW Dosyaları (*.raw) + + + + SampleClipView + + + Double-click to open sample + Örneği açmak için çift tıklayın + + + + Delete (middle mousebutton) + Sil (orta klik) + + + + 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 + + + + SampleTrack + + + Volume + Ses Düzeyi + + + + 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ı + + + + 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 + + + + Solo + Tek + + + + 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 + + + + + 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 + + + Mute + Ses kapatma + + + + 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 + + + + 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 + + + + Use track color + Parça rengini kullan + + + + TrackContentWidget + + + Paste + Yapıştır + + + + 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. + + + + Actions + Eylemler + + + + + Mute + Ses kapatma + + + + + Solo + 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 + + + + Turn all recording on + Tüm kaydı aç + + + + Turn all recording off + Tüm kayıtları kapat + + + + Change color + Rengini değiştir + + + + Reset color to default + Rengini varsayılana sıfırla + + + + Set random color + Rastgele renk ayarla + + + + Clear clip colors + Klip renklerini temizle + + + + 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 + + + + 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. + + + + Log. scale + Günlük. ölçeği + + + + Display amplitude on logarithmic scale to better see small values. + 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 + + + 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 + + + + 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) + + + + No VST plugin loaded + Yüklü VST eklentisi yok + + + + Preset + Hazır Ayar + + + + by + tarafından + + + + - VST plugin control + - VST eklenti kontrolü + + + + 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 + + + + 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 + + + + + + + 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 + + + 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ı: + + + + + 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 + + + Input gain + Giriş kazancı + + + + Output gain + Çıkış kazancı + + + diff --git a/data/locale/uk.ts b/data/locale/uk.ts index 7271c4946..50df10e4b 100644 --- a/data/locale/uk.ts +++ b/data/locale/uk.ts @@ -2,72 +2,68 @@ AboutDialog - + About LMMS Про програму LMMS - + LMMS LMMS - - Version %1 (%2/%3, Qt %4, %5) + + Version %1 (%2/%3, Qt %4, %5). Версія %1 (%2/%3, Qt %4, %5) - + About Про програму - - LMMS - easy music production for everyone + + LMMS - easy music production for everyone. LMMS - легке створення музики для всіх - - Copyright © %1 + + Copyright © %1. Авторське право © %1 - - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">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> + - + Authors Автори - + Involved Учасники - + Contributors ordered by number of commits: Розробники відсортовані за кількістю коммітов: - + Translation Переклад - + 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! - Переклад виконали: -Михайло Рожко <mihail.rozshko@gmail.com> - -Якщо Ви зацікавлені в перекладі LMMS на іншу мову або хочете поліпшити існуючий переклад, ми будемо раді будь-якій допомогі! Просто зв'яжіться з розробниками! + - + License Ліцензія @@ -154,106 +150,60 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorView - - Open other sample - Відкрити інший запис + + Open sample + - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - Натисніть тут, щоб відкрити інший звуковий файл. У новому вікні діалогу ви зможете вибрати потрібний файл. Такі налаштування, як режим повтору, точки початку/кінця, підсилення та інші не скинуться, тому звучання може відрізнятися від оригіналу. - - - + Reverse sample Реверс запису - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Якщо включити цю кнопку, весь запис піде у зворотний бік, це зручно для крутих ефектів, наприклад зворотного гуркоту. - - - + Disable loop Відключити повторення - - This button disables looping. The sample plays only once from start to end. - Ця кнопка відключає повтор. Запис програється тільки один раз від початку до кінця. - - - - + Enable loop Включити повторення - - This button enables forwards-looping. The sample loops between the end point and the loop point. - Ця кнопка включає передній повтор. Запис повторюється між кінцевою точкою і точкою повтору. + + Enable ping-pong loop + Увімкнути пінг-понг повторення - - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Ця кнопка включає пінг-понг петлю. Запис повторюється назад і вперед між кінцевою точкою і точкою повтору. - - - + Continue sample playback across notes Продовжити відтворення запису по нотах - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - Включення цієї опції продовжить відтворення запису за різними нотами - якщо змінити прискорення або тривалість ноти зупиниться до кінця запису, то з наступної ноти запис продовжиться там, де зупинився, щоб скинути відтворення на початок запису, вставте ноту внизу у клавіш (<20 Гц) - - - + Amplify: Підсилення: - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - Ця ручка задає коефіцієнт підсилення. При значенні 100% вихідний звук не змінюється, в іншому випадку - він буде ослаблений або підсилений. (Зверніть увагу, що вихідний запис при цьому залишиться недоторканим.) + + Start point: + - - Startpoint: - Початок: + + End point: + - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Цим регулятором можна встановити мітку з якої АудіоФайлПроцессор повинен почати відтворення запису. - - - - Endpoint: - Кінець: - - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Цей регулятор встановлює мітку в якій АудіоФайлПроцессор повинен перестати програвати запис. - - - + Loopback point: Точка повернення з повтору: - - - With this knob you can set the point where the loop starts. - Цей регулятор ставить мітку початку повторення. - AudioFileProcessorWaveView - + Sample length: Довжина запису: @@ -261,163 +211,168 @@ If you're interested in translating LMMS in another language or want to imp 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 - ІМ'Я КЛІЄНТА + + Client name + - - CHANNELS - КАНАЛИ + + Channels + - AudioOss::setupWidget + AudioOss - DEVICE - ПРИСТРІЙ + Device + - CHANNELS - КАНАЛИ + Channels + AudioPortAudio::setupWidget - - BACKEND - УПРАВЛІННЯ + + Backend + - - DEVICE - ПРИСТРІЙ + + Device + - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - ПРИСТРІЙ + Device + - CHANNELS - КАНАЛИ + Channels + AudioSdl::setupWidget - - DEVICE - ПРИСТРІЙ + + Device + - AudioSndio::setupWidget + AudioSndio - DEVICE - ПРИСТРІЙ + Device + - CHANNELS - КАНАЛИ + Channels + AudioSoundIo::setupWidget - - BACKEND - УПРАВЛІННЯ + + Backend + - - DEVICE - ПРИСТРІЙ + + 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... З'єднати з контролером ... @@ -425,387 +380,300 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditor - - Please open an automation pattern with the context menu of a control! + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip with the context menu of a control! Відкрийте редатор автоматизації через контекстне меню регулятора! - - - Values copied - Значення скопійовані - - - - All selected values were copied to the clipboard. - Всі вибрані значення скопійовані до буферу обміну. - AutomationEditorWindow - - Play/pause current pattern (Space) + + Play/pause current clip (Space) Гра/Пауза поточної мелодії (Пробіл) - - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - Натисніть тут щоб програти поточну мелодію. Це може стати в нагоді при його редагуванні. Мелодія автоматично програватиме знову при досягненні кінця. - - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) Зупинити програвання поточної мелодії (Пробіл) - - Click here if you want to stop playing of the current pattern. - Натисніть тут, якщо ви хочете зупинити відтворення поточної мелодії. - - - + Edit actions Зміна - + Draw mode (Shift+D) Режим малювання (Shift + D) - + Erase mode (Shift+E) Режим стирання (Shift+E) - + + Draw outValues mode (Shift+C) + + + + Flip vertically Перевернути вертикально - + Flip horizontally Перевернути горизонтально - - Click here and the pattern will be inverted.The points are flipped in the y direction. - Натисніть тут і мелодія перевернеться. Точки перевертаються в Y напрямку. - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - Натисніть тут і мелодія перевернеться в напрямку X. - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - При натиснені цієї кнопки активується режим малювання нот, в ньому ви можете додавати/переміщати і змінювати тривалість одиночних нот. Це основний режим і використовується більшу частину часу. -Для увімкнення цього режиму можна скористатися комбінацію клавіш Shift+D. - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - При натиснені цієї кнопки активується режим стирання. У цьому режимі ви можете видаляти ноти по одній. -Для увімкнення цього режиму можна скористатися комбінацію клавіш Shift+E. - - - + Interpolation controls Управління інтерполяцією - + Discrete progression Дискретна прогресія - + Linear progression Лінійна прогресія - + Cubic Hermite progression Кубічна Ермітова прогресія - + Tension value for spline Величина напруженості для сплайна - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - Більш висока напруженість може зробити криву більш м'якою, але перевантажить деякі величини. Низька напруженість зробить нахил кривої нижчою в кожній контрольній точці. - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - Вибір дискретної прогресії для цього шаблону автоматизації. Кількість приєднаних об'єктів залишатиметься постійним між керуючими точками і буде встановлена на нове значення відразу після досягнення кожної керуючої точки. - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - Вибір лінійної прогресії для цього шаблону автоматизації. Кількість приєднаних об'єктів буде змінюватися з постійною швидкістю в часі між керуючими точками для досягнення точного значення в кожній керуючій точці без раптових змін. - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - Кубічна Ермітова прогресія для цього шаблону автоматизації. Кількість приєднаних об'єктів зміниться по згладженій кривій і пом'якшиться на піках і спадах. - - - + Tension: Напруженість: - - Cut selected values (%1+X) - Вирізати вибрані ноти (%1+X) - - - - Copy selected values (%1+C) - Копіювати вибрані ноти до буферу (%1+C) - - - - Paste values from clipboard (%1+V) - Вставити значення з буферу (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - При натиснені цієї кнопки виділені ноти будуть вирізані до буферу. Пізніше ви можете вставити їх в будь-яке місце будь-якого шаблону за допомогою кнопки "Вставити". - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - При натиснені цієї кнопки виділені ноти будуть скопійовано до буферу. Пізніше ви зможете вставити їх в будь-яке місце будь-якого шаблону за допомогою кнопки "Вставити". - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - При натиснені цієї кнопки ноти з буферу будуть вставлені в перший видимий такт. - - - + Zoom controls Управління масштабом - + + Horizontal zooming + + + + + Vertical zooming + + + + Quantization controls Управління квантуванням - + Quantization Квантування - - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - Квантування. Встановлює найменший розмір кроку для точки автоматизації. За замовчуванням це також задає довжину, очищаючи інші точки діапазону. Натисніть <Ctrl>, щоб змінити цю поведінку. - - - - - Automation Editor - no pattern + + + Automation Editor - no clip Редактор автоматизації - немає шаблону - - + + Automation Editor - %1 Редактор автоматизації - %1 - - Model is already connected to this pattern. + + Model is already connected to this clip. Модель вже підключена до цього шаблону. - AutomationPattern + AutomationClip - + Drag a control while pressing <%1> Тягніть контроль утримуючи <%1> - AutomationPatternView + AutomationClipView - - double-click to open this pattern in automation editor - Двічі клацніть мишею щоб налаштувати автоматизацію для цього шаблону - - - + 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 pattern. + + Model is already connected to this clip. Модель вже підключена до цього шаблону. AutomationTrack - + Automation track Доріжка автоматизації - BBEditor + PatternEditor - + Beat+Bassline Editor Ритм Бас Редактор - + Play/pause current beat/bassline (Space) Грати/пауза поточної лінії ритму/басу (Пробіл) - + Stop playback of current beat/bassline (Space) Зупинити відтворення поточної лінії ритм-басу (Пробіл) - - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Натисніть щоб програти поточну лінію ритм-басу. Вона буде повторена при досягненні кінця. - - - - Click here to stop playing of current beat/bassline. - Зупинити відтворення (Пробіл). - - - + 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 Клонувати такти - BBTCOView + PatternClipView - + Open in Beat+Bassline-Editor Відкрити в редакторі ритму і басу - + Reset name Скинути назву - + Change name Перейменувати - - - Change color - Змінити колір - - - - Reset color to default - Відновити колір за замовчуванням - - BBTrack + PatternTrack - + Beat/Bassline %1 Ритм/Бас лінія %1 - + Clone of %1 Копія %1 @@ -881,8 +749,8 @@ If you're interested in translating LMMS in another language or want to imp - Input Gain: - Вхідне підсилення: + Input gain: + Вхідне підсилення: @@ -891,13 +759,13 @@ If you're interested in translating LMMS in another language or want to imp - Input Noise: - Вхідний шум: + Input noise: + - Output Gain: - Вихідне підсилення: + Output gain: + Вихідне підсилення: @@ -906,84 +774,2296 @@ If you're interested in translating LMMS in another language or want to imp - Output Clip: - Вихідне відсічення: + Output clip: + - - Rate Enabled - Частоту вибірки увімкнено + + Rate enabled + - - Enable samplerate-crushing - Включити дроблення частоти дискретизації + + Enable sample-rate crushing + - - Depth Enabled - Глибина включена + + Depth enabled + - - Enable bitdepth-crushing - Включити ​​дроблення глибини кольору + + Enable bit-depth crushing + - + FREQ ЧАСТ - + Sample rate: Частота дискретизації: - + STEREO СТЕРЕО - + Stereo difference: Стерео різниця: - + QUANT КВАНТ - + Levels: Рівні: - CaptionMenu + BitcrushControls - + + Input gain + Вхідне підсилення + + + + Input noise + + + + + Output gain + Вихідне підсилення + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + Рівні + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + Про програму + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Файл + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help &H Довідка - - Help (not available) - Допомога (не доступно) + + toolBar + + + + + 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 + + + + + &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... + + + + + 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 - - Click here to show or hide the graphical user interface (GUI) of Carla. - Натисніть сюди щоб сховати чи показати графічний інтерфейс Carla. + + Settings + Параметри + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + Шляхи + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + Мікс @@ -997,73 +3077,73 @@ If you're interested in translating LMMS in another language or want to imp 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. Виявлено цикл. @@ -1071,22 +3151,22 @@ If you're interested in translating LMMS in another language or want to imp ControllerRackView - + Controller Rack Стійка контролерів - + Add Додати - + Confirm Delete Підтвердити видалення - + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. Чи підтверджуєте видалення? Є можливі зв'язки з цим контролером, потім їх не можна буде повернути.. @@ -1094,37 +3174,32 @@ If you're interested in translating LMMS in another language or want to imp ControllerView - + Controls Управління - - Controllers are able to automate the value of a knob, slider, and other controls. - Контролери можуть автоматизувати зміни значень регуляторів, повзунків та іншого управління. - - - + Rename controller Перейменувати контролер - + Enter the new name for this controller Введіть нову назву контролера - + LFO LFO - + &Remove this controller &R Видалити цей контролер - + Re&name this controller &N Перейменувати цей контролер @@ -1133,86 +3208,106 @@ If you're interested in translating LMMS in another language or want to imp CrossoverEQControlDialog - Band 1/2 Crossover: - Смуга 1/2 кросовер: + Band 1/2 crossover: + - Band 2/3 Crossover: - Смуга 2/3 кросовер: + Band 2/3 crossover: + - Band 3/4 Crossover: - Смуга 3/4 кросовер: + Band 3/4 crossover: + + + + + Band 1 gain + - Band 1 Gain: - Смуга 1 підсилення: + Band 1 gain: + + + + + Band 2 gain + - Band 2 Gain: - Смуга 2 підсилення: + Band 2 gain: + + + + + Band 3 gain + - Band 3 Gain: - Смуга 3 підсилення: + Band 3 gain: + + + + + Band 4 gain + - Band 4 Gain: - Смуга 4 підсилення: + Band 4 gain: + - Band 1 Mute - Смуга 1 відключена + Band 1 mute + - Mute Band 1 - Відключити смугу 1 + Mute band 1 + - Band 2 Mute - Смуга 2 відключена + Band 2 mute + - Mute Band 2 - Відключити смугу 2 + Mute band 2 + - Band 3 Mute - Смуга 3 відключена + Band 3 mute + - Mute Band 3 - Відключити смугу 3 + Mute band 3 + - Band 4 Mute - Смуга 4 відключена + Band 4 mute + - Mute Band 4 - Відключити смугу 4 + Mute band 4 + DelayControls - Delay Samples - Затримка семплів + Delay samples + @@ -1221,13 +3316,13 @@ If you're interested in translating LMMS in another language or want to imp - Lfo Frequency - Частота LFO + LFO frequency + - Lfo Amount - Величина LFO + LFO amount + @@ -1244,8 +3339,8 @@ If you're interested in translating LMMS in another language or want to imp - Delay Time - Час затримки + Delay time + @@ -1254,8 +3349,8 @@ If you're interested in translating LMMS in another language or want to imp - Feedback Amount - Величина повернення + Feedback amount + @@ -1264,8 +3359,8 @@ If you're interested in translating LMMS in another language or want to imp - Lfo - LFO + LFO frequency + @@ -1274,13 +3369,13 @@ If you're interested in translating LMMS in another language or want to imp - Lfo Amt - Вел LFO + LFO amount + - Out Gain - Вих підсилення + Out gain + @@ -1288,6 +3383,223 @@ If you're interested in translating LMMS in another language or want to imp Підсилення + + 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 + + + + + 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 @@ -1348,13 +3660,13 @@ If you're interested in translating LMMS in another language or want to imp - Click to enable/disable Filter 1 - Натиснути для включення/виключення Фільтру 1 + Enable/disable filter 1 + - Click to enable/disable Filter 2 - Натиснути для включення/виключення Фільтру 2 + Enable/disable filter 2 + @@ -1371,8 +3683,8 @@ If you're interested in translating LMMS in another language or want to imp - Cutoff 1 frequency - Зріз 1 частоти + Cutoff frequency 1 + @@ -1401,8 +3713,8 @@ If you're interested in translating LMMS in another language or want to imp - Cutoff 2 frequency - Зріз 2 частоти + Cutoff frequency 2 + @@ -1417,26 +3729,26 @@ If you're interested in translating LMMS in another language or want to imp - LowPass - Низ.ЧФ + Low-pass + - HiPass - Вис.ЧФ + Hi-pass + - BandPass csg - Серед.ЧФ csg + Band-pass csg + - BandPass czpg - Серед.ЧФ czpg + Band-pass czpg + @@ -1447,8 +3759,8 @@ If you're interested in translating LMMS in another language or want to imp - Allpass - Всі проходять + All-pass + @@ -1459,50 +3771,50 @@ If you're interested in translating LMMS in another language or want to imp - 2x LowPass - 2х Низ.ЧФ + 2x Low-pass + - RC LowPass 12dB - RC Низ.ЧФ 12дБ + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC Серед.ЧФ 12 дБ + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC Вис.ЧФ 12дБ + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC Низ.ЧФ 24дБ + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC Серед.ЧФ 24дБ + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC Вис.ЧФ 24дБ + RC High-pass 24 dB/oct + - Vocal Formant Filter - Фільтр Вокальної форманти + Vocal Formant + @@ -1513,20 +3825,20 @@ If you're interested in translating LMMS in another language or want to imp - SV LowPass - SV Низ.ЧФ + SV Low-pass + - SV BandPass - SV Серед.ЧФ + SV Band-pass + - SV HighPass - SV Вис.ЧФ + SV High-pass + @@ -1550,50 +3862,55 @@ If you're interested in translating LMMS in another language or want to imp Editor - + Transport controls Управління засобами сполучення - + Play (Space) Грати (Пробіл) - + Stop (Space) Зупинити (Пробіл) - + Record Запис - + Record while playing Запис під час програвання + + + Toggle Step Recording + + Effect - + Effect enabled Ефект включений - + Wet/Dry mix Насиченість - + Gate Шлюз - + Decay Згасання @@ -1609,12 +3926,12 @@ If you're interested in translating LMMS in another language or want to imp EffectRackView - + EFFECTS CHAIN МЕРЕЖА ЕФЕКТІВ - + Add effect Додати ефект @@ -1622,28 +3939,28 @@ If you're interested in translating LMMS in another language or want to imp EffectSelectDialog - + Add effect Додати ефект - - + + Name І'мя - + Type Тип - + Description Опис - + Author Автор @@ -1651,409 +3968,256 @@ If you're interested in translating LMMS in another language or want to imp EffectView - - Toggles the effect on or off. - Увімк/Вимк ефект. - - - + On/Off Увімк/Вимк - + W/D НАСИЧ - + Wet Level: Рівень насиченості: - - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - Регулятор насиченості визначає частку обробленого сигналу, яка буде на виході. - - - + DECAY ЗГАСАННЯ - + Time: Час: - - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - Decay (затихання) управляє кількістю буферів тиші, які повинні пройти до кінця роботи плагіна. Менші величини знижують перевантаження процесора, але виникає ризик появи потріскування або підрізання в хвості на перетримці (delay) або відлуння (reverb) ефектах. - - - + GATE ШЛЮЗ - + Gate: Шлюз: - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - GATE (Шлюз) визначає рівень сигналу, який буде вважатися "тишею" при визначенні зупинки оброблення сигналів. - - - + Controls Управління - - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Сигнал проходить послідовно через всі встановлені фільтри (зверху вниз). - -Перемикач Увімк/Вимк дозволяє в будь-який момент вмикати / вимикати фільтр. - -Регулятор (wet / dry) насиченості визначає баланс між вхідним сигналом і сигналом після ефекту, який стає вихідним сигналом ефекту. Вхідний сигнал кожного фільтра є виходом попереднього, так що частка чистого сигналу при проходженні по ланцюжку постійно падає. - -Регулятор (decay) затихання визначає час, який буде діяти фільтр після того як ноти були відпущені. -Ефект перестане обробляти сигнали, коли гучність впаде нижче порогу для заданої довжини часу. Ця ручка (Knob) встановлює "задану довжину часу" Чим менше значення, тим менші вимоги до ЦП, тому краще ставити це число низьким для більшості ефектів. однак це може викликати обрізку звуку при використанні ефектів з тривалими періодами тиші, типу затримки. - -Регулятор шлюзу служить для вказівки порогу сигналу для авто-відключення ефекту, відлік для "заданої довжини часу" почнеться як тільки опрацьований сигнал впаде нижче зазначеного цим регулятором рівня. - -Кнопка "Управління" відкриває вікно зміни параметрів ефекту. - -Контекстне меню, яке викликається клацанням правою кнопкою миші, дозволяє змінювати порядок проходження фільтрів або видаляти їх разом з іншими. - - - + Move &up &u Перемістити вище - + Move &down &d Перемістити нижче - + &Remove this plugin &R Видалити цей плагін EnvelopeAndLfoParameters - - - Predelay - Затримка - - - - Attack - Вступ - - Hold - Утримання + Env pre-delay + - Decay - Згасання + Env attack + - Sustain - Витримка + Env hold + - Release - Зменшення + Env decay + - Modulation - Модуляція + Env sustain + - - LFO Predelay - Затримка LFO + + Env release + - - LFO Attack - Вступ LFO + + Env mod amount + - - LFO speed - Швидкість LFO + + LFO pre-delay + - - LFO Modulation - Модуляція LFO + + LFO attack + - LFO Wave Shape - Форма сигналу LFO + LFO frequency + - Freq x 100 - ЧАСТ x 100 + LFO mod amount + - Modulate Env-Amount - Модулювати обвідну + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + EnvelopeAndLfoView - - + + DEL DEL - - Predelay: - Предзатримка: + + + Pre-delay: + - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Ця ручка визначає затримку обвідної. Чим більша ця величина, тим довший час до старту поточної обвідної. - - - - + + ATT ATT - + + Attack: Вступ: - - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Ця ручка встановлює час зростання для поточної обвідної. Чим більше значення, тим довше характеристика (н-д, гучність) зростає до максимуму. Для інструменов нашталт піаніно характерний малий час наростання, а для струнних - великий. - - - + HOLD HOLD - + Hold: Утримання: - - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Ця ручка встановлює тривалість обвідної. Чим більше значення, тим довше обвідна тримається на найвищому рівні. - - - + DEC DEC - + Decay: Згасання: - - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Ця ручка встановлює час згасання для поточної обвідної. Чим більше значення, тим довше обвідна повинна зменшуватися від вступу до рівня витримки. Для інструментів накшталт піаніно слід вибирати невеликі значення. - - - + SUST SUST - + Sustain: Витримка: - - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Ця ручка встановлює рівень витримки. Чим більша ця величина, тим вище рівень на якому залишається обвідна, перш ніж опуститися до нуля. - - - + REL REL - + Release: Зменшення: - - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Ця ручка встановлює час відпускання для поточної обвідної. Чим більше значення, тим довша характеристика (н-д, гучність) зменшується від рівня витримки до нуля. Для струнних інструментів слід вибирати великі значення. - - - - + + AMT AMT - - + + Modulation amount: Глибина модуляції: - - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Ця ручка встановлює глибину модуляції для поточної обвідної. Чим більше значення, тим більшою мірою обрана характеристика (н-д, гучність або частота зрізу) буде залежати від цієї обвідної. - - - - LFO predelay: - Предзатримка LFO: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Ця ручка визначає затримку перед запуском LFO (LFO - низькочастотний осциллятор (генератор)). Чим більша величина, тим більше часу до того як LFO почне працювати. - - - - LFO- attack: - Вступ LFO: - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Використовуйте цю ручку для встановлення часу вступу цього LFO. Чим більше значення, тим довше LFO потребує збільшення своєї амплітуди до максимуму. - - - + SPD SPD - - LFO speed: - Швидкість LFO: + + Frequency: + Частота: - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Ця ручка встановлює швидкість поточного LFO. Чим більше значення, тим швидше LFO коливається і швидше виробляється ефект. - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Ця ручка встановлює глибину модуляції для поточного LFO. Чим більше значення, тим більшою мірою обрана характеристика (н-д, гучність або частота зрізу) залежатиме від цього LFO. - - - - Click here for a sine-wave. - Синусоїда. - - - - Click here for a triangle-wave. - Згенерувати трикутний сигнал. - - - - Click here for a saw-wave for current. - Згенерувати зигзагоподібний сигнал. - - - - Click here for a square-wave. - Згенерувати квадратний сигнал. - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Задати свою форму сигналу. Згодом, перетягнути відповідний файл із записом в граф LFO. - - - - Click here for random wave. - Натисніть сюди для випадкової хвилі. - - - + FREQ x 100 ЧАСТОТА x 100 - - Click here if the frequency of this LFO should be multiplied by 100. - Натисніть, щоб помножити частоту цього LFO на 100. + + Multiply LFO frequency by 100 + - - multiply LFO-frequency by 100 - Помножити частоту LFO на 100 + + MODULATE ENV AMOUNT + - - MODULATE ENV-AMOUNT - МОДЕЛЮВ ОБВІДНУ + + Control envelope amount by this LFO + - - Click here to make the envelope-amount controlled by this LFO. - Натисніть сюди, щоб глибина модуляції обвідної задавалася цим LFO. - - - - control envelope-amount by this LFO - Дозволити цьому LFO задавати значення обвідної - - - + ms/LFO: мс/LFO: - + Hint Підказка - - Drag a sample from somewhere and drop it in this window. - Перетягніть в це вікно який-небудь запис. + + Drag and drop a sample into this window. + @@ -2070,8 +4234,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Low shelf gain - Мала ступінь підсилення + Low-shelf gain + @@ -2095,8 +4259,8 @@ Right clicking will bring up a context menu where you can change the order in wh - High Shelf gain - Висока ступінь підсилення + High-shelf gain + @@ -2105,8 +4269,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf res - Мала ступінь резон + Low-shelf res + @@ -2130,8 +4294,8 @@ Right clicking will bring up a context menu where you can change the order in wh - High Shelf res - Висока ступінь резон + High-shelf res + @@ -2145,8 +4309,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf freq - Низька ступінь част + Low-shelf freq + @@ -2170,8 +4334,8 @@ Right clicking will bring up a context menu where you can change the order in wh - High shelf freq - Висока ступінь част + High-shelf freq + @@ -2185,8 +4349,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Low shelf active - Мала ступінь активна + Low-shelf active + @@ -2210,8 +4374,8 @@ Right clicking will bring up a context menu where you can change the order in wh - High shelf active - Висока ступінь активна + High-shelf active + @@ -2250,13 +4414,13 @@ Right clicking will bring up a context menu where you can change the order in wh - low pass type - Тип низької частоти + Low-pass type + - high pass type - Тип високої частоти + High-pass type + @@ -2278,8 +4442,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf - Мала ступінь + Low-shelf + @@ -2303,8 +4467,8 @@ Right clicking will bring up a context menu where you can change the order in wh - High Shelf - Висока ступінь + High-shelf + @@ -2313,8 +4477,8 @@ Right clicking will bring up a context menu where you can change the order in wh - In Gain - Вхід підсилення + Input gain + Вхідне підсилення @@ -2325,8 +4489,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Out Gain - Вих підсилення + Output gain + Вихідне підсилення @@ -2350,13 +4514,13 @@ Right clicking will bring up a context menu where you can change the order in wh - lp grp - нч grp + LP group + - hp grp - вч grp + HP group + @@ -2381,202 +4545,217 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog - + Export project Експорт проекту - - Output - Вивід + + Export as loop (remove extra bar) + - - File format: - Формат файла: - - - - Samplerate: - Частота дискретизації: - - - - 44100 Hz - 44.1 КГц - - - - 48000 Hz - 48 КГц - - - - 88200 Hz - 88.2 КГц - - - - 96000 Hz - 96 КГц - - - - 192000 Hz - 192 КГц - - - - Depth: - Глибина: - - - - 16 Bit Integer - 16 Біт ціле - - - - 24 Bit Integer - 24 Біт ціле - - - - 32 Bit Float - 32 Біт плаваюча - - - - Stereo mode: - Стерео режим: - - - - Stereo - Стерео - - - - Joint Stereo - Об'єднане стерео - - - - Mono - Моно - - - - Bitrate: - Бітрейт: - - - - 64 KBit/s - 64 КБіт/с - - - - 128 KBit/s - 128 КБіт/с - - - - 160 KBit/s - 160 КБіт/с - - - - 192 KBit/s - 192 КБіт/с - - - - 256 KBit/s - 256 КБіт/с - - - - 320 KBit/s - 320 КБіт/с - - - - Use variable bitrate - Використовувати змінний бітрейт - - - - Quality settings - Налаштування якості - - - - Interpolation: - Інтерполяція: - - - - Zero Order Hold - Нульова затримка - - - - Sinc Fastest - Синхр. Швидка - - - - Sinc Medium (recommended) - Синхр. Середня (рекомендовано) - - - - Sinc Best (very slow!) - Синхр. краща (дуже повільно!) - - - - Oversampling (use with care!): - Передискретизація (використовувати обережно!): - - - - 1x (None) - 1х (Ні) - - - - 2x - - - - - 4x - - - - - 8x - - - - - Export as loop (remove end silence) - Експортувати як петлю (прибрати тишу в кінці) - - - + Export between loop markers Експорт між маркерами циклу - + + Render Looped Section: + + + + + time(s) + + + + + File format settings + + + + + File format: + Формат файла: + + + + Sampling rate: + + + + + 44100 Hz + 44.1 КГц + + + + 48000 Hz + 48 КГц + + + + 88200 Hz + 88.2 КГц + + + + 96000 Hz + 96 КГц + + + + 192000 Hz + 192 КГц + + + + Bit depth: + + + + + 16 Bit integer + + + + + 24 Bit integer + + + + + 32 Bit float + + + + + Stereo mode: + Стерео режим: + + + + Mono + Моно + + + + Stereo + Стерео + + + + Joint stereo + + + + + Compression level: + + + + + Bitrate: + Бітрейт: + + + + 64 KBit/s + 64 КБіт/с + + + + 128 KBit/s + 128 КБіт/с + + + + 160 KBit/s + 160 КБіт/с + + + + 192 KBit/s + 192 КБіт/с + + + + 256 KBit/s + 256 КБіт/с + + + + 320 KBit/s + 320 КБіт/с + + + + Use variable bitrate + Використовувати змінний бітрейт + + + + Quality settings + Налаштування якості + + + + Interpolation: + Інтерполяція: + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + Oversampling: + + + + + 1x (None) + 1х (Ні) + + + + 2x + + + + + 4x + + + + + 8x + + + + Start Почати - + Cancel Відміна @@ -2593,90 +4772,45 @@ Please make sure you have write permission to the file and the directory contain Перевірте, чи маєте ви права на запис файлу і каталог що його містить і спробуйте знову! - + 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% - - Compression level: - - - - (fastest) - - - - (default) - - - - (smallest) - - - - - Expressive - - Selected graph - Обраний графік - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - - Fader - - + + Set value + + + + Please enter a new value between %1 and %2: Введіть нове значення від %1 до %2: @@ -2684,15 +4818,27 @@ Please make sure you have write permission to the file and the directory contain FileBrowser - + + User content + + + + + Factory content + + + + Browser Оглядач файлів + Search + Refresh list @@ -2700,47 +4846,67 @@ Please make sure you have write permission to the file and the directory contain FileBrowserTreeWidget - + Send to active instrument-track З'єднати з активним інструментом-доріжкою - - Open in new instrument-track/Song Editor - Відкрити в новій інструментальній доріжці/Музичному редакторі + + Open containing folder + - - Open in new instrument-track/B+B 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 Завантаження запису - + Please wait, loading sample for preview... Будь-ласка почекайте, запис завантажується для перегляду ... - + Error Помилка - - does not appear to be a valid - не являється дійсним + + %1 does not appear to be a valid %2 file + - - file - файл - - - + --- Factory files --- --- Заводські файли --- @@ -2749,13 +4915,13 @@ Please make sure you have write permission to the file and the directory contain FlangerControls - Delay Samples - Затримка семплів + Delay samples + - Lfo Frequency - Частота LFO + LFO frequency + @@ -2764,16 +4930,21 @@ Please make sure you have write permission to the file and the directory contain + Stereo phase + + + + Regen Перегенерувати - + Noise Шум - + Invert Інвертувати @@ -2787,8 +4958,8 @@ Please make sure you have write permission to the file and the directory contain - Delay Time: - Час затримки: + Delay time: + @@ -2812,145 +4983,485 @@ Please make sure you have write permission to the file and the directory contain + PHASE + + + + + Phase: + + + + FDBK FDBK - - Feedback Amount: - Величина повернення: + + Feedback amount: + - + NOISE ШУМ - - White Noise Amount: - Об'єм білого шуму: + + White noise amount: + - + Invert Інвертувати - FxLine + 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 + + + + + MixerLine + + Channel send amount Величина відправки каналу - - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - Канал ефектів (ЕФ) отримує сигнал на вхід від однієї або декількох інструментальних доріжок. -У свою чергу його можна підключити до декількох інших каналам ефектів. ЛММС автоматично запобігає нескінченному повтореню і не дозволяє створювати з'єднання, які приведуть до нескінченного повторення. -Щоб з'єднати один канал з іншим, виберіть канал ефектів і натисніть кнопку надіслати на каналі, в який потрібно надіслати. Регулятор під кнопкою "надіслати" контролює рівень сигналу, що посилається на канал. -Можна прибирати і рухати канали ефектів через контекстне меню, якщо натиснути правою кнопкою миші по каналу ефектів. - - - + 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 + + - FxMixer + MixerLineLcdSpinBox - + + Assign to: + Призначити до: + + + + New mixer Channel + Новий ефект каналу + + + + Mixer + + Master Головний - - - - FX %1 + + + + Channel %1 Ефект %1 - + Volume Гучність - + Mute Тиша - + Solo Соло - FxMixerView + MixerView - - FX-Mixer + + Mixer Мікшер Ефектів - - FX Fader %1 + + Fader %1 Повзунок Ефекту %1 - + Mute Тиша - - Mute this FX channel + + Mute this mixer channel Тиша на цьому каналі Ефекту - + Solo Соло - - Solo FX channel + + Solo mixer channel Соло каналу ЕФ - FxRoute + MixerRoute - - + + Amount to send from channel %1 to channel %2 Величина відправки з каналу %1 на канал %2 @@ -2958,17 +5469,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument - + Bank Банк - + Patch Патч - + Gain Підсилення @@ -2976,58 +5487,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - - Open other GIG file - Відкрити інший GIG файл - - - - Click here to open another GIG file - Натисніть, щоб відкрити інший GIG файл - - - - Choose the patch - Вибрати патч - - - - Click here to change which patch of the GIG file to use - Натисніть для зміни використовуваного патчу GIG файлу - - - - - Change which instrument of the GIG file is being played - Змінити інструмент, який відтворює GIG файл - - - - Which GIG file is currently being used - Який GIG файл зараз використовується - - - - Which patch of the GIG file is currently being used - Який патч GIG файлу зараз використовується - - - - Gain - Підсилення - - - - Factor to multiply samples by - Фактор множення семплів - - - + + Open GIG file Відкрити GIG файл - + + Choose patch + + + + + Gain: + Підсилення: + + + GIG Files (*.gig) GIG Файли (*.gig) @@ -3035,52 +5511,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 Підготовка редактора автоматизації @@ -3088,20 +5564,25 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio - + Arpeggio Арпеджіо - + Arpeggio type Тип арпеджіо - + Arpeggio range Діапазон арпеджіо + + + Note repeats + + Cycle steps @@ -3181,139 +5662,119 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggioView - + ARPEGGIO ARPEGGIO - - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - Арпеджіо - різновид виконання акордів на фортепіано і струнних інструментах, який оживляє звучання. Струни таких інструментів граються перебором по акордах, як на арфі, коли звуки акорду слідують один за іншим. Типові арпеджіо - мажорні та мінорні тріади, серед яких можна вибрати й інші. - - - + RANGE RANGE - + Arpeggio range: Діапазон арпеджіо: - + octave(s) Октав(а/и) - - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - Використовуйте цю ручку, щоб встановити діапазон арпеджіо (в октавах). Обраний тип арпеджіо охоплюватиме вказану кількість октав. + + REP + - + + Note repeats: + + + + + time(s) + + + + CYCLE ЦИКЛ - + Cycle notes: Зациклити ноти: - + note(s) нота(и) - - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - - - - + SKIP ПРОПУСК - + Skip rate: Частота пропуску: - - - + + + % % - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - + MISS ПРОПУСК - + Miss rate: Частота пропуску: - - The miss function will make the arpeggiator miss the intended note. - Функція пропуску змусить арпеджіатор пропустити бажану ноту. - - - + TIME TIME - + Arpeggio time: Період арпеджіо: - + ms мс - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - Регулювання періоду арпеджіо - час (в мілісекундах), який має звучати кожен тон арпеджіо. - - - + GATE GATE - + Arpeggio gate: Шлюз арпеджіо: - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - Регулювання шлюзу арпеджіо, показує процентну частку кожного тону арпеджіо, яка буде відтворена. Простий спосіб створювати стаккато-арпеджіо. - - - + Chord: Акорд: - + Direction: Напрямок: - + Mode: Режим: @@ -3321,488 +5782,488 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 Діапазон акорду @@ -3810,92 +6271,91 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionNoteStackingView - + STACKING Стиковка - + Chord: Акорд: - + RANGE ДІАПАЗОН - + Chord range: Діапазон акорду: - + octave(s) Октав[а/и] - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Ця ручка змінює діапазон акорду, який буде містити вказане число октав. - InstrumentMidiIOView - + ENABLE MIDI INPUT УВІМК MIDI ВХІД - - - CHANNEL - CHANNEL - - - - - VELOCITY - VELOCITY - - - + ENABLE MIDI OUTPUT УВІМК MIDI ВИВІД - - PROGRAM - PROGRAM + + + 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 - Визначає базову швидкість нормальізаціі для MiDi інструментів при гучності ноти 100% + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + - + BASE VELOCITY БАЗОВА ШВИДКІСТЬ @@ -3903,171 +6363,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView - + MASTER PITCH ОСНОВНА ТОНАЛЬНІСТЬ - - Enables the use of 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 + + - LowPass - Низ.ЧФ + Hi-pass + - HiPass - Вис.ЧФ + Band-pass csg + - BandPass csg - Серед.ЧФ csg + Band-pass czpg + - BandPass czpg - Серед.ЧФ czpg - - - Notch Смуго-загороджуючий - - Allpass - Всі проходять + + All-pass + - + Moog Муг + + + 2x Low-pass + + - 2x LowPass - 2х Низ.ЧФ + RC Low-pass 12 dB/oct + - RC LowPass 12dB - RC Низ.ЧФ 12дБ + RC Band-pass 12 dB/oct + - RC BandPass 12dB - RC Серед.ЧФ 12 дБ + RC High-pass 12 dB/oct + - RC HighPass 12dB - RC Вис.ЧФ 12дБ + RC Low-pass 24 dB/oct + - RC LowPass 24dB - RC Низ.ЧФ 24дБ + RC Band-pass 24 dB/oct + - RC BandPass 24dB - RC Серед.ЧФ 24дБ + RC High-pass 24 dB/oct + - RC HighPass 24dB - RC Вис.ЧФ 24дБ + Vocal Formant + - Vocal Formant Filter - Фільтр Вокальної форманти - - - 2x Moog 2x Муг + + + SV Low-pass + + - SV LowPass - SV Низ.ЧФ + SV Band-pass + - SV BandPass - SV Серед.ЧФ + SV High-pass + - SV HighPass - SV Вис.ЧФ - - - SV Notch SV Смуго-заг - + Fast Formant Швидка форманта - + Tripole Тріполі @@ -4075,63 +6535,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView - + TARGET ЦЕЛЬ - - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Ця вкладка дозволяє вам налаштувати обвідні. Вони дуже важливі для налаштування звучання. -Наприклад, за допомогою обвідної гучності ви можете задати залежність гучності звучання від часу. Якщо вам знадобиться емулювати м'які струнні, просто задайте більше часу наростання і зникнення звуку. За допомогою обвідних і низькочастотного осциллятора (LFO) ви в кілька кліків миші зможете створити просто неймовірні звуки! - - - + FILTER ФИЛЬТР - - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Здесь вы можете выбрать фильтр для дорожки этого инструмента. Фильтры могут довольно сильно менять звучание. - - - + FREQ ЧАСТ - - cutoff frequency: - Срез частот: + + Cutoff frequency: + Частота зрізу: - + Hz Гц - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Эта ручка устанавливает частоту среза для выбранного фильтра. К примеру, ФНЧ будет срезать сигнал на частотах выше частоты среза, полосно-пропускающий фильтр будет хорошо пропускать сигнал только на заданной частоте и так далее... + + Q/RESO + - - RESO - РЕЗО + + Q/Resonance: + - - Resonance: - Підсилення: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Эта ручка задаёт количество резонанса для фильтра, этим определяется насколько нужно усилить ближайшие к отрезанным частоты. - - - + Envelopes, LFOs and filters are not supported by the current instrument. Обвідні, LFO і фільтри не підтримуються цим інструментом. @@ -4139,21 +6578,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack - - With this knob you can set the volume of the opened channel. - Регулювання гучності поточного каналу. - - - + unnamed_track безіменна_доріжка - + Base note Опорна нота + + + First note + + + + + Last note + По останій ноті + Volume @@ -4176,17 +6620,27 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX channel + Mixer channel Канал ЕФ - Master Pitch + Master pitch Основна тональність - - + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + Default preset Основна предустановка @@ -4194,213 +6648,267 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrackView - + Volume Гучність - + Volume: Гучність: - + VOL ГУЧН - + Panning Баланс - + Panning: Баланс: - + PAN БАЛ - + MIDI MIDI - + Input Вхід - + Output Вихід - - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 ЕФ %1: %2 InstrumentTrackWindow - + GENERAL SETTINGS ОСНОВНІ НАЛАШТУВАННЯ - - Use these controls to view and edit the next/previous track in the song editor. - Використовуйте ці елементи керування для перегляду і редагування наступного/попереднього треку в музичному редакторі. + + Volume + Гучність - - Instrument volume - Гучність інструменту - - - + Volume: Гучність: - + VOL ГУЧН - + Panning Баланс - + Panning: Стереобаланс: - + PAN БАЛ - + Pitch Тональність - + Pitch: Тональність: - + cents відсотків - + PITCH ТОН - + Pitch range (semitones) Діапазон тональності (півтону) - + RANGE ДІАПАЗОН - - FX channel + + Mixer channel Канал ЕФ - - FX + + CHANNEL ЕФ - + Save current instrument track settings in a preset file Зберегти поточну інструментаьную доріжку в файл предустановок - - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - Нитисніть тут, щоб зберегти налаштування поточної інстр. доріжки в файл предустановок. Пізніше можна завантажити цю передустановку подвійним кліком в браузері предустановок. - - - + SAVE ЗБЕРЕГТИ - + Envelope, filter & LFO Обвідна, фільтр & LFO - + Chord stacking & arpeggio Укладання акордів & арпеджіо - + Effects Ефекти - - MIDI settings - Параметри MIDI + + 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 + + + + + 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: @@ -4429,33 +6937,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView - + Link channels Зв'язати канали - + Value: Значення: - - - Sorry, no help available. - Вибачте, довідки немає. - 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: @@ -4533,137 +7054,126 @@ You can remove and move FX channels in the context menu, which is accessed by ri LFO - - LFO Controller - Контролер LFO - - - + BASE БАЗА - - Base amount: - Базове значення: + + Base: + - todo - доробити + FREQ + ЧАСТ - - SPD - ШВИД + + LFO frequency: + - - LFO-speed: - Швидкість LFO: - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Ця ручка встановлює швидкість LFO. Чим більше значення, тим більша частота осциллятора. - - - + AMNT ГЛИБ - + Modulation amount: Кількість модуляції: - - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Ця ручка встановлює глибину модуляції для LFO. Чим більше значення, тим більшою мірою обрана характеристика (н-д, гучність або частота зрізу) буде залежати від ГНЧ (LFO). - - - + PHS ФАЗА - + Phase offset: Зсув фази: - - degrees - градуси + + degrees + - - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Ця ручка встановлює початкову фазу НизькоЧастотного Осциллятора (LFO), т. б. Точку, з якої осциллятор починає виробляти сигнал. Наприклад, якщо ви задали синусоїдальну форму сигналу і початкову фазу 180º, хвиля спочатку піде вниз, а не вгору, так само як і для квадратної хвилі. + + Sine wave + Синусоїда - - Click here for a sine-wave. - Синусоїда. + + Triangle wave + Трикутник - - Click here for a triangle-wave. - Згенерувати трикутний сигнал. + + Saw wave + Зигзаг - - Click here for a saw-wave. - Згенерувати зигзаг. + + Square wave + Квадратна хвиля - - Click here for a square-wave. - Згенерувати квадратний сигнал. + + Moog saw wave + Муг-зигзаг хвиля - - Click here for a moog saw-wave. - Натисніть для зигзагоподібної муг-хвилі. + + Exponential wave + Експоненціальна хвиля - - Click here for an exponential wave. - Генерувати експонентний сигнал. + + White noise + Білий шум - - Click here for white-noise. - Згенерувати білий шум. - - - - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - Натисніть тут для визначення своєї форми. -Подвійне натискання для вибору файлу. + + + + + Mutliply modulation frequency by 1 + + + + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + - LmmsCore + Engine - + Generating wavetables Генерування синтезатора звукозаписів - + Initializing data structures Ініціалізація структур даних - + Opening audio and midi devices Відкриття аудіо та міді пристроїв - + Launching mixer threads Запуск потоків міксера @@ -4671,501 +7181,510 @@ Double click to pick a file. 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 Мій комп'ютер - - Loading background artwork - Завантаження фонового зображення - - - + &File &Файл - + &New &N Новий - - New from template - Новий проект по шаблону - - - + &Open... &O Відкрити... - - &Recently Opened Projects - &Нещодавно відкриті проекти + + 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 Довідка - - What's This? - Що це? - - - + About Про програму - + Create new project Створити новий проект - + Create new project from template Створити новий проект по шаблону - + Open existing project Відкрити існуючий проект - + Recently opened projects Нещодавні проекти - + Save current project Зберегти поточний проект - + Export current project Експорт проекту - - What's this? - Що це? + + Metronome + - - Toggle metronome - Переключити метроном + + + Song Editor + Музичний редактор - - Show/hide Song-Editor - Показати/сховати музичний редактор + + + Beat+Bassline Editor + Редактор шаблонів - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - Показати чи сховати музичний редактор. З його допомогою ви можете редагувати композицію і задавати час відтворення кожної доріжки. -Також ви можете вставляти і пересувати записи прямо у списку відтворення. + + + Piano Roll + Нотний редактор - - Show/hide Beat+Bassline Editor - Показати/сховати ритм-бас редактор + + + Automation Editor + Редактор автоматизації - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - Показати чи сховати ритм-бас редактор. Він необхідний для установки ритму, відкриття, додавання і видалення каналів, а також вирізання, копіювання і вставки ритм-бас шаблонів і схожих речей. + + + Mixer + Мікшер Ефектів - - Show/hide Piano-Roll - Показати/сховати нотний редактор - - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - Запуск редатора нот. З його допомогою ви можете легко редагувати мелодії. - - - - Show/hide Automation Editor - Показати/сховати редактор автоматизації - - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - Показати / сховати вікно редактора автоматизації. З його допомогою ви можете легко редагувати динаміку обраних величин. - - - - Show/hide FX Mixer - Показати/сховати мікшер ЕФ - - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - Сховати / показати мікшер ефектів. Він є потужним інструментом для управління ефектами. Ви можете вставляти ефекти в різні канали. - - - - Show/hide project notes - Показати/сховати замітки до проекту - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - Ця кнопка показує / ховає вікно з нотатками. У цьому вікні ви можете поміщати будь-які коментарі до своєї композиції. - - - + 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. - - Song Editor - Музичний редактор - - - - Beat+Bassline Editor - Редактор шаблонів - - - - Piano Roll - Нотний редактор - - - - Automation Editor - Редактор автоматизації - - - - FX Mixer - Мікшер Ефектів - - - - Project Notes - Примітки проекту - - - + 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 ПЕРІОД @@ -5183,6 +7702,25 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Знаменник + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController @@ -5199,24 +7737,43 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiImport - - + + Setup incomplete Установку не завершено - - You do not have 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 SoundFont, вказати його в налаштуваннях і спробувати знову. + + 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 Трек @@ -5236,6 +7793,241 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Здається, сервер JACK відключений. + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 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 + &E Редагування + + + + &Quit + &Q Вийти + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + MidiPort @@ -5297,603 +8089,603 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiSetupWidget - - DEVICE - ПРИСТРІЙ + + Device + MonstroInstrument - - Osc 1 Volume - Гучність осциллятора 1 + + Osc 1 volume + - - Osc 1 Panning - Баланс осциллятора 1 + + Osc 1 panning + - - Osc 1 Coarse detune - Грубе підстроювання осциллятора 1 + + Osc 1 coarse detune + - - Osc 1 Fine detune left - Точне підстроювання лівого каналу осциллятора 1 + + Osc 1 fine detune left + - - Osc 1 Fine detune right - Точне підстроювання правого каналу осциллятора 1 + + Osc 1 fine detune right + - - Osc 1 Stereo phase offset - Зміщення стерео-фази осциллятора 1 + + Osc 1 stereo phase offset + - - Osc 1 Pulse width - Довжина імпульсу осциллятора 1 + + Osc 1 pulse width + - - Osc 1 Sync send on rise - Синхронізація підйому осциллятора 1 + + Osc 1 sync send on rise + - - Osc 1 Sync send on fall - Синхронізація падіння осциллятора 1 + + Osc 1 sync send on fall + - - Osc 2 Volume - Гучність осциллятора 2 + + Osc 2 volume + - - Osc 2 Panning - Баланс осциллятора 2 + + Osc 2 panning + - - Osc 2 Coarse detune - Грубе підстроювання осциллятора 2 + + Osc 2 coarse detune + - - Osc 2 Fine detune left - Точне підстроювання лівого каналу осциллятора 2 + + Osc 2 fine detune left + - - Osc 2 Fine detune right - Точне підстроювання правого каналу осциллятора 2 + + Osc 2 fine detune right + - - Osc 2 Stereo phase offset - Зміщення стерео-фази осциллятора 2 + + Osc 2 stereo phase offset + - - Osc 2 Waveform - Форма сигналу осциллятора 2 + + Osc 2 waveform + - - Osc 2 Sync Hard - Жорстка синхронізація осциллятора 2 + + Osc 2 sync hard + - - Osc 2 Sync Reverse - Верерс синхронізація осциллятора 2 + + Osc 2 sync reverse + - - Osc 3 Volume - Гучність осциллятора 3 + + Osc 3 volume + - - Osc 3 Panning - Баланс осциллятора 3 + + Osc 3 panning + - - Osc 3 Coarse detune - Грубе підстроювання осциллятора 3 + + Osc 3 coarse detune + - + Osc 3 Stereo phase offset Зміщення стерео-фази осциллятора 3 - - Osc 3 Sub-oscillator mix - Змішення суб-генератора осциллятора 3 + + Osc 3 sub-oscillator mix + - - Osc 3 Waveform 1 - Форма 1 сигналу осциллятора 3 + + Osc 3 waveform 1 + - - Osc 3 Waveform 2 - Форма 2 сигналу осциллятора 3 + + Osc 3 waveform 2 + - - Osc 3 Sync Hard - Жорстка синхронізація осциллятора 3 + + Osc 3 sync hard + - - Osc 3 Sync Reverse - Верерс синхронізація осциллятора 3 + + Osc 3 Sync reverse + - - LFO 1 Waveform - Форма сигналу LFO 1 + + LFO 1 waveform + - - LFO 1 Attack - Вступ LFO 1 + + LFO 1 attack + - - LFO 1 Rate - Темп LFO 1 + + LFO 1 rate + - - LFO 1 Phase - Фаза LFO 1 + + LFO 1 phase + - - LFO 2 Waveform - Форма сигналу LFO 2 + + LFO 2 waveform + - - LFO 2 Attack - Вступ LFO 2 + + LFO 2 attack + - - LFO 2 Rate - Темп LFO 2 + + LFO 2 rate + - - LFO 2 Phase - Фаза LFO 2 + + LFO 2 phase + - - Env 1 Pre-delay - Затримка обвідної 1 + + Env 1 pre-delay + - - Env 1 Attack - Вступ обвідної 1 + + Env 1 attack + - - Env 1 Hold - Утримання обвідної 1 + + Env 1 hold + - - Env 1 Decay - Згасання обвідної 1 + + Env 1 decay + - - Env 1 Sustain - Витримка обвідної 1 + + Env 1 sustain + - - Env 1 Release - Зменшення обвідної 1 + + Env 1 release + - - Env 1 Slope - Нахил обвідної 1 + + Env 1 slope + - - Env 2 Pre-delay - Затримка обвідної 2 + + Env 2 pre-delay + - - Env 2 Attack - Вступ обвідної 2 + + Env 2 attack + - - Env 2 Hold - Утримання обвідної 2 + + Env 2 hold + - - Env 2 Decay - Згасання обвідної 2 + + Env 2 decay + - - Env 2 Sustain - Витримка обвідної 2 + + Env 2 sustain + - - Env 2 Release - Зменшення обвідної 2 + + Env 2 release + - - Env 2 Slope - Нахил обвідної 2 + + Env 2 slope + - - Osc2-3 modulation - Модуляція осцилляторів 2-3 + + Osc 2+3 modulation + - + Selected view Перегляд обраного - - Vol1-Env1 - Гучн1-Обв1 + + Osc 1 - Vol env 1 + - - Vol1-Env2 - Гучн1-Обв2 + + Osc 1 - Vol env 2 + - - Vol1-LFO1 - Гучн1-LFO1 + + Osc 1 - Vol LFO 1 + - - Vol1-LFO2 - Гучн1-LFO2 + + Osc 1 - Vol LFO 2 + - - Vol2-Env1 - Гучн2-Обв1 + + Osc 2 - Vol env 1 + - - Vol2-Env2 - Гучн2-Обв2 + + Osc 2 - Vol env 2 + - - Vol2-LFO1 - Гучн2-LFO1 + + Osc 2 - Vol LFO 1 + - - Vol2-LFO2 - Гучн2-LFO2 + + Osc 2 - Vol LFO 2 + - - Vol3-Env1 - Гучн3-Обв1 + + Osc 3 - Vol env 1 + - - Vol3-Env2 - Гучн3-Обв2 + + Osc 3 - Vol env 2 + - - Vol3-LFO1 - Гучн3-LFO1 + + Osc 3 - Vol LFO 1 + - - Vol3-LFO2 - Гучн3-LFO2 + + Osc 3 - Vol LFO 2 + - - Phs1-Env1 - Фаз1-Обв1 + + Osc 1 - Phs env 1 + - - Phs1-Env2 - Фаз1-Обв2 + + Osc 1 - Phs env 2 + - - Phs1-LFO1 - Фаз1-LFO1 + + Osc 1 - Phs LFO 1 + - - Phs1-LFO2 - Фаз1-LFO2 + + Osc 1 - Phs LFO 2 + - - Phs2-Env1 - Фаз2-Обв1 + + Osc 2 - Phs env 1 + - - Phs2-Env2 - Фаз2-Обв2 + + Osc 2 - Phs env 2 + - - Phs2-LFO1 - Фаз2-LFO1 + + Osc 2 - Phs LFO 1 + - - Phs2-LFO2 - Фаз2-LFO2 + + Osc 2 - Phs LFO 2 + - - Phs3-Env1 - Фаз3-Обв1 + + Osc 3 - Phs env 1 + - - Phs3-Env2 - Фаз3-Обв2 + + Osc 3 - Phs env 2 + - - Phs3-LFO1 - Фаз3-LFO1 + + Osc 3 - Phs LFO 1 + - - Phs3-LFO2 - Фаз3-LFO2 + + Osc 3 - Phs LFO 2 + - - Pit1-Env1 - Тон1-Обв1 + + Osc 1 - Pit env 1 + - - Pit1-Env2 - Тон1-Обв2 + + Osc 1 - Pit env 2 + - - Pit1-LFO1 - Тон1-LFO1 + + Osc 1 - Pit LFO 1 + - - Pit1-LFO2 - Тон1-LFO2 + + Osc 1 - Pit LFO 2 + - - Pit2-Env1 - Тон2-Обв1 + + Osc 2 - Pit env 1 + - - Pit2-Env2 - Тон2-Обв2 + + Osc 2 - Pit env 2 + - - Pit2-LFO1 - Тон2-LFO1 + + Osc 2 - Pit LFO 1 + - - Pit2-LFO2 - Тон2-LFO2 + + Osc 2 - Pit LFO 2 + - - Pit3-Env1 - Тон3-Обв1 + + Osc 3 - Pit env 1 + - - Pit3-Env2 - Тон3-Обв2 + + Osc 3 - Pit env 2 + - - Pit3-LFO1 - Тон3-LFO1 + + Osc 3 - Pit LFO 1 + - - Pit3-LFO2 - Тон3-LFO2 + + Osc 3 - Pit LFO 2 + - - PW1-Env1 - PW1-Обв1 + + Osc 1 - PW env 1 + - - PW1-Env2 - PW1-Обв2 + + Osc 1 - PW env 2 + - - PW1-LFO1 - PW1-LFO1 + + Osc 1 - PW LFO 1 + - - PW1-LFO2 - PW1-LFO2 + + Osc 1 - PW LFO 2 + - - Sub3-Env1 - Sub3-Обв1 + + Osc 3 - Sub env 1 + - - Sub3-Env2 - Sub3-Обв2 + + Osc 3 - Sub env 2 + - - Sub3-LFO1 - Sub3-LFO1 + + Osc 3 - Sub LFO 1 + - - Sub3-LFO2 - Sub3-LFO2 + + 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 Випадкове зглажування @@ -5901,453 +8693,240 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MonstroView - + Operators view Операторский вид - - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - Операторський вид містить всі оператори. Вони включають і оператори що звучать (осциллятори) і беззвучні оператори або модулятори: Низько-частотні осциллятори і обвідні. - -Регулятори й інші віджети в операторському вигляді мають свої підписи "Що це?", Таким чином по ним можна отримати більш детальну довідку. - - - + Matrix view Матричний вигляд - - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - Матричний вид містить матрицю модуляції. Тут можна визначити модуляційні відношення між різними операторами. Кожен чутний оператор (осциллятори 1-3) мають 3-4 властивості, які можна модулювати будь-якими модуляторами. Використовуючи більше модуляцій збільшується навантаження на процесор. - -Вид ділиться на цілі модуляції, згруповані на цільовий осциллятор. Доступні цілі: гучність, тон, фаза, ширина пульсація і відношення з підлеглим (під-) осциллятором. Відзначимо що деякі цілі визначені тільки для одного осциллятора. - -Кожна ціль модуляції має 4 регулятори, по одному на кожен модулятор. За замовчуванням регулятори встановлені на 0, тобто без модуляції. Включення регуляторів на 1 веде до того, що модулятор впливає на ціль модуляції на стільки на скільки це можливо. Включення його в -1 робить те ж, але зі зворотньою модуляцією. - - - - - + + + Volume Гучність - - - + + + Panning Баланс - - - + + + Coarse detune Грубе підстроювання - - - + + + semitones півтон(а,ів) - - - Finetune left - Точне настроювання лівого каналу + + + Fine tune left + - - - - + + + + cents відсотків - - - Finetune right - Точне настроювання правого каналу + + + 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 Osc2 with Osc3 - Змішати Осц2 з Осц3 + + Mix osc 2 with osc 3 + - - Modulate amplitude of Osc3 with Osc2 - Модулювати амплітуду осциллятора 3 сигналом з осц2 + + Modulate amplitude of osc 3 by osc 2 + - - Modulate frequency of Osc3 with Osc2 - Модулювати частоту осциллятора 3 сигналом з осц2 + + Modulate frequency of osc 3 by osc 2 + - - Modulate phase of Osc3 with Osc2 - Модулювати фазу Осц3 осциллятором2 + + Modulate phase of osc 3 by osc 2 + - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - Регулятор CRS змінює налаштування осциллятора 1 у розмірі півтону. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - Регулятор CRS змінює налаштування осциллятора 2 у розмірі півтону. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - Регулятор CRS змінює налаштування осциллятора 3 у розмірі півтону. - - - - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - FTL і FTR змінюють підстроювання осциллятора для лівого і правого каналів відповідно. Вони можуть додати стерео розстроювання осциллятора, яке розширює стерео картину і створює ілюзію космосу. - - - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - Регулятор SPO змінює фазову різницю між лівим і правим каналами. Висока різниця створює більш широку стерео картину. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - PW регулятор контролює ширину пульсацій, також відому як робочий цикл осциллятора 1. Осциллятор 1 це цифровий імпульсний хвильовий генератор, він не відтворює сигнал з обмеженою смугою, це означає, що його можна використовувати як чутний осциллятор, але це призведе до накладення сигналів (або згладжування) . Його можна використовувати й як не чутне джерело синхронізуючого сигналу, для використання в синхронізації осцилляторів 2 і 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Надсилати синхронізацію при підвищенні: при включенні, сигнал синхронізації надсилається кожен раз коли стан осциллятора 1 змінюється з низького на високий, тобто коли амплітуда змінюється від -1 до 1. -Тон осциллятора 1, фаза і ширина пульсацій може впливати на час синхронізації, але гучність не має ефекту. Сигнал синхронізації надсилається незалежно для лівого і правого каналів. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - Надсилати синхронізацію при зниженні: при включенні, сигнал синхронізації надсилається кожен раз коли стан осциллятора 1 змінюється з виского на низьке, тобто коли амплітуда змінюється від 1 до -1. -Тон осциллятора 1, фаза і ширина пульсацій може впливати на час синхронізації, але гучність не має ефекту. Сигнал синхронізації надсилається незалежно для лівого і правого каналів. - - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - Жорстка синхронізація: Кожен раз при отриманні осциллятором сигналу синхронізації від осциллятора 1, його фаза скидається до 0 + його межа фази, якою б вона не була. - - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - Реверс синхронізація: Кожен раз при отриманні сигналу синхронізації від осциллятора 1, амплітуда осциллятора перевертається. - - - - Choose waveform for oscillator 2. - Вибрати форму хвилі для осциллятора 2. - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Виберіть форму хвилі для першого додаткового осциллятора осциллятора 3. Осциллятор 3 може м'яко переходити між двома різними хвилями. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - Виберіть форму хвилі для другого додаткового осциллятора осциллятора 3. Осциллятор 3 може м'яко переходити між двома різними хвилями. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - SUB змінює змішування двох дод осцилляторів осциллятора 3. Кожен дод. осц. може бути встановлений для створення різних хвиль і осциллятор 3 може м'яко переходити між ними. Усі вхідні модуляції для осциллятора 3 застосовуються на обидва дод.осц./хвилі одним і тим же чином. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - На додаток до виділених модуляторів Монстро дозволяє виходу осциллятора 2 модулювати осцллятор 3. - -Змішаний (Mix) режим означає без модуляції: виходи осцилляторів просто змішуються один з одним. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - На додаток до виділених модуляторів Монстро дозволяє виходу осциллятора 2 модулювати осцллятор 3. - -AM режим значить Амплітуда Модуляції: Осциллятори 2 модулює амплітуду (гучність) осциллятора 3. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - На додаток до виділених модуляторів Монстро дозволяє виходу осциллятора 2 модулювати осцллятор 3. - -FM (ЧМ) режим означає Частотна Модуляція: осциллятор 2 модулює частоту (pitch, тональність) осциллятора 3. Частота модуляції відбувається у фазі модуляції, яка дає більш стабільний загальний тон, ніж "чиста" частотна модуляція. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - На додаток до виділених модуляторів Монстро дозволяє виходу осциллятора 2 модулювати осцллятор 3. - -PM (ФМ) режим означає Фазова Модуляція: Осциллятор 2 модулює фазу осциллятора 3. Це відрізняється від частотної модуляції тим, що зміни фаз не сумуються. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Виберіть форму хвилі для LFO 1 (НизькоЧастотнийГенератор). -"Random" (Випадково) і "Random-smooth" (випадкове згладжування) - це спеціальні хвилі: вони створюють випадковий сигнал, де частота LFO контролює як часто змінюється стан генератора (LFO). -Згладжена версія переходить між цими станами з косинусоїдальною інтерполяцією. Ці випадкові режими можуть бути використані, щоб дати "життя" вашим налаштуванням - додати трішки аналогової непередбачуваності ... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - Виберіть форму хвилі для LFO 2 (НизкоЧастотнийГенератор). -"Random" (Випадково) і "Random-smooth" (випадкове згладжування) - це спеціальні хвилі: вони створюють випадковий сигнал, де частота LFO контролює як часто змінюється стан генератора (LFO). -Згладжена версія переходить між цими станами з косинусоїдальною інтерполяцією. Ці випадкові режими можуть бути використані, щоб дати "життя" вашим налаштуванням - додати трішки аналогової непередбачуваності ... - - - - - Attack causes the LFO to come on gradually from the start of the note. - Атака відповідає за плавність поведінки LFO від початку ноти. - - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - Rate (Частота) встановлює швидкість LFO, вимірювану в мілісекундах за цикл. Може синхронізуватися з темпом. - - - - - PHS controls the phase offset of the LFO. - PHS контролює зсув фази LFO (НЧГ). - - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - PRE передзатримка, затримує старт обвідної від початку ноти. 0 означає без затримки. - - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - ATT атака контролює як швидко обвідна нарощується на старті, вимірюється в мілісекундах. Значення 0 означає миттєво. - - - - - HOLD controls how long the envelope stays at peak after the attack phase. - HOLD (УТРИМУВАТИ) контролює як довго обвідна залишається на піку після фази атаки. - - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - DEC (decay) згасання контролює як швидко обвідна спадає з пікового значення, вимірюється в мілісекундах, як довго буде йти з піку до нуля. Реальне загасання може бути коротшим, якщо використовується витримка. - - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - SUS (sustain) витримка, контролює рівень обвідної. Загасання фази не піде нижче цього рівня поки нота утримується. - - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - REL (release) відпускання контролює як довго нота відпускається, вимірюється в довготі падіння від піку до нуля. Реальне відпускання може бути коротшим, залежно від фази, в якій нота відпущена. - - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - Регулятор нахилу контролює криву або форму обвідної. Значення 0 створює прямі підйоми і спади. Від'ємні величини створюють криві з уповільненим початком, швидким піком і знову уповільненим спадом. Позитивні значення створюють криві які починаються і закінчуються швидко, але довше залишаються на піках. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount Глибина модуляції @@ -6371,8 +8950,8 @@ PM (ФМ) режим означає Фазова Модуляція: Осцил - Dry Gain: - Сухе підсилення: + Dry gain: + @@ -6381,8 +8960,8 @@ PM (ФМ) режим означає Фазова Модуляція: Осцил - Lowpass stages: - НЧ етапи: + Low-pass stages: + @@ -6391,109 +8970,109 @@ PM (ФМ) режим означає Фазова Модуляція: Осцил - Swap left and right input channel for reflections - Дзеркальний обмін лівим і правим каналами + Swap left and right input channels for reflections + NesInstrument - - Channel 1 Coarse detune - Грубе підстроювання 1 каналу + + Channel 1 coarse detune + - - Channel 1 Volume - Гучність 1 каналу + + Channel 1 volume + Гучність першого каналу - - Channel 1 Envelope length - Довжина обвідної 1 каналу + + Channel 1 envelope length + - - Channel 1 Duty cycle - Робочий цикл 1 каналу + + Channel 1 duty cycle + - - Channel 1 Sweep amount - Кількість розгортки 1 каналу + + Channel 1 sweep amount + - - Channel 1 Sweep rate - Швидкість розгортки 1 каналу + + Channel 1 sweep rate + - + Channel 2 Coarse detune Грубе підстроювання 2 каналу - + Channel 2 Volume Гучність 2 каналу - - Channel 2 Envelope length - Довжина обвідної 2 каналу + + Channel 2 envelope length + - - Channel 2 Duty cycle - Робочий цикл 2 каналу + + Channel 2 duty cycle + - - Channel 2 Sweep amount - Кількість розгортки 2 каналу + + Channel 2 sweep amount + - - Channel 2 Sweep rate - Швидкість розгортки 2 каналу + + Channel 2 sweep rate + - - Channel 3 Coarse detune - Грубе підстроювання 3 каналу + + Channel 3 coarse detune + - - Channel 3 Volume - Гучність 3 каналу + + Channel 3 volume + Гучність третього каналу - - Channel 4 Volume - Гучність 4 каналу + + Channel 4 volume + Гучність четвертого каналу - - Channel 4 Envelope length - Довжина обвідної 4 каналу + + Channel 4 envelope length + - - Channel 4 Noise frequency - Частота шуму 4 каналу + + Channel 4 noise frequency + - - Channel 4 Noise frequency sweep - Частота розгортки шуму 4 каналу + + Channel 4 noise frequency sweep + - + Master volume Основна гучність - + Vibrato Вібрато @@ -6501,220 +9080,408 @@ PM (ФМ) режим означає Фазова Модуляція: Осцил 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 + + 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 @@ -6761,105 +9528,85 @@ PM (ФМ) режим означає Фазова Модуляція: Осцил PatmanView - - Open other patch - Відкрити інший патч + + Open patch + - - Click here to open another patch-file. Loop and Tune settings are not reset. - Натисніть щоб відкрити інший патч-файл. Циклічність і налаштування при цьому збережуться. - - - + Loop Повтор - + Loop mode Режим повтору - - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - Тут вмикається/вимикається режим повтору, при увімкнені PatMan буде використовувати інформацію про повтор з файлу. - - - + Tune Підлаштувати - + Tune mode Тип підстроювання - - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - Тут вмикається/вимикається режим підстроювання. Якщо його увімкнено, то PatMan змінить запис так, щоб він збігався по частоті з нотою. - - - + No file selected Файл не вибрано - + Open patch file Відкрити патч-файл - + Patch-Files (*.pat) Патч-файли (*.pat) - PatternView + MidiClipView - - use mouse wheel to set velocity of a step - використовуйте колесо миші для встановлення кроку гучності - - - - double-click to open in Piano Roll - Відкрити в редакторі нот подвійним клацанням миші - - - + Open in piano-roll Відкрити в редакторі нот - + + Set as ghost in piano-roll + + + + Clear all notes Очистити всі ноти - + Reset name Скинути назву - + Change name Перейменувати - + Add steps Додати такти - + Remove steps Видалити такти - + Clone Steps Клонувати такти @@ -6872,12 +9619,12 @@ PM (ФМ) режим означає Фазова Модуляція: Осцил Контролер вершин - + 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 контролери вершин не можуть правильно підключатися. Будь-ласка переконайтеся, що контролери вершин правильно приєднані і перезбережіть цей файл, вибачте, за заподіяні незручності. @@ -6898,199 +9645,234 @@ PM (ФМ) режим означає Фазова Модуляція: Осцил PeakControllerEffectControlDialog - + BASE БАЗА - - Base amount: - Базове значення: + + Base: + - + AMNT ГЛИБ - + Modulation amount: Глибина модуляції: - + MULT МНОЖ - - Amount Multiplicator: - Величина множника: + + Amount multiplicator: + - + ATCK ВСТУП - + Attack: Вступ: - + DCAY ЗГАС - + Release: Зменшення: - + TRSH TRSH - + Treshold: Поріг: + + + Mute output + Заглушити вивід + + + + Absolute value + + PeakControllerEffectControls - + Base value Опорне значення - + Modulation amount Глибина модуляції - + Attack Вступ - + Release Зменшення - + Treshold Поріг - + Mute output Заглушити вивід - - Abs Value - Абс Значення + + Absolute value + - - Amount Multiplicator - Величина множника + + 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 Баланс: по середині - - Please open a pattern by double-clicking on it! + + 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: @@ -7098,208 +9880,284 @@ PM (ФМ) режим означає Фазова Модуляція: Осцил PianoRollWindow - - Play/pause current pattern (Space) + + 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) під час відтворення пісні або доріжки Ритм-Басу - - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) Зупинити програвання поточної мелодії (Пробіл) - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Натисніть тут щоб програти поточний шаблон. Це може стати в нагоді при його редагуванні. Після закінчення шаблону відтворення почнеться спочатку. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - Натисніть цю кнопку, якщо ви хочете записати ноти з пристрою MIDI або віртуального синтезатора відповідного каналу. Пізніше ви зможете відредагувати записаний шаблон. - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - Натисніть цю кнопку, якщо ви хочете записати ноти з пристрою MIDI або віртуального синтезатора відповідного каналу. Під час запису всі ноти записуються в цей шаблон, і ви будете чути композицію або РБ доріжку на задньому плані. - - - - Click here to stop playback of current pattern. - Натисніть тут, якщо ви хочете зупинити відтворення поточного шаблону. - - - + Edit actions Зміна - + Draw mode (Shift+D) Режим малювання (Shift + D) - + Erase mode (Shift+E) Режим стирання (Shift+E) - + Select mode (Shift+S) Режим вибору нот (Shift+S) - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - Режим малювання нот, в ньому ви можете додавати/переміщати і змінювати тривалість одиночних нот. Це режим за замовчуванням і використовується більшу частину часу. -Для включення цього режиму можна скористатися комбінацією клавіш Shift+D, утримуйте %1 для тимчасового перемикання в режим вибору. - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - Режим стирання. У цьому режимі ви можете стирати ноти. Для увімкнення цього режиму можна скористатися комбінацією клавіш Shift+E. - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - Режим виділення. У цьому режимі можна виділяти ноти, також можна утримувати %1 в режимі малювання, щоб на час увійти в режим виділення. - - - + Pitch Bend mode (Shift+T) Режим Pitch Bend (Shift+T) - - Click here and Pitch Bend mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - Натисніть тут для активації Pitch Blend режиму. Ви зможете клікнути на ноту, щоб почати автоматичний детюн. Можна використовувати це для "ковзання" від однієї ноти до іншої. Можна включити цей режим за допомогою Shift + T. - - - + Quantize Квантовать - + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + Copy paste controls Управління копіюванням та вставкою - - Cut selected notes (%1+X) - Перемістити виділені ноти до буферу (%1+X) + + Cut (%1+X) + - - Copy selected notes (%1+C) - Копіювати виділені ноти до буферу (%1+X) + + Copy (%1+C) + - - Paste notes from clipboard (%1+V) - Вставити ноти з буферу (%1+V) + + Paste (%1+V) + - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - При натиснені цієї кнопки виділені ноти будуть вирізані до буферу. Пізніше ви зможете вставити їх в будь-яке місце будь-якого шаблону за допомогою кнопки "Вставити". - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - При натиснені цієї кнопки виділені ноти буде скопійовано до буферу. Пізніше ви зможете вставити їх в будь-яке місце будь-якого шаблону за допомогою кнопки "Вставити". - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - При натиснені цієї кнопки ноти з буферу будуть вставлені в перший видимий такт. - - - + Timeline controls Управління хронологією - + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + Zoom and note controls Управління масштабом і нотами - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - Цим контролюється масштаб осі. Це може бути корисно для спеціальних завдань. Для звичайного редагування, масштаб слід встановлювати за найменшою нотою. + + Horizontal zooming + - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - "Q" позначає квантування і контролює розмір нотної сітки і контрольні точки тяжіння. З меншою величиною квантування, можна малювати короткі ноти в редаторі нот і більш точно контролювати точки в редакторі Автоматизації. + + Vertical zooming + - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - Дозволяє вибрати довжину нової ноти. "Остання Нота" означає, що LMMS буде використовувати довжину ноти, зміненої в останній раз + + Quantization + Квантування - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - Функція безпосередньо пов'язана з контекстним меню на віртуальній клавіатурі зліва в нотному редакторі. Після того, як обраний масштаб у випадаючому меню, можна натиснути правою кнопкою у віртуальній клавіатурі і вибрати "Mark Current Scale" (Відзначити поточний масштаб). LMMS підсвітить всі ноти які лежать в обраному масштабі для обраної клавіші! + + Note length + - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - Дозволяє вибрати акорд, який LMMS потім зможе намалювати або підсвітити. У цьому меню можна знайти найбільш популярні акорди. Після того, як ви вибрали акорд, натисніть в будь-якому місці, щоб поставити його, а правим кліком по віртуальній клавіатурі відкривається контекстне меню і підсвічування акорду. Для повернення в режим однієї ноти потрібно вибрати "Без акорду" в цьому випадаючому меню. + + Key + - - + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + Piano-Roll - %1 Нотний редактор - %1 - - - Piano-Roll - no pattern + + + 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»! @@ -7307,178 +10165,1146 @@ Reason: "%2" 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 + + + + + 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 + + + + + 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 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! LMMS плагін %1 не має опису плагіна з ім'ям %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 + 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 Напів&жирний - + %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 Колір... @@ -7486,98 +11312,125 @@ Reason: "%2" ProjectRenderer - - WAV-File (*.wav) - Файл WAV (*.wav) - - - - Compressed OGG-File (*.ogg) - Стиснутий файл OGG (*.ogg) - - - FLAC-File (*.flac) + + WAV (*.wav) - - Compressed MP3-File (*.mp3) - Стиснутий MP3-файл (* .mp3) + + 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 Файл: %1 @@ -7587,10 +11440,18 @@ Reason: "%2" Файл: + + RecentProjectsMenu + + + &Recently Opened Projects + &Нещодавно відкриті проекти + + RenameDialog - + Rename... Перейменувати ... @@ -7604,8 +11465,8 @@ Reason: "%2" - Input Gain: - Вхідне підсилення: + Input gain: + Вхідне підсилення: @@ -7634,15 +11495,15 @@ Reason: "%2" - Output Gain: - Вихідне підсилення: + Output gain: + Вихідне підсилення: ReverbSCControls - Input Gain + Input gain Вхідне підсилення @@ -7657,126 +11518,601 @@ Reason: "%2" - Output Gain + 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 Аудіофайли обмежено розміром в %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) - SampleTCOView + SampleClipView - - double-click to select sample - Виберіть запис подвійним натисненням миші + + 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 Доріжка запису @@ -7784,609 +12120,795 @@ Reason: "%2" 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 - - Setup LMMS - Налаштування LMMS + + Reset to default value + - - - General settings - Загальні налаштування - - - - BUFFER SIZE - РОЗМІР БУФЕРУ - - - - - Reset to default-value - Відновити значення за замовчуванням - - - - MISC - РІЗНЕ - - - - Enable tooltips - Включити підказки - - - - Show restart warning after changing settings - Показувати попередження про перезапуск при зміні налаштувань - - - - Display volume as dBFS - Відображати гучність в децибелах - - - - Compress project files per default - За замовчуванням стискати файли проектів - - - - One instrument track window mode - Режим вікна однієї інструментальної доріжки - - - - HQ-mode for output audio-device - Режим високої якості для виведення звуку - - - - Compact track buttons - Стиснути кнопки доріжки - - - - Sync VST plugins to host playback - Синхронізувати VST плагіни з хостом відтворення - - - - Enable note labels in piano roll - Включити позначення нот у музичному редакторі - - - - Enable waveform display by default - Включити відображення форми хвилі за замовчуванням - - - - Keep effects running even without input - Продовжувати роботу ефектів навіть без вхідного сигналу - - - - Create backup file when saving a project - Створю запасний файл при збереженні проекту - - - - Reopen last project on start - Відкривати останній проект при запуску - - - + Use built-in NaN handler Використовувати вбудований обробник NaN - - PLUGIN EMBEDDING - ВСТАНОВИТИ УПРАВЛІННЯ + + 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 - - LANGUAGE - МОВА + + Keep plugin windows on top when not embedded + Тримати вікна плагінів наверху, коли вони від'єднані - - - Paths - Шляхи + + Sync VST plugins to host playback + Синхронізувати VST плагіни з хостом відтворення - - Directories - Каталоги + + 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 - - Themes directory - Каталог тем + + VST plugins directory + - - Background artwork - Фонове зображення + + LADSPA plugins directories + - - VST-plugin directory - Каталог модулів VST - - - - GIG directory - Каталог GIG - - - + SF2 directory Каталог SF2 - - LADSPA plugin directories - Каталог модулів LADSPA + + Default SF2 + - - STK rawwave directory - Каталог STK rawwave + + GIG directory + Каталог GIG - - Default Soundfont File - Основний Soundfont файл + + Theme directory + - - - Performance settings - Налаштування продуктивності + + Background artwork + Фонове зображення - - Auto save - Авто-збереження + + Some changes require restarting. + - - Enable auto-save - Увімкнути автоматичне збереження + + Autosave interval: %1 + - - Allow auto-save while playing - Дозволити автоматичне збереження під час відтворення + + Choose the LMMS working directory + - - UI effects vs. performance - Візуальні ефекти / продуктивність + + Choose your VST plugins directory + - - Smooth scroll in Song Editor - Плавне прокручування в музичному редакторі + + Choose your LADSPA plugins directory + - - Show playback cursor in AudioFileProcessor - Показувати покажчик відтворення в процесорі аудіо файлів + + Choose your default SF2 + - - - Audio settings - Параметри звуку + + Choose your theme directory + - - AUDIO INTERFACE - ЗВУКОВА СИСТЕМА + + Choose your background picture + - - - MIDI settings - Параметри MIDI + + + Paths + Шляхи - - MIDI INTERFACE - ІНТЕРФЕЙС MIDI - - - + OK ОК - + Cancel Скасувати - - Restart LMMS - Перезапустіть LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - Врахуйте, що більшість налаштувань не вступлять в силу до перезапуску програми! - - - + Frames: %1 Latency: %2 ms Фрагментів: %1 Затримка: %2 мс - - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - Тут ви можете налаштувати розмір внутрішнього звукового буфера LMMS. Менші значення дають менший час відгуку програми, але підвищують споживання ресурсів - це особливо помітно на старих машинах і системах, ядро ​​яких не підтримує пріоритету реального часу. Якщо спостерігається переривчастий звук, спробуйте збільшити розмір буферу. - - - - Choose LMMS working directory - Вибір робочого каталогу LMMS - - - + Choose your GIG directory Виберіть каталог GIG - + Choose your SF2 directory Виберіть каталог SF2 - - Choose your VST-plugin directory - Вибір свого каталогу для модулів VST - - - - Choose artwork-theme directory - Вибір каталогу з темою оформлення для LMMS - - - - Choose LADSPA plugin directory - Вибір каталогу з модулями LADSPA - - - - Choose STK rawwave directory - Вибір каталогу STK rawwave - - - - Choose default SoundFont - Вибрати головний SoundFont - - - - Choose background artwork - Вибрати фонове зображення - - - + minutes хвилин - + minute хвилина - + Disabled Вимкнено + + + SidInstrument - - Auto-save interval: %1 - Інтервал автоматичного збереження: %1 + + Cutoff frequency + Зріз частоти - - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - Встановіть проміжок часу автоматичного резервного копіювання в %1. -Не забудьте також зберегти проект вручну. Ви можете вимкнути автозбереження, інколи деяким старим системи тяжко в таком режимі. + + Resonance + Резонанс - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - Будь ласка, виберіть звукову систему. Залежно від конфігурації під час компілювання програми, ви можете використовувати ALSA, JACK, OSS та інші. У нижній частині вікна налаштування можна задати специфічні параметри обраної системи. + + Filter type + Тип фільтру - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - Будь ласка, виберіть інтерфейс MIDI. Залежно від конфігурації під час компілювання програми, ви можете використовувати ALSA, OSS та інші. У нижній частині вікна налаштування можна задати специфічні параметри обраного інтерфейсу. + + 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 + + + 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 Повідомлення про помилку в LMMS - - 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 - Всі типи файлів - - - - Empty project - Проект порожній + (repeated %1 times) + - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Проект нічого не містить, так що й експортувати нічого. Спочатку додайте хоча б одну доріжку за допомогою музичного редактора! - - - - Select directory for writing exported tracks... - Виберіть теку для запису експортованих доріжок ... - - - - - untitled - Без назви - - - - - Select file for project-export... - Вибір файлу для експорту проекту ... - - - - Save project - Зберегти проект - - - - MIDI File (*.mid) - MIDI-файл (* mid) - - - - The following errors occured while loading: - Наступні помилки виникли при завантаженні: + + 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. Неможливо відкрити файл %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 to write to this file. Please make sure you have write-access to the file and try again. - Неможливо відкрити %1 для запису, можливо, немає дозволу на запис в цей файл, будь-ласка упевніться, що є доступ до цього файлу і спробуйте знову. + + 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 Різниця версій - - This %1 was created with LMMS %2. - Цей %1 було створено в LMMS версії %2 - - - + template шаблон - + project проект - + Tempo Темп - - TEMPO/BPM - ТЕМП/BPM + + TEMPO + - - tempo of song - Темп музики + + Tempo in BPM + - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - Це значення задає темп музики в ударах в хвилину (англ. аббр. BPM). На кожен такт приходить чотири удари, так що темп в ударах в хвилину фактично вказує, скільки чвертей такту програється за хвилину (або, що те ж, кількість тактів, що програються за чотири хвилини). - - - + High quality mode Висока якість - - + + + Master volume Основна гучність - - master volume - основна гучність - - - - + + + Master pitch Основна тональність - - master pitch - основна тональність - - - + Value: %1% Значення: %1% - + Value: %1 semitones Значення: %1 півтон(у/ів) @@ -8394,131 +12916,149 @@ Remember to also save your project manually. You can choose to disable saving wh 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) Зупинити відтворення (Пробіл) - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - Натисніть, щоб прослухати створену мелодію. Відтворення почнеться з позиції курсора (зелений трикутник); ви можете рухати його під час програвання. - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Натисніть сюди, якщо хочете зупинити відтворення мелодії. Курсор при цьому буде встановлений на початок композиції. - - - + 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 Управління масштабом - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Лінійний спектр + + Horizontal zooming + - - Linear Y axis - Лінійна вісь ординат + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControls + StepRecorderWidget - - Linear spectrum - Лінійний спектр + + Hint + Підказка - - Linear Y axis - Лінійна вісь ординат - - - - Channel mode - Режим каналу + + Move recording curser using <Left/Right> arrows + SubWindow - + Close Закрити - + Maximize Розгорнути - + Restore Відновити @@ -8526,17 +13066,25 @@ Remember to also save your project manually. You can choose to disable saving wh TabWidget - + Settings for %1 Налаштування для %1 + + TemplatesMenu + + + New from template + Новий проект по шаблону + + TempoSyncKnob - + Tempo Sync Синхронізація темпу @@ -8586,42 +13134,42 @@ Remember to also save your project manually. You can choose to disable saving wh Своя... - + 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 ноти @@ -8630,36 +13178,36 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units - натисніть для зміни одиниць часу + Time units + - + MIN ХВ - + SEC С - + MSEC МС - + BAR БАР - + BEAT БІТ - + TICK ТІК @@ -8667,56 +13215,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - - Enable/disable auto-scrolling - Увімк/вимк автопрокрутку + + Auto scrolling + - - Enable/disable loop-points - Увімк/вимк точки петлі + + Loop points + - - After stopping go back to begin - Після зупинки переходити до початку + + 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>, щоб прибрати прилипання точок циклу. - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Зажміть <Shift> щоб змістити початок точок циклу; Натисніть <%1>, щоб прибрати прилипання точок циклу. - Track - + Mute Тиша - + Solo Соло @@ -8754,13 +13296,13 @@ Please make sure you have read-permission to the file and the directory containi - + Cancel Скасувати - + Please wait... Зачекайте будь-ласка ... @@ -8780,337 +13322,436 @@ Please make sure you have read-permission to the file and the directory containi Завантаження треку %1 (%2/з %3) - + Importing MIDI-file... Імпортую файл MIDI... - TrackContentObject + Clip - + Mute Тиша - TrackContentObjectView + ClipView - + Current position Позиція - - - Hint - Підказка - - - - Press <%1> and drag to make a copy. - Натисніть <%1> і перетягніть, щоб створити копію. - - - + Current length Тривалість - - Press <%1> for free resizing. - Для вільної зміни розміру натисніть <%1>. - - - - + + %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 + + + Paste + Вставити + TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Затисніть <%1> і натискайте мишку під час руху, щоб почати нову перезбірку. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + - - Actions for this track - Дії для цієї доріжки + + Actions + - + + Mute Тиша - - + + Solo Соло - - Mute this track - Відключити доріжку + + 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 Очистити цю доріжку - - FX %1: %2 + + Channel %1: %2 ЕФ %1: %2 - - Assign to new FX Channel + + 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 - - Use phase modulation for modulating oscillator 1 with oscillator 2 - Модулювати фазу осциллятора 2 сигналом з 1 + + Modulate phase of oscillator 1 by oscillator 2 + - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Модулювати амплітуду осциллятора 2 сигналом з 1 + + Modulate amplitude of oscillator 1 by oscillator 2 + - - Mix output of oscillator 1 & 2 - Змішати виходи 1 і 2 осцилляторів + + Mix output of oscillators 1 & 2 + - + Synchronize oscillator 1 with oscillator 2 Синхронізувати 1 осциллятор по 2 - - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Модулювати частоту осциллятора 2 сигналом з 1 + + Modulate frequency of oscillator 1 by oscillator 2 + - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Модулювати фазу осциллятора 3 сигналом з 2 + + Modulate phase of oscillator 2 by oscillator 3 + - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Модулювати амплітуду осциллятора 3 сигналом з 2 + + Modulate amplitude of oscillator 2 by oscillator 3 + - - Mix output of oscillator 2 & 3 - Поєднати виходи осцилляторів 2 і 3 + + Mix output of oscillators 2 & 3 + - + Synchronize oscillator 2 with oscillator 3 Синхронізувати осциллятор 2 і 3 - - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Модулювати частоту осциллятора 3 сигналом з 2 + + Modulate frequency of oscillator 2 by oscillator 3 + - + Osc %1 volume: Гучність осциллятора %1: - - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Ця ручка встановлює гучність осциллятора %1. Якщо 0, то осциллятор вимикається, інакше буде чутно настільки голосно, настільки тут встановлено. - - - + Osc %1 panning: Баланс для осциллятора %1: - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - Регулятор стереобалансу осциллятора %1. Величина -100 позначає, що 100% сигналу йде в лівий канал, а 100 - в правий. - - - + Osc %1 coarse detuning: Грубе підстроювання осциллятора %1: - + semitones півтон(а,ів) - - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - Ця ручка встановлює грубе підстроювання осцилятора %1. Ви можете пістроїти осцилятор на 24 півтони (2 октави) вгору і вниз. Це корисно для створення звуків з акорду. - - - + Osc %1 fine detuning left: Точне підстроювання лівого каналу осциллятора %1: - - + + cents Відсотки - - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Ця ручка встановлює точне підстроювання для лівого каналу осциллятора %1. Підстроювання задається в діапазоні від -100 сотих до +100 сотих. Це корисно для створення "насичених" звуків. - - - + Osc %1 fine detuning right: Точна підстройка правого канала осциллятора %1: - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Ця ручка встановлює точне підстроювання для правого каналу осциллятора %1. Підстроювання задається в діапазоні від -100 сотих до +100 сотих. Це корисно для створення "насичених" звуків. - - - + Osc %1 phase-offset: Зміщення фази осциллятора %1: - - + + degrees градуси - - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Ця ручка встановлює початкову фазу осциллятора %1, т. б. точку, з якої осциллятор починає виробляти сигнал. Наприклад, якщо ви задали синусоїдальну форму сигналу і початкову фазу 180º, хвиля спочатку піде вниз, а не вгору. Те ж саме для сигналу прямокутної форми. - - - + Osc %1 stereo phase-detuning: Підстроювання стерео фази осциллятора %1: - - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Ця ручка встановлює фазове підстроювання осциллятора %1 між каналами, тобто різницю фаз між лівим і правим каналами. Це зручно для створення розширення стереоефектів. + + Sine wave + Синусоїда - - Use a sine-wave for current oscillator. - Генерувати гармонійний (синусоїдальний) сигнал. + + Triangle wave + Трикутник - - Use a triangle-wave for current oscillator. - Генерувати трикутний сигнал. + + Saw wave + Зигзаг - - Use a saw-wave for current oscillator. - Генерувати зигзагоподібний сигнал. + + Square wave + Квадратна хвиля - - Use a square-wave for current oscillator. - Генерувати квадрат. + + Moog-like saw wave + - - Use a moog-like saw-wave for current oscillator. - Використовувати муг-зигзаг для цього осциллятора. + + Exponential wave + Експоненціальна хвиля - - Use an exponential wave for current oscillator. - Використовувати експонентний сигнал для цього осциллятора. + + White noise + Білий шум - - Use white-noise for current oscillator. - Генерувати білий шум. + + User-defined wave + + + + + VecControls + + + Display persistence amount + - - Use a user-defined waveform for current oscillator. - Задати форму сигналу. + + 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? вже існує. Замінити його? @@ -9118,130 +13759,77 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - - Open other VST-plugin - Відкрити інший VST плагін + + + Open VST plugin + - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - Відкрити інший модуль VST. Після натискання на кнопку з'явиться стандартний діалог вибору файлу, де ви зможете вибрати потрібний модуль. + + Control VST plugin from LMMS host + - - Control VST-plugin from LMMS host - Управління VST плагіном через LMMS хост + + Open VST plugin preset + - - Click here, if you want to control VST-plugin from host. - Натисніть тут, для контролю VST плагіном через хост. - - - - Open VST-plugin preset - Відкрити передустановку VST плагіна - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Відкрити іншу .fxp . fxb передустановку VST. - - - + Previous (-) Попередній <-> - - - Click here, if you want to switch to another VST-plugin preset program. - Перемикання на іншу передустановку програми VST плагіна. - - - + Save preset Зберегти передустановку - - Click here, if you want to save current VST-plugin preset program. - Зберегти поточну передустановку програми VST плагіна. - - - + Next (+) Наступний <+> - - Click here to select presets that are currently loaded in VST. - Вибір із уже завантажених в VST предустановок. - - - + Show/hide GUI Показати / приховати інтерфейс - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - Приховує / показує графічний користувальницький інтерфейс (GUI) обраного модуля VST. - - - + Turn off all notes Вимкнути всі ноти - - Open VST-plugin - Відкрити модуль VST - - - + DLL-files (*.dll) Бібліотеки DLL (*.dll) - + EXE-files (*.exe) Програми EXE (*.exe) - - No VST-plugin loaded - Модуль VST не завантажений + + No VST plugin loaded + - + Preset Передустановка - + by від - + - VST plugin control - Управління VST плагіном - - VisualizationWidget - - - click to enable/disable visualization of master-output - Натисніть, щоб увімкнути/вимкнути візуалізацію головного виводу - - - - Click to enable - Натисніть для включення - - VstEffectControlDialog @@ -9251,63 +13839,37 @@ Please make sure you have read-permission to the file and the directory containi - Control VST-plugin from LMMS host - Управління VST плагіном через LMMS хост + Control VST plugin from LMMS host + - - Click here, if you want to control VST-plugin from host. - Натисніть тут, для контролю VST плагіном через хост. + + Open VST plugin preset + - - Open VST-plugin preset - Відкрити передустановку VST плагіна - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - Відкрити іншу .fxp . fxb передустановку VST. - - - + Previous (-) Попередній <-> - - - Click here, if you want to switch to another VST-plugin preset program. - Перемикання на іншу передустановку програми VST плагіна. - - - + Next (+) Наступний <+> - - Click here to select presets that are currently loaded in VST. - Вибір із уже завантажених в VST предустановок. - - - + Save preset Зберегти налаштування - - Click here, if you want to save current VST-plugin preset program. - Зберегти поточну передустановку програми VST плагіна. - - - - + + Effect by: Ефекти по: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -9315,59 +13877,49 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -9385,147 +13937,147 @@ Please make sure you have read-permission to the file and the directory containi 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 Обраний графік @@ -9533,3494 +14085,2249 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - - - - + + + + Volume Гучність - - - - + + + + Panning Баланс - - - - + + + + Freq. multiplier Множник частоти - - - - + + + + Left detune Ліве підстроювання - - - - - - - - + + + + + + + + cents відсотків - - - - + + + + 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 with output of A2 - Модулювати амплітуду А1 виходом з А2 + + Modulate amplitude of A1 by output of A2 + - - Ring-modulate A1 and A2 - Кільцева модуляція А1 і А2 + + Ring modulate A1 and A2 + - - Modulate phase of A1 with output of A2 - Модулювати фазу А1 виходом з А2 + + Modulate phase of A1 by output of A2 + - + Mix output of B2 to B1 Змішати виходи В2 до В1 - - Modulate amplitude of B1 with output of B2 - Модулювати амплітуду В1 виходом з В2 + + Modulate amplitude of B1 by output of B2 + - - Ring-modulate B1 and B2 - Кільцева модуляція В1 і В2 + + Ring modulate B1 and B2 + - - Modulate phase of B1 with output of B2 - Модулювати фазу В1 виходом з В2 + + Modulate phase of B1 by output of B2 + - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. Тут ви можете малювати власний сигнал. - + Load waveform Завантаження форми звуку - - Click to load a waveform from a sample file - Натисніть для завантаження форми звуку з файлу із зразком + + Load a waveform from a sample file + - + Phase left Фаза зліва - - Click to shift phase by -15 degrees - Натисніть, щоб змістити фазу на -15 градусів + + Shift phase by -15 degrees + - + Phase right Фаза праворуч - - Click to shift phase by +15 degrees - Натисніть, щоб змістити фазу на +15 градусів + + Shift phase by +15 degrees + - + + Normalize Нормалізувати - - Click to normalize - Натисніть для нормалізації - - - + + Invert Інвертувати - - Click to invert - Натисніть щоб інвертувати - - - + + Smooth Згладити - - Click to smooth - Натисніть щоб згладити - - - + + Sine wave Синусоїда - - Click for sine wave - Згенерувати гармонійний (синусоїдальний) сигнал - - - - + + + Triangle wave Трикутна хвиля - - Click for triangle wave - Згенерувати трикутний сигнал + + Saw wave + Зигзаг - - Click for saw wave - Згенерувати зигзагоподібний сигнал - - - + + Square wave Квадратна хвиля + + + Xpressive - - Click for square wave - Згенерувати квадратний сигнал + + Selected graph + Обраний графік + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + - ZynAddSubFxInstrument + XpressiveView - - 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 GAIN - - - - Resonance center frequency: - Частота центру резонансу: - - - - RES CF - RES CF - - - - Resonance bandwidth: - Ширина смуги резонансу: - - - - RES BW - RES BW - - - - Forward MIDI Control Changes - Переслати зміну подій MiDi управління - - - - Show GUI - Показати інтерфейс - - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - Натисніть сюди щоб сховати чи показати графічний інтерфейс ZynAddSubFX. - - - - 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 - - - Samplelength - Тривалість - - - - bitInvaderView - - - Sample Length - Тривалість запису - - - + Draw your own waveform here by dragging your mouse on this graph. Тут ви можете малювати власний сигнал. - - Sine wave - Синусоїда - - - - Click for a sine-wave. - Генерувати гармонійний (синусоїдальний) сигнал. - - - - Triangle wave - Трикутник - - - - Click here for a triangle-wave. - Згенерувати трикутний сигнал. - - - - Saw wave - Зигзаг - - - - Click here for a saw-wave. - Згенерувати зигзаг. - - - - Square wave - Квадрат - - - - Click here for a square-wave. - Згенерувати квадратний сигнал. - - - - White noise wave - Білий шум - - - - Click here for white-noise. - Згенерувати білий шум. - - - - User defined wave - Користувацька - - - - Click here for a user-defined shape. - Задати форму сигналу вручну. - - - - Smooth - Згладити - - - - Click here to smooth waveform. - Клацніть щоб згладити форму сигналу. - - - - Interpolation - Інтерполяція - - - - Normalize - Нормалізувати - - - - dynProcControlDialog - - - INPUT - ВХІД - - - - Input gain: - Вхідне підсилення: - - - - OUTPUT - ВИХІД - - - - Output gain: - Вихідне підсилення: - - - - ATTACK - ВСТУП - - - - Peak attack time: - Час пікової атаки: - - - - RELEASE - ЗМЕНШЕННЯ - - - - Peak release time: - Час відпуску піку: - - - - Reset waveform - Скидання сигналу - - - - Click here to reset the wavegraph back to default - Натисніть тут, щоб скинути граф хвилі назад за замовчуванням - - - - Smooth waveform - Згладжений сигнал - - - - Click here to apply smoothing to wavegraph - Натисніть тут, щоб застосувати згладжування графа хвилі - - - - Increase wavegraph amplitude by 1dB - Збільште амплітуди графа хвилі на 1дБ - - - - Click here to increase wavegraph amplitude by 1dB - Натисніть тут, щоб збільшити амплітуду графа хвилі на 1дБ - - - - Decrease wavegraph amplitude by 1dB - Зменшення амплітуди графа хвилі на 1дБ - - - - Click here to decrease wavegraph amplitude by 1dB - Натисніть тут, щоб зменшити амплітуду графа хвилі на 1дБ - - - - Stereomode Maximum - Максимальний стереорежим - - - - Process based on the maximum of both stereo channels - Процес заснований на максимумі від обох каналів - - - - Stereomode Average - Середній стереорежим - - - - Process based on the average of both stereo channels - Процес заснований на середньому обох каналів - - - - Stereomode Unlinked - Розімкнений стереорежим - - - - Process each stereo channel independently - Обробляє кожен стерео канал незалежно - - - - dynProcControls - - - Input gain - Вхідне підсилення - - - - Output gain - Вихідне підсилення - - - - Attack time - Час вступу - - - - Release time - Час зменшення - - - - Stereo mode - Стерео режим - - - - expressiveView - + Select oscillator W1 + Select oscillator W2 + Select oscillator W3 - Select OUTPUT 1 + + Select output O1 - Select OUTPUT 2 + + Select output O2 + Open help window + + Sine wave Синусоїда - Click for a sine-wave. - Генерувати гармонійний (синусоїдальний) сигнал. - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. + + + Moog-saw wave + + Exponential wave Експоненціальна хвиля - Click for an exponential wave. - - - + + Saw wave Зигзаг - Click here for a saw-wave. - Згенерувати зигзаг. - - - User defined wave - Користувацька - - - Click here for a user-defined shape. - Задати форму сигналу вручну. + + + User-defined wave + + + Triangle wave Трикутник - Click here for a triangle-wave. - Згенерувати трикутний сигнал. - - + + Square wave Квадратна хвиля - Click here for a square-wave. - Згенерувати квадратний сигнал. - - - White noise wave + + + White noise Білий шум - Click here for white-noise. - Згенерувати білий шум. - - + WaveInterpolate + ExpressionValid + General purpose 1: + General purpose 2: + General purpose 3: + O1 panning: + O2 panning: + Release transition: + Smoothness - fxLineLcdSpinBox + ZynAddSubFxInstrument - - Assign to: - Призначити до: + + Portamento + Портаменто - - New FX Channel - Новий ефект каналу + + 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 + KickerInstrument - + Start frequency Початкова частота - + End frequency Кінцева частота - + Length Довжина - - Distortion Start - Початкове спотворення + + Start distortion + - - Distortion End - Кінцеве спотворення + + End distortion + - + Gain Підсилення - - Envelope Slope - Нахил обвідної + + Envelope slope + - + Noise Шум - + Click Натисніть - - Frequency Slope - Частота нахилу + + Frequency slope + - + Start from note Почати з замітки - + End to note Закінчити заміткою - kickerInstrumentView + KickerInstrumentView - + Start frequency: Початкова частота: - + End frequency: Кінцева частота: - - Frequency Slope: - Частота нахилу: + + Frequency slope: + - + Gain: Підсилення: - - Envelope Length: - Довжина обвідної: + + Envelope length: + - - Envelope Slope: - Нахил обвідної: + + Envelope slope: + - + Click: Натиснення: - + Noise: Шум: - - Distortion Start: - Початкове спотворення: + + Start distortion: + - - Distortion End: - Кінцеве спотворення: + + End distortion: + - ladspaBrowserView + LadspaBrowserView - - + + Available Effects Доступні ефекти - - + + Unavailable Effects Недоступні ефекти - - + + Instruments Інструменти - - + + Analysis Tools Аналізатори - - + + Don't know Невідомі - - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - У цьому вікні показана інформація про всі модулі LADSPA, які виявила LMMS. Вони розділені на п'ять категорій, залежно від назв і типів портів. - -Доступні ефекти - це ті, які можуть бути використані в LMMS. Щоб ефект LADSPA міг бути використаний, він повинен, по-перше, бути власне ефектом, т. б. мати як вхідні так і вихідні канали. LMMS в якості вхідного каналу сприймає аудіопорти, що містять у назві "in", а вихідні вгадує по підстрочці "out". Для використання в LMMS число вхідних каналів має збігатися з числом вихідних, і ефект повинен мати можливість використання в реальному часі. - -Недоступні ефекти - це модулі LADSPA, розпізнані як ефекти, однак або з незбіжною кількістю вхідних/вихідних каналів, або не призначені для використання в реальному часі. - -Інструменти - це модулі, у яких є тільки вихідні канали. - -Аналізатори - це модулі, що володіють лише вхідними каналами. - -Невідомі - модулі, у яких не було виявлено ні вхідних, ні вихідних каналів. - -Подвійне клацання лівою кнопкою миші по модулю дасть інформацію по його портах. - - - + Type: Тип: - ladspaDescription + LadspaDescription - + Plugins Модулі - + Description Опис - ladspaPortDialog + LadspaPortDialog - + Ports Порти - + Name І'мя - + Rate Частота вибірки - + Direction Напрямок - + Type Тип - + Min < Default < Max Менше < Стандарт <Більше - + Logarithmic Логарифмічний - + SR Dependent Залежність від SR - + Audio Аудіо - + Control Управління - + Input Ввід - + Output Вивід - + Toggled Увімкнено - + Integer Ціле - + Float Дробове - - + + Yes Так - lb302Synth + 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 + 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 + MalletsInstrument - + Hardness Жорсткість - + Position Положення - - Vibrato Gain - Посилення вібрато + + Vibrato gain + - - Vibrato Freq - Частота вібрато + + Vibrato frequency + - - Stick Mix - Зведення рученят + + Stick mix + - + Modulator Модулятор - + Crossfade Перехід - - LFO Speed + + LFO speed Швидкість LFO - - LFO Depth - Глибина LFO + + LFO depth + - + ADSR ADSR - + Pressure Тиск - + Motion Рух - + Speed Швидкість - + Bowed Нахил - + Spread Розкид - + Marimba Марімба - + Vibraphone Віброфон - + Agogo Дискотека - - Wood1 - Дерево1 + + Wood 1 + - + Reso Ресо - - Wood2 - Дерево2 + + Wood 2 + - + Beats Удари - - Two Fixed - Два фіксованих + + Two fixed + - + Clump Важка хода - - Tubular Bells - Трубні дзвони + + Tubular bells + - - Uniform Bar - Рівномірні смуги + + Uniform bar + - - Tuned Bar - Підстроєні смуги + + Tuned bar + - + Glass Скло - - Tibetan Bowl - Тибетські кулі + + Tibetan bowl + - malletsInstrumentView + 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: Положення: - - Vib Gain - Підс. вібрато + + Vibrato gain + - - Vib Gain: - Підс. вібрато: + + Vibrato gain: + - - Vib Freq - Част. віб + + Vibrato frequency + - - Vib Freq: - Вібрато: + + Vibrato frequency: + - - Stick Mix - Зведення рученят + + Stick mix + - - Stick Mix: - Зведення рученят: + + Stick mix: + - + Modulator Модулятор - + Modulator: Модулятор: - + Crossfade Перехід - + Crossfade: Перехід: - - LFO Speed + + LFO speed Швидкість LFO - - LFO Speed: + + LFO speed: Швидкість LFO: - - LFO Depth - Глибина LFO + + LFO depth + - - LFO Depth: - Глибина LFO: + + LFO depth: + - + ADSR ADSR - + ADSR: ADSR: - + Pressure Тиск - + Pressure: Тиск: - + Speed Швидкість - + Speed: Швидкість: - manageVSTEffectView + ManageVSTEffectView - + - VST parameter control Управление VST параметрами - - VST Sync - VST синхронізація + + VST sync + - - Click here if you want to synchronize all parameters with VST plugin. - Натисніть тут для синхронізації всіх параметрів VST плагіна. - - - - + + Automated Автоматизовано - - Click here if you want to display automated parameters only. - Натисніть тут, якщо хочете бачити тільки автоматизовані параметри. - - - + Close Закрити - - - Close VST effect knob-controller window. - Закрити вікно управління регуляторами VST плагіна. - - manageVestigeInstrumentView + ManageVestigeInstrumentView - - + + - VST plugin control Управління VST плагіном - + VST Sync VST синхронізація - - Click here if you want to synchronize all parameters with VST plugin. - Натисніть тут для синхронізації всіх параметрів VST плагіна. - - - - + + Automated Автоматизовано - - Click here if you want to display automated parameters only. - Натисніть тут, якщо хочете бачити тільки автоматизовані параметри. - - - + Close Закрити - - - Close VST plugin knob-controller window. - Закрити вікно управління регуляторами VST плагіна. - - opl2instrument + OrganicInstrument - - 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 Multiple - ОП 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 Multiple - ОП 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 - Глибина тремоло - - - - opl2instrumentView - - - - Attack - Вступ - - - - - Decay - Згасання - - - - - Release - Зменшення - - - - - Frequency multiplier - Множник частоти - - - - organicInstrument - - + Distortion Спотворення - + Volume Гучність - organicInstrumentView + OrganicInstrumentView - + Distortion: Спотворення: - - The distortion knob adds distortion to the output of the instrument. - Спотворення додає спотворення до виходу інструменту. - - - + Volume: Гучність: - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - Регулятор гучності виведення інструменту, підсумовується з регулятором гучності вікна інструменту. - - - + Randomise Випадково - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - Кнопка рандомізації випадково встановлює всі регулятори, крім гармонік, основної гучності і регулятора спотворень. - - - - + + Osc %1 waveform: Форма сигналу осциллятора %1: - + Osc %1 volume: Гучність осциллятора %1: - + Osc %1 panning: Баланс для осциллятора %1: - + Osc %1 stereo detuning Осц %1 стерео расстройка - + cents соті - + Osc %1 harmonic: Осц %1 гармоніка: - FreeBoyInstrument + PatchesDialog - - Sweep time - Час поширення - - - - Sweep direction - Напрям поширення - - - - Sweep RtShift amount - Кіл-ть розгортки зсуву вправо - - - - - Wave Pattern Duty - Робоча форма хвилі - - - - 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 - Час розгортки - - - - The amount of increase or decrease in frequency - Кіл-ть збільшення або зменшення в частоті - - - - Sweep RtShift amount: - Кіл-ть розгортки зміщення вправо: - - - - Sweep RtShift amount - Кіл-ть розгортки зсуву вправо - - - - The rate at which increase or decrease in frequency occurs - Темп прояви збільшення або зниження в частоті - - - - - Wave pattern duty: - Робоча форма хвилі: - - - - Wave Pattern Duty - Робоча форма хвилі - - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - Робочий цикл це коефіцієнт тривалості (часу) включеного сигналу відносно всього періоду сигналу. - - - - - Square Channel 1 Volume: - Гучність квадратного каналу 1: - - - - Square Channel 1 Volume - Гучність квадратного каналу 1 - - - - - - Length of each step in sweep: - Довжина кожного кроку в розгортці: - - - - - - Length of each step in sweep - Довжина кожного кроку в розгортці - - - - - - The delay between step change - Затримка між змінами кроку - - - - Wave pattern duty - Робоча форма хвилі - - - - Square Channel 2 Volume: - Гучність квадратного каналу 2: - - - - - Square Channel 2 Volume - Гучність квадратного каналу 2 - - - - Wave Channel Volume: - Гучність хвильового каналу: - - - - - Wave 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 - Зміщення ширини регістра - - - - Channel1 to SO1 (Right) - Канал1 в SO1 (Правий) - - - - Channel2 to SO1 (Right) - Канал2 в SO1 (Правий) - - - - Channel3 to SO1 (Right) - Канал3 в SO1 (Правий) - - - - Channel4 to SO1 (Right) - Канал4 в SO1 (Правий) - - - - Channel1 to SO2 (Left) - Канал1 в SO2 (Лівий) - - - - Channel2 to SO2 (Left) - Канал2 в SO2 (Лівий) - - - - Channel3 to SO2 (Left) - Канал3 в SO2 (Лівий) - - - - Channel4 to SO2 (Left) - Канал4 в SO2 (Лівий) - - - - Wave Pattern - Малюнок хвилі - - - - Draw the wave here - Малювати хвилю тут - - - - patchesDialog - - + Qsynth: Channel Preset Q-Синтезатор: Канал передустановлено - + Bank selector Селектор банку - + Bank Банк - + Program selector Селектор програм - + Patch Патч - + Name І'мя - + OK ОК - + Cancel Скасувати - pluginBrowser + Sf2Instrument - - 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 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 - Рідний фланжер плагін - - - - 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 tb303 - Незавершена монофонічна імітація tb303 - - - - 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 - Синтезатор звуків нашталт органу - - - - Emulation of GameBoy (TM) APU - Емуляція GameBoy (ТМ) - - - - 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. - - - - Graphical spectrum analyzer plugin - Плагін графічного аналізу спектру - - - - 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 - Три потужних генераторів можна модулювати декількома способами - - - - 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 - плагін формування сигналу - - - - Embedded ZynAddSubFX - Вбудований ZynAddSubFX - - - Mathematical expression parser - - - - - sf2Instrument - - + Bank Банк - + Patch Патч - + Gain Посилення - + Reverb Луна - - Reverb Roomsize - Об'єм луни + + Reverb room size + - - Reverb Damping - Загасання луни + + Reverb damping + - - Reverb Width - Довгота луни + + Reverb width + - - Reverb Level - Рівень луни + + Reverb level + - + Chorus Хор (Приспів) - - Chorus Lines - Лінії хору + + Chorus voices + - - Chorus Level - Рівень хору + + Chorus level + - - Chorus Speed - Швидкість хору + + Chorus speed + - - Chorus Depth - Глибина хору + + Chorus depth + - + A soundfont %1 could not be loaded. soundfont %1 не вдається завантажити. - sf2InstrumentView + Sf2InstrumentView - - Open other SoundFont file - Відкрити інший файл SoundFront - - - - Click here to open another SF2 file - Натисніть тут щоб відкрити інший файл SF2 - - - - Choose the patch - Вибрати патч - - - - Gain - Підсилення - - - - Apply reverb (if supported) - Створити відлуння (якщо підтримується) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - Ця кнопка включає ефект луни. Це корисно для класних ефектів, але працює не для всіх файлів. - - - - Reverb Roomsize: - Розмір приміщення: - - - - Reverb Damping: - Загасання луни: - - - - Reverb Width: - Довгота луни: - - - - Reverb Level: - Рівень відлуння: - - - - Apply chorus (if supported) - Створити ефект хору (якщо підтримується) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - Ця кнопка включає ефект хору. Це корисно для класних ефектів, але працює не для всіх файлів. - - - - Chorus Lines: - Лінії хору: - - - - Chorus Level: - Рівень хору: - - - - Chorus Speed: - Швидкість хору: - - - - Chorus Depth: - Глибина хору: - - - + + Open SoundFont file Відкрити файл SoundFront - - SoundFont2 Files (*.sf2) - Файли SoundFont2 (*.sf2) - - - - sfxrInstrument - - - Wave Form - Форма хвилі - - - - sidInstrument - - - Cutoff - Зріз + + Choose patch + - - Resonance - Підсилення - - - - Filter type - Тип фільтру - - - - Voice 3 off - Голос 3 відкл - - - - Volume - Гучність - - - - Chip model - Модель чіпа - - - - sidInstrumentView - - - Volume: - Гучність: - - - - Resonance: + + Gain: Підсилення: - - - Cutoff frequency: - Частота зрізу: + + Apply reverb (if supported) + Створити відлуння (якщо підтримується) - - High-Pass filter - Вис.ЧФ + + Room size: + - - Band-Pass filter - Серед.ЧФ + + Damping: + - - Low-Pass filter - Низ.ЧФ + + Width: + Ширина: - - Voice3 Off - Голос 3 відкл + + + Level: + - - MOS6581 SID - MOS6581 SID + + Apply chorus (if supported) + Створити ефект хору (якщо підтримується) - - MOS8580 SID - MOS8580 SID + + Voices: + - - - Attack: - Вступ: + + Speed: + Швидкість: - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Тривалість вступу визначає, наскільки швидко гучність %1-го голосу зростає від нуля до максимального значення. + + Depth: + Глибина: - - - Decay: - Згасання: - - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - Тривалість спаду визначає, наскільки швидко гучність падає від максимуму до залишкового рівня. - - - - Sustain: - Витримка: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - Гучність %1-го голосу залишатиметься на рівні амплітуди витримки, поки триває нота. - - - - - Release: - Зменшення: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - Гучність %1-го голосу буде падати від залишкового рівня до нуля з вказаною тут швидкістю. - - - - - Pulse Width: - Довжина імпульсу: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - Тривалість імпульсу дозволяє м'яко регулювати проходження імпульсу без помітних збоїв. Імпульсна хвиля повинна бути обрана на осцилляторі %1, щоб отримати звучання. - - - - Coarse: - Грубість: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - Грубі налаштування дозволяють підлаштувати Голос %1 на одну октаву вгору або вниз. - - - - Pulse Wave - Пульсуюча хвиля - - - - Triangle Wave - Трикутник - - - - SawTooth - Зигзаг - - - - Noise - Шум - - - - Sync - Синхро - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Синхро синхронізує фундаментальну частоту осцилляторів %1 фундаментальною частотою осциллятора %2, створюючи ефект "Залізної синхронізації". - - - - Ring-Mod - Круговий режим - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - Круговий режим замінює трикутні хвилі на виході осциллятора %1 "Круговою модуляцією" комбінацією осцилляторів %1 і %2. - - - - Filtered - Відфільтрований - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - Якщо цей прапорець встановлено, то %1-й голос буде проходити через фільтр. Інакше голос № %1 буде подаватися прямо на вихід. - - - - Test - Тест - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - Якщо «прапорець» встановлено, то %1-й осциллятор видає нульовий сигнал (поки прапорець не зніметься). + + SoundFont Files (*.sf2 *.sf3) + - stereoEnhancerControlDialog + SfxrInstrument - - WIDE - ШИРШЕ + + Wave + + + + + StereoEnhancerControlDialog + + + WIDTH + - + Width: Ширина: - stereoEnhancerControls + StereoEnhancerControls - + Width Ширина - stereoMatrixControlDialog + StereoMatrixControlDialog - + Left to Left Vol: Від лівого на лівий: - + Left to Right Vol: Від лівого на правий: - + Right to Left Vol: Від правого на лівий: - + Right to Right Vol: Від правого на правий: - stereoMatrixControls + StereoMatrixControls - + Left to Left Від лівого на лівий - + Left to Right Від лівого на правий - + Right to Left Від правого на лівий - + Right to Right Від правого на правий - vestigeInstrument + VestigeInstrument - + Loading plugin Завантаження модуля - - Please wait while loading VST-plugin... - Будь ласка зачекайте поки завантажеться модуль VST... + + Please wait while loading the VST plugin... + - vibed + Vibed - + String %1 volume Гучність %1-й струни - + String %1 stiffness Жорсткість %1-й струни - + Pick %1 position Лад %1 - + Pickup %1 position Положення %1-го звукознімача - - Pan %1 - Бал %1 + + String %1 panning + - - Detune %1 - Підстроювання %1 + + String %1 detune + - - Fuzziness %1 - Нечіткість %1 + + String %1 fuzziness + - - Length %1 - Довжина %1 + + String %1 length + - + Impulse %1 Імпульс %1 - - Octave %1 - Октава %1 + + String %1 + - vibedView + VibedView - - Volume: - Гучність: + + String volume: + - - The 'V' knob sets the volume of the selected string. - Регулятор 'V' встановлює гучність поточної струни. - - - + String stiffness: Жорсткість: - - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - Регулятор 'S' встановлює жорсткість поточної струни. Цей параметр відповідає за тривалість звучання струни (чим більше значення жорсткості, тим довше дзвенить струна). - - - + Pick position: Ударна позиція: - - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - Регулятор 'P' встановлює місце струни, де вона буде "притиснута". Чим нижче значення, тим ближче це місце буде до кобилки. - - - + Pickup position: Положення звукознімача: - - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. - Регулятор 'PU' встановлює місце струни, звідки буде зніматися звук. Чим нижче значення, тим ближче це місце буде до мосту. + + String panning: + - - Pan: - Бал: + + String detune: + - - The Pan knob determines the location of the selected string in the stereo field. - Ця ручка встановлює стереобаланс для поточної струни. + + String fuzziness: + - - Detune: - Підлаштувати: + + String length: + - - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. - Ручка підстроювання змінює зсув частоти для поточної струни. Від'ємні значення змусять струну звучати плоско, позитивні - гостро. + + Impulse + - - Fuzziness: - Нечіткість: - - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - Ця ручка додає розмитість звуку, що найбільш помітно під час наростання, втім, це може використовуватися, щоб зробити звук більш "металевим". - - - - Length: - Довжина: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - Ручка довжини встановлює довжину поточної струни. Чим довша струна, тим більш чистий і довгий звук вона дає; однак це вимагає більше ресурсів ЦП. - - - - Impulse or initial state - Початкова швидкість/початковий стан - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - Перемикач "Imp" встановлює режим роботи струни: якщо він включений, то зазначена форма сигналу інтерпретується як початковий імпульс, інакше - як початкова форма струни. - - - + Octave Октава - - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - Перемикач октав дозволяє вказати гармоніку основної частоти, на якій буде звучати струна. Наприклад, "-2" означає, що струна буде звучати двома октавами нижче основної частоти, "F" змусить струну дзвеніти на основній частоті інструменту, а "6" - на частоті, на шість октав більш високій, ніж основна. - - - + Impulse Editor Редактор сигналу - - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - Редактор форми дозволяє явно вказати профіль струни в початковий момент часу, або її початковий імпульс (в залежності від стану перемикача "Imp"). -Кнопки праворуч від малюнка дозволяють задавати деякі стандартні форми, причому кнопка '?' служить для задання форми з довільного звукового файлу (завантажуються перші 128 елементів вибірки). - -Також форма сигналу може бути просто намальована за допомогою миші. - -Кнопка 'S' згладить поточну форму. - -Кнопка 'N' нормалізує рівень. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - Інструмент "Vibed" моделює до дев'яти незалежних одночасно звучних струн. - -Перемикач "Strings" дозволяє вибрати струну, чиї властивості редагуються. - -Перемикач "Imp" встановлює режим роботи струни: якщо він включений, то зазначена форма сигналу інтерпретується як початковий імпульс, інакше - як початкова форма струни. - -Перемикач "Octave" дозволяє вказати гармоніку основної частоти, на якій буде звучати струна. - -Редактор форми дозволяє явно вказати профіль струни в початковий момент часу, або її початковий імпульс. - -Ручка 'V' встановлює гучність поточної струни, 'S' - жорсткість, 'P' - місце, де притиснута струна, а 'PU' '- положення звукознімача. - -Ручка підстроювання і стереобалансу, сподіваємося не потребує пояснень. - -Ручка "Довжина" регулює довжину струни - -Індикатор-перемикач зліва внизу визначає, чи включена поточна струна. - - - + Enable waveform Включити сигнал - - Click here to enable/disable waveform. - Натисніть, щоб увімкнути/вимкнути сигнал. + + Enable/disable string + - + String Струна - - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - Перемикач струн дозволяє вибрати струну, чиї властивості редагуються. Інструмент Vibed містить до дев'яти незалежно звучних струн, індикатор в лівому нижньому куті показує, активна чи поточна струна (тобто чи буде вона чутна). - - - + + Sine wave Синусоїда - - Use a sine-wave for current oscillator. - Генерувати гармонійний (синусоїдальний) сигнал. - - - + + Triangle wave Трикутник - - Use a triangle-wave for current oscillator. - Генерувати трикутний сигнал. - - - + + Saw wave Зигзаг - - Use a saw-wave for current oscillator. - Генерувати зигзагоподібний сигнал. - - - + + Square wave Квадратна хвиля - - Use a square-wave for current oscillator. - Генерувати квадрат. - - - - White noise wave + + + White noise Білий шум - - Use white-noise for current oscillator. - Генерувати білий шум. + + + User-defined wave + - - User defined wave - Користувацька + + + Smooth waveform + Згладжений сигнал - - Use a user-defined waveform for current oscillator. - Задати форму сигналу. - - - - Smooth - Згладити - - - - Click here to smooth waveform. - Клацніть щоб згладити форму сигналу. - - - - Normalize - Нормалізувати - - - - Click here to normalize waveform. - Натисніть, щоб нормалізувати сигнал. + + + Normalize waveform + - voiceObject + 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 + WaveShaperControlDialog - + INPUT ВХІД - + Input gain: Вхідне підсилення: - + OUTPUT ВИХІД - + Output gain: Вихідне підсилення: - - Reset waveform - Скидання сигналу + + + Reset wavegraph + - - Click here to reset the wavegraph back to default - Натисніть тут, щоб скинути граф хвилі назад за замовчуванням + + + Smooth wavegraph + - - Smooth waveform - Згладжений сигнал + + + Increase wavegraph amplitude by 1 dB + - - Click here to apply smoothing to wavegraph - Натисніть тут, щоб застосувати згладжування графа хвилі + + + Decrease wavegraph amplitude by 1 dB + - - Increase graph amplitude by 1dB - Збільште амплітуди графа хвилі на 1дБ - - - - Click here to increase wavegraph amplitude by 1dB - Натисніть тут, щоб збільшити амплітуду графа хвилі на 1дБ - - - - Decrease graph amplitude by 1dB - Зменшення амплітуди графа хвилі на 1дБ - - - - Click here to decrease wavegraph amplitude by 1dB - Натисніть тут, щоб зменшити амплітуду графа хвилі на 1дБ - - - + Clip input Зрізати вхідний сигнал - - Clip input signal to 0dB - Зрізати вхідний сигнал до 0дБ + + Clip input signal to 0 dB + - waveShaperControls + WaveShaperControls - + Input gain Вхідне підсилення - + Output gain Вихідне підсилення diff --git a/data/locale/zh_CN.ts b/data/locale/zh_CN.ts index b369f8445..63b22df99 100644 --- a/data/locale/zh_CN.ts +++ b/data/locale/zh_CN.ts @@ -2,32 +2,63 @@ AboutDialog + About LMMS 关于LMMS - Version %1 (%2/%3, Qt %4, %5) + + LMMS + LMMS + + + + Version %1 (%2/%3, Qt %4, %5). 版本 %1 (%2/%3, Qt %4, %5) + About 关于 - LMMS - easy music production for everyone + + LMMS - easy music production for everyone. LMMS - 人人都是作曲家 + + Copyright © %1. + 版权所有 © %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> + + + Authors 作者 + + Involved + 参与者 + + + + Contributors ordered by number of commits: + 贡献者名单(以提交次数排序): + + + Translation 翻译 + 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! 当前语言是中文(中国) @@ -35,67 +66,56 @@ If you're interested in translating LMMS in another language or want to imp TonyChyi <tonychee1989 at gmail.com> Min Zhang <zm1990s at gmail.com> Jeff Bai <jeffbaichina at gmail.com> -Mingye Wang <arthur2e5@aosc.xyz> -Zixing Liu <liushuyu@aosc.xyz> +Mingye Wang <arthur2e5 at aosc.xyz> +Zixing Liu <liushuyu at aosc.xyz> 若你有兴趣提高翻译质量,请联系维护团队 (https://github.com/AOSC-Dev/translations)、之前的译者或本项目维护者! + License 许可证 - - LMMS - LMMS - - - Involved - 参与者 - - - Contributors ordered by number of commits: - 贡献者名单(以提交次数排序): - - - Copyright © %1 - 版权所有 © %1 - - - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - AmplifierControlDialog + VOL 音量 + Volume: 音量: + PAN 声相 + Panning: 声相: + LEFT + Left gain: 左增益: + RIGHT + Right gain: 右增益: @@ -103,18 +123,22 @@ Zixing Liu <liushuyu@aosc.xyz> AmplifierControls + Volume 音量 + Panning 声相 + Left gain 左增益 + Right gain 右增益 @@ -122,10 +146,12 @@ Zixing Liu <liushuyu@aosc.xyz> AudioAlsaSetupWidget + DEVICE 设备 + CHANNELS 声道数 @@ -133,85 +159,60 @@ Zixing Liu <liushuyu@aosc.xyz> AudioFileProcessorView - Open other sample - 打开其他采样 - - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - 如果想打开另一个音频文件,请点击这里。接着会出现文件选择对话框。诸如环回模式(looping-mode),起始/结束点,放大值(amplify-value)之类的值不会被重置。因此听起来会和源采样有差异。 + + Open sample + 打开采样文件 + Reverse sample 反转采样 - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - 如果点击此按钮,整个采样将会被反转。能用于制作很酷的效果,例如reversed crash. - - - Amplify: - 放大: - - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - 此旋钮用于调整放大比率。当设为100% 时采样不会变化。除此之外,不是放大就是减弱(原始的采样文件不会被改变) - - - Startpoint: - 起始点: - - - Endpoint: - 终点: - - - Continue sample playback across notes - 跨音符继续播放采样 - - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - 启用此选项将使采样跨音符继续播放——如果你改变了音调,或者音长度在采样结尾之前停止,下一个音符将继续此采样的播放直到其停止。如需重置到采样的开头,插入一个键盘中最低的音符(< 20 Hz) - - + Disable loop 禁用循环 - This button disables looping. The sample plays only once from start to end. - 点击此按钮可以禁止循环播放。 - - + Enable loop 开启循环 - This button enables forwards-looping. The sample loops between the end point and the loop point. - 点击此按钮后,Forwards-looping 会被打开,采样将在终止点(End Point)和循环点(Loop Point)之间播放。 + + Enable ping-pong loop + 启用往复循环 - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - 点击此按钮后,Ping-pong-looping 会被打开,采样将在终止点(End Point)和循环点(Loop Point)之间来回播放。 + + Continue sample playback across notes + 跨音符继续播放采样 - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - 调节此旋钮,以告诉 AudioFileProcessor 在哪里开始播放。 + + Amplify: + 放大: - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - 调节此旋钮,以告诉 AudioFileProcessor 在哪里停止播放。 + + Start point: + 循环起点 + + End point: + 循环结束点 + + + Loopback point: 循环点: - - With this knob you can set the point where the loop starts. - 调节此旋钮,以设置循环开始的地方。 - AudioFileProcessorWaveView + Sample length: 采样长度: @@ -219,447 +220,469 @@ Zixing Liu <liushuyu@aosc.xyz> 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 + + Client name 客户端名称 - CHANNELS - 通道数 + + Channels + 通道 - AudioOss::setupWidget + AudioOss - DEVICE + + Device 设备 - CHANNELS - 声道数 + + Channels + 通道 AudioPortAudio::setupWidget - BACKEND + + Backend 后端 - DEVICE + + Device 设备 - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE + + Device 设备 - CHANNELS - 声道数 + + Channels + 通道 AudioSdl::setupWidget - DEVICE + + Device 设备 - AudioSndio::setupWidget + AudioSndio - DEVICE + + Device 设备 - CHANNELS - 通道数 + + Channels + 通道 AudioSoundIo::setupWidget - BACKEND + + Backend 后端 - DEVICE + + 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 编辑歌曲全局自动控制 - Connected to %1 - 连接到%1 - - - Connected to controller - 连接到控制器 - - - Edit connection... - 编辑连接... - - - Remove connection - 删除连接 - - - Connect to controller... - 连接到控制器... - - + Remove song-global automation 删除歌曲全局自动控制 + Remove all linked controls 删除所有已连接的控制器 + + + Connected to %1 + 连接到%1 + + + + Connected to controller + 连接到控制器 + + + + Edit connection... + 编辑连接... + + + + Remove connection + 删除连接 + + + + Connect to controller... + 连接到控制器... + AutomationEditor - Please open an automation pattern with the context menu of a control! + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip with the context menu of a control! 请使用控制的上下文菜单打开一个自动控制样式! - - Values copied - 值已复制 - - - All selected values were copied to the clipboard. - 所有选中的值已复制。 - AutomationEditorWindow - Play/pause current pattern (Space) + + Play/pause current clip (Space) 播放/暂停当前片段(空格) - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - 点击这里播放片段。编辑时很有用,片段会自动循环播放。 - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) 停止当前片段(空格) - Click here if you want to stop playing of the current pattern. - 点击这里停止播放片段。 - - - Draw mode (Shift+D) - 绘制模式 (Shift+D) - - - Erase mode (Shift+E) - 擦除模式 (Shift+E) - - - Flip vertically - 垂直翻转 - - - Flip horizontally - 水平翻转 - - - Click here and the pattern will be inverted.The points are flipped in the y direction. - 点击这里图案将会沿 y 轴翻转。 - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - 点击这里图案将会沿 x 轴翻转。 - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - 点击这里启用绘制模式。在此模式下你可以增加或移动单个值。 大部分时间下默认使用此模式。你也可以按键盘上的 ‘Shift+D’激活此模式。 - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - 点击启用擦除模式。此模式下你可以擦除单个值。你可以按键盘上的 'Shift+E' 启用此模式。 - - - Discrete progression - 离散步进 - - - Linear progression - 线性步进 - - - Cubic Hermite progression - 立方 Hermite 步进 - - - Tension value for spline - 样条函数的张力值 - - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - 更高的张力数值可以使图像更平滑,但也可能使某些数值严重偏移。更低的数值会导致每个控制点附近的曲线将会过度平缓。 - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - 单击此处为此自动化片段选择离散渐进模式。被连接对象的值在控制点之间将会保持不变,并在达到每个控制点时立即设置为新值。 - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - 单击此处选择为此自动化片段选择的线性渐进模式。被连接对象的值将在控制点之间随时间以稳定的速率改变,在每个控制点处达到正确的控制值,而不是突然地变化。 - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - 点击这里为此自动化片段选择立方 Hermite 渐进模式。被连接对象的值将以平滑的曲线变化,并会缓和峰值和谷值。 - - - Cut selected values (%1+X) - 剪切选定值 (%1+X) - - - Copy selected values (%1+C) - 复制选定值 (%1+C) - - - Paste values from clipboard (%1+V) - 从剪切板粘贴数值 (%1+V) - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - 点击这里,选择的值将会被剪切到剪切板。你可以使用粘贴按钮将它们粘贴到任意地方,存为任意片段。 - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - 点击这里,选择的值将会被复制到剪切板。你可以使用粘贴按钮将它们粘贴到任意地方,存为任意片段。 - - - Click here and the values from the clipboard will be pasted at the first visible measure. - 点击这里,选择的值将从剪贴板粘贴到第一个可见的小节。 - - - Tension: - 张力: - - - Automation Editor - no pattern - 自动控制编辑器 - 没有片段 - - - Automation Editor - %1 - 自动控制编辑器 - %1 - - + 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 补间控制 - Timeline controls - 时间线控制 + + Discrete progression + 离散步进 + + Linear progression + 线性步进 + + + + Cubic Hermite progression + 立方 Hermite 步进 + + + + Tension value for spline + 样条函数的张力值 + + + + Tension: + 张力: + + + Zoom controls 缩放控制 + + Horizontal zooming + 水平缩放 + + + + Vertical zooming + 垂直缩放 + + + Quantization controls 量化控制 - Model is already connected to this pattern. - 模型已连接到此片段。 - - + Quantization 量化控制 - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - + + + Automation Editor - no clip + 自动控制编辑器 - 没有片段 + + + + + Automation Editor - %1 + 自动控制编辑器 - %1 + + + + Model is already connected to this clip. + 模型已连接到此片段。 - AutomationPattern + AutomationClip + Drag a control while pressing <%1> 按住<%1>拖动控制器 - AutomationPatternView + AutomationClipView + Open in Automation editor 在自动编辑器(Automation editor)中打开 + Clear 清除 + Reset name 重置名称 + Change name 修改名称 - %1 Connections - %1个连接 - - - Disconnect "%1" - 断开“%1”的连接 - - + Set/clear record 设置/清除录制 + Flip Vertically (Visible) 垂直翻转 (可见) + Flip Horizontally (Visible) 水平翻转 (可见) - Model is already connected to this pattern. + + %1 Connections + %1个连接 + + + + Disconnect "%1" + 断开“%1”的连接 + + + + Model is already connected to this clip. 模型已连接到此片段。 AutomationTrack + Automation track 自动控制轨道 - BBEditor + PatternEditor + Beat+Bassline Editor 节拍+低音线编辑器 + Play/pause current beat/bassline (Space) 播放/暂停当前节拍/低音线(空格) + Stop playback of current beat/bassline (Space) 停止播放当前节拍/低音线(空格) - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - 点击这里停止播放当前节拍/低音线。当结束时节拍/低音线会自动循环播放。 - - - Click here to stop playing of current beat/bassline. - 点击这里停止播发当前节拍/低音线。 - - - Add beat/bassline - 添加节拍/低音线 - - - Add automation-track - 添加自动控制轨道 - - - Remove steps - 移除音阶 - - - Add steps - 添加音阶 - - + Beat selector 节拍选择器 + Track and step actions 音轨和音阶动作 - Clone Steps - 克隆音阶 + + Add beat/bassline + 添加节拍/低音线 + + Clone beat/bassline clip + + + + Add sample-track 添加采样轨道 + + + Add automation-track + 添加自动控制轨道 + + + + Remove steps + 移除音阶 + + + + Add steps + 添加音阶 + + + + Clone Steps + 克隆音阶 + - BBTCOView + PatternClipView + Open in Beat+Bassline-Editor 在节拍+Bassline编辑器中打开 + Reset name 重置名称 + Change name 修改名称 - - Change color - 改变颜色 - - - Reset color to default - 重置颜色 - - BBTrack + PatternTrack + Beat/Bassline %1 节拍/Bassline %1 + Clone of %1 %1 的副本 @@ -667,26 +690,32 @@ Zixing Liu <liushuyu@aosc.xyz> BassBoosterControlDialog + FREQ 频率 + Frequency: 频率: + GAIN 增益 + Gain: 增益: + RATIO 比率 + Ratio: 比率: @@ -694,14 +723,17 @@ Zixing Liu <liushuyu@aosc.xyz> BassBoosterControls + Frequency 频率 + Gain 增益 + Ratio 比率 @@ -709,107 +741,2344 @@ Zixing Liu <liushuyu@aosc.xyz> BitcrushControlDialog + IN 输入 + OUT 输出 + + GAIN 增益 - Input Gain: + + Input gain: 输入增益: - Input Noise: - 输入噪音: - - - Output Gain: - 输出增益: - - - CLIP - 压限 - - - Output Clip: - 输出压限: - - - Rate Enabled - - - - Enable samplerate-crushing - 启用采样率破坏 - - - Depth Enabled - 深度已启用 - - - Enable bitdepth-crushing - 启用位深破坏 - - - Sample rate: - 采样率: - - - Stereo difference: - 双声道差异: - - - Levels: - 级别: - - + 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 + + + + About + 关于 + + + + About text here + 说明文字 + + + + Extended licensing here + 使用许可补充 + + + + Artwork - QUANT + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) - CaptionMenu + CarlaHostW + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + 文件(&F) + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help 帮助(&H) - Help (not available) - 帮助(不可用) + + toolBar + + + + + Disk + + + + + + Home + 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 + + + + + &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... + + + + + 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 - Click here to show or hide the graphical user interface (GUI) of Carla. - 点击此处可以显示或隐藏 Carla 的图形界面。 + + Settings + 设置 + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + 路径 + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 @@ -817,58 +3086,73 @@ Zixing Liu <liushuyu@aosc.xyz> 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. 检测到环路。 @@ -876,18 +3160,22 @@ Zixing Liu <liushuyu@aosc.xyz> ControllerRackView + Controller Rack 控制器机架 + Add 增加 + Confirm Delete 删除前确认 + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. 确定要删除吗?此控制器仍处于被连接状态。此操作不可撤销。 @@ -895,116 +3183,158 @@ Zixing Liu <liushuyu@aosc.xyz> ControllerView + Controls 控制器 - Controllers are able to automate the value of a knob, slider, and other controls. - 控制器可以自动控制旋钮,滑块和其他控件的值。 - - + Rename controller 重命名控制器 + Enter the new name for this controller 输入这个控制器的新名称 + + LFO + LFO + + + &Remove this controller 删除此控制器(&R) + Re&name this controller 重命名控制器(&N) - - LFO - LFO - 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: - 频段1增益: - - - Band 2 Gain: - 频段2增益: - - - Band 3 Gain: - 频段3增益: - - - Band 4 Gain: - 频段4增益: - - - Band 1 Mute - 频段1静音: - - - Mute Band 1 - 静音频段1: - - - Band 2 Mute + + Band 1 gain - Mute Band 2 + + Band 1 gain: - Band 3 Mute + + Band 2 gain - Mute Band 3 + + Band 2 gain: - Band 4 Mute + + Band 3 gain - Mute Band 4 + + 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 - 延迟采样 + + Delay samples + + Feedback 反馈 - Lfo Frequency - Lfo 频率 + + LFO frequency + - Lfo Amount - Lfo 数量 + + LFO amount + + Output gain 输出增益 @@ -1012,228 +3342,528 @@ Zixing Liu <liushuyu@aosc.xyz> DelayControlsDialog - Lfo Amt - Lfo 数量 - - - Delay Time - 延迟时间 - - - Feedback Amount - 反馈数量 - - - Lfo - Lfo - - - Out Gain - 输出增益 - - - Gain - 增益 - - + 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 + + + + + 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 - Filter 1 enabled - 已启用过滤器 1 - - - Filter 2 enabled - 已启用过滤器 2 - - - Click to enable/disable Filter 1 - 点击启用/禁用过滤器 1 - - - Click to enable/disable Filter 2 - 点击启用/禁用过滤器 2 - - + + 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 1 frequency - 滤波器 1 截频 + + Cutoff frequency 1 + + Q/Resonance 1 滤波器 1 Q值 + Gain 1 增益 1 + Mix 混合 + Filter 2 enabled 已启用过滤器 2 + Filter 2 type 过滤器 1 类型 {2 ?} - Cutoff 2 frequency - 滤波器 2 截频 + + Cutoff frequency 2 + + Q/Resonance 2 滤波器 2 Q值 + Gain 2 增益 2 - LowPass - 低通 + + + Low-pass + - HiPass - 高通 + + + Hi-pass + - BandPass csg - 带通 csg + + + Band-pass csg + - BandPass czpg - 带通 czpg + + + Band-pass czpg + + + Notch 凹口滤波器 - Allpass - 全通 + + + All-pass + + + Moog Moog - 2x LowPass - 2 个低通串联 + + + 2x Low-pass + - RC LowPass 12dB - RC 低通(12dB) + + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC 带通(12dB) + + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC 高通(12dB) + + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC 低通(24dB) + + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC 带通(24dB) + + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC 高通(24dB) + + + RC High-pass 24 dB/oct + - Vocal Formant Filter - 人声移除过滤器 + + + Vocal Formant + + + 2x Moog 2x Moog - SV LowPass - SV 低通 + + + SV Low-pass + - SV BandPass - SV 带通 + + + SV Band-pass + - SV HighPass - SV 高通 + + + SV High-pass + + + SV Notch SV Notch + + Fast Formant 快速共振峰(Formant) + + Tripole Tripole @@ -1241,41 +3871,55 @@ Zixing Liu <liushuyu@aosc.xyz> Editor + + Transport controls + 传输控制 + + + Play (Space) 播放(空格) + Stop (Space) 停止(空格) + Record 录音 + Record while playing 播放时录音 - Transport controls + + Toggle Step Recording Effect + Effect enabled 启用效果器 + Wet/Dry mix 干/湿混合 + Gate 门限 + Decay 衰减 @@ -1283,6 +3927,7 @@ Zixing Liu <liushuyu@aosc.xyz> EffectChain + Effects enabled 启用效果器 @@ -1290,10 +3935,12 @@ Zixing Liu <liushuyu@aosc.xyz> EffectRackView + EFFECTS CHAIN 效果器链 + Add effect 增加效果器 @@ -1301,22 +3948,28 @@ Zixing Liu <liushuyu@aosc.xyz> EffectSelectDialog + Add effect 增加效果器 + + Name 名称 + Type 类型 + Description 描述 + Author 作者 @@ -1324,78 +3977,57 @@ Zixing Liu <liushuyu@aosc.xyz> EffectView - Toggles the effect on or off. - 打开或关闭效果. - - + On/Off 开/关 + W/D W/D + Wet Level: 效果度: - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - 旋转干湿度旋钮以调整原信号与有效果的信号的比例。 - - + DECAY 衰减 + Time: 时间: - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - 衰减旋钮控制在插件停止工作前,缓冲区中加入的静音时常。较小的数值会降低CPU占用率但是可能导致延迟或混响产生撕裂。 - - + GATE 门限 + Gate: 门限: - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - 门限旋钮设置自动静音时,被认为是静音的信号幅度。 - - + Controls 控制 - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - - - + Move &up 向上移(&U) + Move &down 向下移(&D) + &Remove this plugin 移除此插件(&R) @@ -1403,408 +4035,409 @@ Right clicking will bring up a context menu where you can change the order in wh EnvelopeAndLfoParameters - Predelay - 预延迟 + + Env pre-delay + - Attack - 打进声 + + Env attack + - Hold - 保持 + + Env hold + - Decay - 衰减 + + Env decay + - Sustain - 持续 + + Env sustain + - Release - 释放 + + Env release + - Modulation - 调制 + + Env mod amount + - LFO Predelay - LFO 预延迟 + + LFO pre-delay + - LFO Attack - LFO 打进声(attack) + + LFO attack + - LFO speed - LFO 速度 + + LFO frequency + - LFO Modulation - LFO 调制 + + LFO mod amount + - LFO Wave Shape - LFO 波形形状 + + LFO wave shape + - Freq x 100 - 频率 x 100 + + LFO frequency x 100 + - Modulate Env-Amount - 调制所有包络 + + Modulate env amount + EnvelopeAndLfoView + + DEL DEL - Predelay: - 预延迟: - - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - 使用预延迟旋钮设定此包络的预延迟,较大的值会加长包络开始的时间。 + + + Pre-delay: + + + ATT 打击 + + Attack: 打击声: - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - 使用起音旋钮设定此包络的起音时间,较大的值会让包络达到起音值的时间增加。为钢琴等乐器选择小值而弦乐选择大值。 - - + HOLD 持续 + Hold: 持续: - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - 使用持续旋钮设定此包络的持续时间。较大的值会在它衰减到持续值时,保持包络在起音值更久。 - - + DEC 衰减 + Decay: 衰减: - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - 使用衰减旋钮设定此包络的衰减值。较大的值会延长包络从起音值衰减到持续值的时间。为钢琴等乐器选择一个小值。 - - + SUST 持续 + Sustain: 持续: - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - 使用持续旋钮设置此包络的持续值,较大的值会增加释放前,包络在此保持的值。 - - + REL 释音 + Release: 释音: - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - 使用释音旋钮设定此包络的释音时间,较大值会增加包络衰减到零的时间。为弦乐等乐器选择一个大值。 - - + + AMT 数量 + + Modulation amount: 调制量: - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - 使用调制量旋钮设置LFO对此包络的调制量,较大的值会对此包络控制的值(如音量或截频)影响更大。 - - - LFO predelay: - LFO 预延迟: - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - 此参数可设置当前LFO的延迟时间,数值越大则LFO开始生效前的时间约长。 - - - LFO- attack: - LFO 打击声 (attack): - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - 此参数可设置当前LFO的打进时间,数值越大则LFO逐渐增至最大振幅所需时间越长。 - - + SPD 速度 - LFO speed: - LFO 速度: - - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - 使用此旋钮来调整当前 LFO 的速度,较大的值会使 LFO 振动速度更快,并且你的音频效果也会更快。 - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - 使用调制量旋钮设置 LFO 的调制量,较大的值会所选值(如音量或截频)影响更大。 - - - Click here for a sine-wave. - 点击这里使用正弦波。 - - - Click here for a triangle-wave. - 点击这里使用三角波。 - - - Click here for a saw-wave for current. - 点击这里使用锯齿波。 - - - Click here for a square-wave. - 点击这里使用方波。 - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - 单击此处可设置自定义波形,单击后拖拽相应的波形采样文件至LFO图像处。 + + Frequency: + 频率: + FREQ x 100 频率 x 100 - Click here if the frequency of this LFO should be multiplied by 100. - 如果此 LFO 频率需要乘以 100 倍,请点击这里。 + + Multiply LFO frequency by 100 + - multiply LFO-frequency by 100 - 将 LFO 频率扩大 100 倍 + + MODULATE ENV AMOUNT + - MODULATE ENV-AMOUNT - 调制包络量 - - - Click here to make the envelope-amount controlled by this LFO. - 点击此处使包络数量由此 LFO 控制。 - - - control envelope-amount by this LFO - 控制此 LFO 的包络数量 + + Control envelope amount by this LFO + + ms/LFO: ms/LFO: + Hint 提示 - Drag a sample from somewhere and drop it in this window. - 从别处拖动采样到此窗口。 - - - Click here for random wave. - 点击这里使用随机波形。 + + Drag and drop a sample into this window. + EqControls + Input gain 输入增益 + Output gain 输出增益 - Low shelf gain + + Low-shelf gain + Peak 1 gain - + 峰值1增幅 + Peak 2 gain - + 峰值2增幅 + Peak 3 gain - + 峰值3增幅 + Peak 4 gain + 峰值4增幅 + + + + High-shelf gain - High Shelf gain - - - + HP res + 高通谐振 + + + + Low-shelf res - Low Shelf res - - - + Peak 1 BW + Peak 2 BW + Peak 3 BW + Peak 4 BW - High Shelf res + + High-shelf res + LP res - + 低通谐振 + HP freq + 高通截频 + + + + Low-shelf freq - Low Shelf freq - - - + Peak 1 freq - + 峰值1频率 + Peak 2 freq - + 峰值2频率 + Peak 3 freq - + 峰值3频率 + Peak 4 freq + 峰值4频率 + + + + High-shelf freq - High shelf freq - - - + LP freq - + 低通截频 + HP active + 高通启用 + + + + Low-shelf active - Low shelf active - - - + Peak 1 active - + 峰值1启用 + Peak 2 active - + 峰值2启用 + Peak 3 active - + 峰值3启用 + Peak 4 active + 峰值4启用 + + + + High-shelf active - 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 - 低通类型 + + Low-pass type + - high pass type - 高通类型 + + High-pass type + + Analyse IN 分析输入 + Analyse OUT 分析输出 @@ -1812,85 +4445,108 @@ Right clicking will bring up a context menu where you can change the order in wh EqControlsDialog + HP + 高通 + + + + Low-shelf - Low Shelf - - - + Peak 1 - + 峰值1 + Peak 2 - + 峰值2 + Peak 3 - + 峰值3 + Peak 4 + 峰值4 + + + + High-shelf - High Shelf - - - + LP - + 低通 - In Gain - + + Input gain + 输入增益 + + + Gain 增益 - Out Gain + + Output gain 输出增益 + Bandwidth: 带宽: + + Octave + + + + Resonance : 共鸣: + Frequency: 频率: - lp grp + + LP group - hp grp - - - - Octave + + HP group EqHandle + Reso: 共鸣: + BW: + + Freq: 频率: @@ -1898,254 +4554,272 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog + Export project 导出工程 - Output - 输出 - - - File format: - 文件格式: - - - Samplerate: - 采样率: - - - 44100 Hz - 44100 Hz - - - 48000 Hz - 48000 Hz - - - 88200 Hz - 88200 Hz - - - 96000 Hz - 96000 Hz - - - 192000 Hz - 192000 Hz - - - Bitrate: - 码率: - - - 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 - - - Depth: - 位深: - - - 16 Bit Integer - 16 位整形 - - - 32 Bit Float - 32 位浮点型 - - - Quality settings - 质量设置 - - - Interpolation: - 补间: - - - Zero Order Hold - 零阶保持 - - - Sinc Fastest - 最快 Sinc 补间 - - - Sinc Medium (recommended) - 中等 Sinc 补间 (推荐) - - - Sinc Best (very slow!) - 最佳 Sinc 补间 (很慢!) - - - Oversampling (use with care!): - 过采样 (请谨慎使用!): - - - 1x (None) - 1x (无) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x - - - Start - 开始 - - - Cancel - 取消 - - - Export as loop (remove end silence) + + Export as loop (remove extra bar) 导出为回环loop(移除结尾的静音) + 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 + 16 位整数 + + + + 24 Bit integer + 24 位整数 + + + + 32 Bit float + 32 位浮点 + + + + Stereo mode: + 双声道模式: + + + + Mono + 单声道 + + + + Stereo + 双声道 + + + + Joint stereo + 联合立体声 + + + + Compression level: + 压缩级别: + + + + Bitrate: + 码率: + + + + 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 + 使用可变比特率 + + + + Quality settings + 质量设置 + + + + Interpolation: + 补间: + + + + Zero order hold + 零阶保持 + + + + Sinc worst (fastest) + 快速 Sinc 补间 (最快) + + + + Sinc medium (recommended) + 中等 Sinc 补间 (推荐) + + + + Sinc best (slowest) + 最佳 Sinc 补间 (很慢!) + + + + Oversampling: + 过采样: + + + + 1x (None) + 1x (无) + + + + 2x + 2x + + + + 4x + 4x + + + + 8x + 8x + + + + Start + 开始 + + + + Cancel + 取消 + + + Could not open file 无法打开文件 - Export project to %1 - 导出项目到 %1 - - - Error - 错误 - - - Error while determining file-encoder device. Please try to choose a different output format. - 寻找文件编码设备时出错。请使用另外一种输出格式。 - - - Rendering: %1% - 渲染中:%1% - - + 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 请确保您有对该文件以及包含该文件目录的写入权限! - 24 Bit Integer - 24位整数 + + Export project to %1 + 导出项目到 %1 - Use variable bitrate + + ( Fastest - biggest ) - Stereo mode: + + ( Slowest - smallest ) - Stereo - + + Error + 错误 - Joint Stereo - + + Error while determining file-encoder device. Please try to choose a different output format. + 寻找文件编码设备时出错。请使用另外一种输出格式。 - Mono - - - - Compression level: - - - - (fastest) - - - - (default) - - - - (smallest) - - - - - Expressive - - Selected graph - 选定的图像 - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - + + Rendering: %1% + 渲染中:%1% Fader + + Set value + 设置值 + + + Please enter a new value between %1 and %2: 请输入一个介于%1和%2之间的数值: @@ -2153,80 +4827,133 @@ Please make sure you have write permission to the file and the directory contain FileBrowser + + User content + + + + + Factory content + + + + Browser 浏览器 + Search - + 搜索 + Refresh list - + 刷新列表 FileBrowserTreeWidget + Send to active instrument-track 发送到活跃的乐器轨道 - Open in new instrument-track/B+B Editor - 在新乐器轨道/B+B 编辑器中打开 + + 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... 请稍候,加载采样中... - --- Factory files --- - ---软件自带文件--- - - - Open in new instrument-track/Song Editor - 在新的乐器轨道/歌曲编辑器中打开 - - + Error 错误 - does not appear to be a valid - 并不是一个有效的 + + %1 does not appear to be a valid %2 file + - file - 文件 + + --- Factory files --- + ---软件自带文件--- FlangerControls - Delay Samples - 延迟采样 + + Delay samples + - Lfo Frequency - Lfo 频率 + + LFO frequency + + Seconds - Regen + + Stereo phase + + Regen + 重生成 + + + Noise 噪音 + Invert 反转 @@ -2234,146 +4961,516 @@ Please make sure you have write permission to the file and the directory contain FlangerControlsDialog - Delay Time: - 延迟时间: - - - Feedback Amount: - 反馈数量: - - - White Noise Amount: - 白噪音数量: - - + DELAY 延迟 + + Delay time: + + + + RATE + + Period: + + + + AMNT 数量 + Amount: 数量: + + PHASE + + + + + Phase: + + + + FDBK 反馈 + + Feedback amount: + + + + NOISE 噪音 + + White noise amount: + + + + Invert 反转 + + + FreeBoyInstrument - Period: + + 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 - FxLine + MixerLine + Channel send amount 通道发送的数量 - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - 效果通道会从一个或多个乐器轨道接收输入。 -它还能被接着接入其他多个效果通道。LMMS 会自动防止无限死循环的发生,并且不会让你连接出一个死循环。 - -如果你想将一个通道连接到另一个通道,选择第一个效果通道并且在你想连接的通道上点击“发送(Send)” 按钮。在发送按钮下面的旋钮将会控制发送到目标通道信号的强度。 - -你可以通过右击效果通道弹出的上下文菜单移动和删除效果通道。 - - - + 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 + + - FxMixer + MixerLineLcdSpinBox + + Assign to: + 分配给: + + + + New mixer Channel + 新的效果通道 + + + + Mixer + + Master 主控 - FX %1 + + + + Channel %1 FX %1 + Volume 音量 + Mute 静音 + Solo 独奏 - FxMixerView + MixerView - FX-Mixer + + Mixer 效果混合器 - FX Fader %1 + + Fader %1 FX 衰减器 %1 + Mute 静音 - Mute this FX channel + + Mute this mixer channel 静音此效果通道 + Solo 独奏 - Solo FX channel + + Solo mixer channel 独奏效果通道 - FxRoute + MixerRoute + + Amount to send from channel %1 to channel %2 从通道 %1 发送到通道 %2 的量 @@ -2381,14 +5478,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument + Bank + Patch 音色 + Gain 增益 @@ -2396,46 +5496,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - Open other GIG file - 打开另外的 GIG 文件 - - - Click here to open another GIG file - 点击这里打开另外一个 GIG 文件 - - - Choose the patch - 选择路径 - - - Click here to change which patch of the GIG file to use - 点击这里选择另一种 GIG 音色 - - - Change which instrument of the GIG file is being played - 更换正在使用的 GIG 文件中的乐器 - - - Which GIG file is currently being used - 哪一个 GIG 文件正在被使用 - - - Which patch of the GIG file is currently being used - GIG 文件的哪一个音色正在被使用 - - - Gain - 增益 - - - Factor to multiply samples by - - - + + Open GIG file 打开 GIG 文件 + + Choose patch + + + + + Gain: + 增益: + + + GIG Files (*.gig) GIG 文件 (*.gig) @@ -2443,42 +5520,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 正在准备自动编辑器 @@ -2486,650 +5573,798 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio + Arpeggio 琶音 + Arpeggio type 琶音类型 + Arpeggio range 琶音范围 - Arpeggio time - 琶音时间 + + Note repeats + - Arpeggio gate - 琶音门限 - - - Arpeggio direction - 琶音方向 - - - Arpeggio mode - 琶音模式 - - - Up - 向上 - - - Down - 向下 - - - Up and down - 上和下 - - - Random - 随机 - - - Free - 自由 - - - Sort - 排序 - - - Sync - 同步 - - - Down and up - 下和上 + + Cycle steps + + Skip rate 跳过率 + Miss rate 丢失率 - Cycle steps - + + Arpeggio time + 琶音时间 + + + + Arpeggio gate + 琶音门限 + + + + Arpeggio direction + 琶音方向 + + + + Arpeggio mode + 琶音模式 + + + + Up + 向上 + + + + Down + 向下 + + + + Up and down + 上和下 + + + + Down and up + 下和上 + + + + Random + 随机 + + + + Free + 自由 + + + + Sort + 排序 + + + + Sync + 同步 InstrumentFunctionArpeggioView + ARPEGGIO 琶音 - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - 琶音(arpeggio)是一种乐器(主要是弹拨乐器)的演奏技巧,能让音乐更生动。这类乐器(例如竖琴)的弦以和弦的方式弹奏,与和弦的区别在于这些音符是依次奏出的,而不是同时弹奏。典型的琶音有大小三和弦,此外你还可以选择其他多种和弦的形式。 - - + RANGE 范围 + Arpeggio range: 琶音范围: + octave(s) 八度音 - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. - 此参数设置的是琶音的八度范围,你所选的琶音会被限定在指定的八度数范围内。 + + REP + - TIME - 时长 + + Note repeats: + - Arpeggio time: - 琶音时间: - - - ms - 毫秒 - - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - 此参数设置的是每个琶音音符的时长,单位是毫秒。 - - - GATE - 门限 - - - Arpeggio gate: - 琶音门限: - - - % - % - - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - 此参数设置的是琶音音符的门限。琶音音符的门限决定了每个音符发声部分占音符时长的百分比,你可以利用这个参数构造出断奏式的琶音。 - - - Chord: - 和弦: - - - Direction: - 方向: - - - Mode: - 模式: - - - SKIP - 跳过 - - - Skip rate: - 跳过率: - - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - 跳过方程可以让琶音器随机地暂停一拍, 在逆时针的起始位置时不停拍,到最大值时完全停止琶音。 - - - MISS - 丢失 - - - Miss rate: - 丢失率: - - - The miss function will make the arpeggiator miss the intended note. - 丢失功能将会使琶音器故意丢掉你想要其丢掉的音符。 + + time(s) + + CYCLE 循环 + Cycle notes: 循环音符: + note(s) 音符 - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - + + 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 - Phrygolydian + + Phrygian + Lydian Lydian + Mixolydian Mixolydian + Aeolian Aeolian + Locrian Locrian - Chords - Chords - - - Chord type - Chord type - - - Chord range - Chord range - - + Minor Minor + Chromatic Chromatic + Half-Whole Diminished - + 半-全减音程 + 5 5 + Phrygian dominant + Persian + + + Chords + Chords + + + + Chord type + Chord type + + + + Chord range + Chord range + InstrumentFunctionNoteStackingView - RANGE - 范围 - - - Chord range: - 和弦范围: - - - octave(s) - 八度音 - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - - + STACKING 堆叠 + Chord: 和弦: + + + RANGE + 范围 + + + + Chord range: + 和弦范围: + + + + octave(s) + 八度音 + InstrumentMidiIOView + ENABLE MIDI INPUT 启用MIDI输入 - CHANNEL - 通道 - - - VELOCITY - 力度 - - + ENABLE MIDI OUTPUT 启用MIDI输出 - PROGRAM - 乐器 + + + 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 设备 - NOTE - 音符 - - + CUSTOM BASE VELOCITY 自定义基准力度 - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - 设定基于 MIDI 的乐器在 100% 音符力度下的正常化基准值 + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. + + BASE VELOCITY 基准力度 @@ -3137,137 +6372,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView + MASTER PITCH 主音高 - Enables the use of 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 - LowPass - 低通 + + Hi-pass + - HiPass - 高通 + + Band-pass csg + - BandPass csg - 带通 csg - - - BandPass czpg - 带通 czpg + + Band-pass czpg + + Notch 凹口滤波器 - Allpass - 全通 + + All-pass + + Moog Moog - 2x LowPass - 2 个低通串联 + + 2x Low-pass + - RC LowPass 12dB - RC 低通(12dB) + + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC 带通(12dB) + + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC 高通(12dB) + + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC 低通(24dB) + + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC 带通(24dB) + + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC 高通(24dB) + + RC High-pass 24 dB/oct + - Vocal Formant Filter - 人声移除过滤器 + + Vocal Formant + + 2x Moog 2x Moog - SV LowPass - SV 低通 + + SV Low-pass + - SV BandPass - SV 带通 + + SV Band-pass + - SV HighPass - SV 高通 + + SV High-pass + + SV Notch SV Notch + Fast Formant 快速共振峰(Formant) + Tripole Tripole @@ -3275,50 +6544,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView + TARGET 目标 - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - + FILTER 过滤器 - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - 你可以在这里选择对此乐器轨道要使用的内建过滤器。如果你想要改变声音的特征的话,过滤器就是不可或缺的工具。 - - - Hz - Hz - - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - - - - RESO - 共鸣 - - - Resonance: - 共鸣: - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - + FREQ 频率 - cutoff frequency: - 切除频率: + + Cutoff frequency: + 频谱刀频率: + + Hz + Hz + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. 包络和低频振荡 (LFO) 不被当前乐器支持。 @@ -3326,222 +6587,345 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack + + unnamed_track 未命名轨道 - Volume - 音量 - - - Panning - 声相 - - - Pitch - 音高 - - - FX channel - 效果通道 - - - Default preset - 预置 - - - With this knob you can set the volume of the opened channel. - 使用此旋钮可以设置开放通道的音量。 - - + Base note 基本音 + + First note + + + + + Last note + 上一个音符 + + + + Volume + 音量 + + + + Panning + 声相 + + + + Pitch + 音高 + + + Pitch range 音域范围 - Master Pitch + + Mixer channel + 效果通道 + + + + Master pitch 主音高 + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + 预置 + InstrumentTrackView + Volume 音量 + Volume: 音量: + VOL 音量 + Panning 声相 + Panning: 声相: + PAN 声相 + MIDI MIDI + Input 输入 + Output 输出 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 效果 %1: %2 InstrumentTrackWindow + GENERAL SETTINGS 常规设置 - Instrument volume - 乐器音量 + + Volume + 音量 + Volume: 音量: + VOL 音量 + Panning 声相 + Panning: 声相: + PAN 声相 + Pitch 音高 + Pitch: 音高: + cents 音分 cents + PITCH 音调 - FX channel - 效果通道 - - - FX - 效果 - - - Save preset - 保存预置 - - - XML preset file (*.xpf) - XML 预设文件 (*.xpf) - - + Pitch range (semitones) 音域范围(半音) + RANGE 范围 + + Mixer channel + 效果通道 + + + + CHANNEL + 效果 + + + Save current instrument track settings in a preset file 保存当前乐器轨道设置到预设文件 - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - 如果你想保存当前乐器轨道设置到预设文件, 请点击这里。稍后你可以在预设浏览器中双击以使用它。 - - - Use these controls to view and edit the next/previous track in the song editor. - 使用这些控制选项来查看和编辑在歌曲编辑器中的上个/下个轨道。 - - + SAVE 保存 + Envelope, filter & LFO + Chord stacking & arpeggio + Effects - + 效果 - MIDI settings - MIDI设置 + + MIDI + MIDI + Miscellaneous + 杂项 + + + + Save preset + 保存预置 + + + + XML preset file (*.xpf) + XML 预设文件 (*.xpf) + + + + Plugin + 插件 + + + + JackApplicationW + + + NSM applications cannot use abstract or absolute paths - Plugin + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + 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 设置为对数 - Please enter a new value between %1 and %2: - 请输入一个介于%1和%2之间的数值: + + + 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 关联通道 @@ -3549,10 +6933,12 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlDialog + Link Channels 连接通道 + Channel 通道 @@ -3560,28 +6946,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView + Link channels 连接通道 + Value: 值: - - Sorry, no help available. - 啊哦,这个没有帮助文档。 - 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之间的数值: @@ -3589,18 +6993,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri LeftRightNav + + + Previous 上个 + + + Next 下个 + Previous (%1) 上 (%1) + Next (%1) 下 (%1) @@ -3608,30 +7020,37 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoController + LFO Controller LFO 控制器 + Base value 基准值 + Oscillator speed 振动速度 + Oscillator amount 振动数量 + Oscillator phase 振动相位 + Oscillator waveform 振动波形 + Frequency Multiplier 频率加倍器 @@ -3639,115 +7058,132 @@ You can remove and move FX channels in the context menu, which is accessed by ri LfoControllerDialog + LFO LFO - LFO Controller - LFO 控制器 - - + BASE 基准 - Base amount: - 基础值: + + Base: + 基准值: - todo - + + FREQ + 频率 - SPD - 速度 + + LFO frequency: + LFO频率 - LFO-speed: - LFO 速度: - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - + + AMNT + 数量 + Modulation amount: 调制量: - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - + PHS 相位 + Phase offset: 相位差: - degrees - + + degrees + 角度 - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - + + Sine wave + 正弦波 - Click here for a sine-wave. - 点击这里使用正弦波。 + + Triangle wave + 三角波 - Click here for a triangle-wave. - 点击这里使用三角波。 + + Saw wave + 锯齿波 - Click here for a saw-wave. - 点击这里使用锯齿波。 + + Square wave + 方波 - Click here for a square-wave. - 点击这里使用方波。 + + Moog saw wave + Moog 锯齿波 - Click here for an exponential wave. - 点击这里使用指数爆炸波形。 + + Exponential wave + 指数爆炸波形 - Click here for white-noise. - 点击这里使用白噪音。 + + White noise + 白噪音 - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. - 点击这里使用自定义波形。 -双击选择文件。 + 自定义波形 +双击选择波形文件 - Click here for a moog saw-wave. - + + Mutliply modulation frequency by 1 + 调制频率乘以1 - AMNT - 数量 + + Mutliply modulation frequency by 100 + 调制评论乘以100 + + + + Divide modulation frequency by 100 + 调制评论除以100 - LmmsCore + Engine + Generating wavetables 正在生成波形表 + Initializing data structures 正在初始化数据结构 + Opening audio and midi devices 正在启动音频和 MIDI 设备 + Launching mixer threads 生在启动混音器线程 @@ -3755,397 +7191,510 @@ Double click to pick a file. MainWindow - &New - 新建(&N) - - - &Open... - 打开(&O)... - - - &Save - 保存(&S) - - - Save &As... - 另存为(&A)... - - - Import... - 导入... - - - E&xport... - 导出(&E)... - - - &Quit - 退出(&Q) - - - &Edit - 编辑(&E) - - - Settings - 设置 - - - &Tools - 工具(&T) - - - &Help - 帮助(&H) - - - Help - 帮助 - - - What's this? - 这是什么? - - - About - 关于 - - - Create new project - 新建工程 - - - Create new project from template - 从模版新建工程 - - - Open existing project - 打开已有工程 - - - Recently opened projects - 最近打开的工程 - - - Save current project - 保存当前工程 - - - Export current project - 导出当前工程 - - - Song Editor - 显示/隐藏歌曲编辑器 - - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - 点击这个按钮, 你可以显示/隐藏歌曲编辑器。在歌曲编辑器的帮助下, 你可以编辑歌曲播放列表并且设置哪个音轨在哪个时间播放。你还可以在播放列表中直接插入和移动采样(如 RAP 采样)。 - - - Beat+Bassline Editor - 显示/隐藏节拍+旋律编辑器 - - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. - 点击此按钮, 你就可以显示或隐藏节拍+低音线编辑器。你可以使用节拍+低音线编辑器来创建节拍, 并且还可以打开、添加、移除通道, 还能剪切、复制、粘贴节拍和低音线样本, 还有更多功能等你探索。 - - - Piano Roll - 显示/隐藏钢琴窗 - - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - 点击这里显示或隐藏钢琴窗。在钢琴窗的帮助下, 你可以很容易地编辑旋律。 - - - Automation Editor - 显示/隐藏自动控制编辑器 - - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - 点击这里显示或隐藏自动控制编辑器。在自动控制编辑器的帮助下, 你可以很简单地控制动态数值。 - - - FX Mixer - 显示/隐藏混音器 - - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - 点击这里显示或隐藏 FX 混音器。FX 混音器是管理你歌曲中不同音效的强大工具。你可以向不同的通道添加不同的效果。 - - - Project Notes - 显示/隐藏工程注释 - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - 点击这里显示或隐藏工程注释窗。在此窗口中你可以写下工程的注释。 - - - Controller Rack - 显示/隐藏控制器机架 - - - Untitled - 未标题 - - - LMMS %1 - LMMS %1 - - - Project not saved - 工程未保存 - - - The current project was modified since last saving. Do you want to save it now? - 此工程自上次保存后有了修改,你想保存吗? - - - 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的相关文档。 - - - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) - - - Version %1 - 版本 %1 - - + Configuration file 配置文件 + Error while parsing configuration file at line %1:%2: %3 解析配置文件发生错误(行%1:%2:%3) - Volumes - 音量 - - - Undo - 撤销 - - - Redo - 重做 - - - My Projects - 我的工程 - - - My Samples - 我的采样 - - - My Presets - 我的预设 - - - My Home - 我的主目录 - - - My Computer - 我的电脑 - - - &File - 文件(&F) - - - &Recently Opened Projects - 最近打开的工程(&R) - - - Save as New &Version - 保存为新版本(&V) - - - E&xport Tracks... - 导出音轨(&X)... - - - Online Help - 在线帮助 - - - What's This? - 这是什么? - - - Open Project - 打开工程 - - - Save Project - 保存工程 - - - 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. - 运行一个新的默认会话并且删除恢复文件。此操作无法撤销。 - - - Preparing plugin browser - 正在准备插件浏览器 - - - Preparing file browsers - 正在准备文件浏览器 - - - Root directory - 根目录 - - - Loading background artwork - 正在加载背景图案 - - - New from template - 从模版新建工程 - - - Save as default template - 保存为默认模板 - - - &View - 视图 (&V) - - - Toggle metronome - 开启/关闭节拍器 - - - Show/hide Song-Editor - 显示/隐藏歌曲编辑器 - - - Show/hide Beat+Bassline Editor - 显示/隐藏节拍+旋律编辑器 - - - Show/hide Piano-Roll - 显示/隐藏钢琴窗 - - - Show/hide Automation Editor - 显示/隐藏自动控制编辑器 - - - Show/hide FX Mixer - 显示/隐藏混音器 - - - Show/hide project notes - 显示/隐藏工程注释 - - - Show/hide controller rack - 显示/隐藏控制器机架 - - - Recover session. Please save your work! - 恢复会话。请保存你的工作! - - - 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? - 这个工程已从上一个会话中恢复。它现在没有被保存, 并且如果你不保存, 它将会丢失。你现在想保存它吗? - - - LMMS Project - LMMS 工程 - - - LMMS Project Template - LMMS 工程模板 - - - Overwrite default template? - 覆盖默认的模板? - - - This will overwrite your current default template. - 这将会覆盖你的当前默认模板。 - - - Smooth scroll - 平滑滚动 - - - Enable note labels in piano roll - 在钢琴窗中显示音号 - - - Save project template - 保存工程模板 - - - Volume as dBFS - 以 dBFS 为单位显示音量 - - + 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 拍子记号 @@ -4153,21 +7702,44 @@ Please make sure you have write permission to the file and the directory contain MeterModel + Numerator 分子 + Denominator 分母 + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController + MIDI Controller MIDI控制器 + unnamed_midi_controller 未命名的 MIDI 控制器 @@ -4175,18 +7747,43 @@ Please make sure you have write permission to the file and the directory contain MidiImport + + Setup incomplete 设置不完整 - You do not have 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 文件后将会没有声音。你需要下载一个通用 MIDI (GM) 的 Soundfont, 并且在设置对话框中选中后再试一次。 + + 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 轨道 @@ -4194,541 +7791,911 @@ Please make sure you have write permission to the file and the directory contain 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 + + + + + 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 + 文件(&F) + + + + &Edit + 编辑(&E) + + + + &Quit + 退出(&Q) + + + + &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 固定输出力度 - Output MIDI program - MIDI 输出程序 - - - Receive MIDI-events - 接受 MIDI 事件 - - - Send MIDI-events - 发送 MIDI 事件 - - + Fixed output note 固定输出音符 + + Output MIDI program + MIDI 输出程序 + + + Base velocity 基准力度 + + + Receive MIDI-events + 接受 MIDI 事件 + + + + Send MIDI-events + 发送 MIDI 事件 + MidiSetupWidget - DEVICE + + Device 设备 MonstroInstrument - Osc 1 Volume - Osc1音量 + + Osc 1 volume + 振荡器1音量 - Osc 1 Panning - Osc1声相 + + Osc 1 panning + 振荡器1声相 - Osc 1 Coarse detune - + + Osc 1 coarse detune + 振荡器1声调粗调 - Osc 1 Fine detune left - + + Osc 1 fine detune left + 振荡器1左声道微调 - Osc 1 Fine detune right - + + Osc 1 fine detune right + 振荡器1右声道微调 - Osc 1 Stereo phase offset - + + Osc 1 stereo phase offset + 振荡器1立体声相位差 - Osc 1 Pulse width - + + Osc 1 pulse width + 振荡器1脉冲宽度 - Osc 1 Sync send on rise - + + Osc 1 sync send on rise + 振荡器1起音时发送同步 - Osc 1 Sync send on fall - + + Osc 1 sync send on fall + 振荡器1收音时发送同步 - Osc 2 Volume - + + Osc 2 volume + 振荡器2音量 - Osc 2 Panning - + + Osc 2 panning + 振荡器2声相 - Osc 2 Coarse detune - + + Osc 2 coarse detune + 振荡器2音调粗调 - Osc 2 Fine detune left - + + Osc 2 fine detune left + 振荡器2左声道微调 - Osc 2 Fine detune right - + + Osc 2 fine detune right + 振荡器2右声道微调 - Osc 2 Stereo phase offset - + + Osc 2 stereo phase offset + 振荡器2立体声相位差 - Osc 2 Waveform - + + Osc 2 waveform + 振荡器2波形 - Osc 2 Sync Hard - + + Osc 2 sync hard + 振荡器2硬同步 - Osc 2 Sync Reverse - + + Osc 2 sync reverse + 振荡器2反向同步 - Osc 3 Volume - + + Osc 3 volume + 振荡器3音量 - Osc 3 Panning - + + Osc 3 panning + 振荡器3声相 - Osc 3 Coarse detune - + + Osc 3 coarse detune + 振荡器3音调粗调 + Osc 3 Stereo phase offset - + 振荡器3立体声相位差 - Osc 3 Sub-oscillator mix - + + Osc 3 sub-oscillator mix + 振荡器3分震荡器混合 - Osc 3 Waveform 1 - + + Osc 3 waveform 1 + 振荡器3波形1 - Osc 3 Waveform 2 - + + Osc 3 waveform 2 + 振荡器3波形2 - Osc 3 Sync Hard - + + Osc 3 sync hard + 振荡器3硬同步 - Osc 3 Sync Reverse - + + Osc 3 Sync reverse + 振荡器3反向同步 - LFO 1 Waveform - + + LFO 1 waveform + LFO1 波形 - LFO 1 Attack - + + LFO 1 attack + LFO1 打进 - LFO 1 Rate - + + LFO 1 rate + LFO1 频率 - LFO 1 Phase - + + LFO 1 phase + LFO1 相位 - LFO 2 Waveform - + + LFO 2 waveform + LFO2 波形 - LFO 2 Attack - + + LFO 2 attack + LFO 2 打进 - LFO 2 Rate - + + LFO 2 rate + LFO 2 频率 - LFO 2 Phase - + + LFO 2 phase + LFO 2 相位 - Env 1 Pre-delay - + + Env 1 pre-delay + 包络 1 预延迟 - Env 1 Attack - + + Env 1 attack + 包络 1 打进 - Env 1 Hold - + + Env 1 hold + 包络 1 持续 - Env 1 Decay - + + Env 1 decay + 包络 1 衰减 - Env 1 Sustain - + + Env 1 sustain + 包络 1 延音 - Env 1 Release - + + Env 1 release + 包络 1 释放 - Env 1 Slope - + + Env 1 slope + 包络 1 坡度 - Env 2 Pre-delay - + + Env 2 pre-delay + 包络 2 预延迟 - Env 2 Attack - + + Env 2 attack + 包络 2 打进 - Env 2 Hold - + + Env 2 hold + 包络 2 持续 - Env 2 Decay - + + Env 2 decay + 包络 2 衰减 - Env 2 Sustain - + + Env 2 sustain + 包络 2 延音 - Env 2 Release - + + Env 2 release + 包络 2 释放 - Env 2 Slope - + + Env 2 slope + 包络 2 坡度 - Osc2-3 modulation - + + Osc 2+3 modulation + 振荡器2+3 调制 + Selected view 选定的视图 - Vol1-Env1 - + + Osc 1 - Vol env 1 + 振荡器 1 音量包络 1 - Vol1-Env2 - + + Osc 1 - Vol env 2 + 振荡器 1 音量包络2 - Vol1-LFO1 - + + Osc 1 - Vol LFO 1 + 振荡器 1 音量LFO 1 - Vol1-LFO2 - + + Osc 1 - Vol LFO 2 + 振荡器 1 音量LFO 2 - Vol2-Env1 - + + Osc 2 - Vol env 1 + 振荡器 2 音量包络 1 - Vol2-Env2 - + + Osc 2 - Vol env 2 + 振荡器 2 音量包络2 - Vol2-LFO1 - + + Osc 2 - Vol LFO 1 + 振荡器 2 音量LFO 1 - Vol2-LFO2 - + + Osc 2 - Vol LFO 2 + 振荡器 2 音量LFO 2 - Vol3-Env1 - + + Osc 3 - Vol env 1 + 振荡器 3 音量包络 1 - Vol3-Env2 - + + Osc 3 - Vol env 2 + 振荡器 3 音量包络 2 - Vol3-LFO1 - + + Osc 3 - Vol LFO 1 + 振荡器 3 音量LFO 1 - Vol3-LFO2 - + + Osc 3 - Vol LFO 2 + 振荡器 3 音量LFO 2 - Phs1-Env1 - + + Osc 1 - Phs env 1 + 振荡器 1 相位包络 1 - Phs1-Env2 - + + Osc 1 - Phs env 2 + 振荡器 1 相位包络 2 - Phs1-LFO1 - + + Osc 1 - Phs LFO 1 + 振荡器 1 相位LFO 1 - Phs1-LFO2 - + + Osc 1 - Phs LFO 2 + 振荡器 1 相位LFO 2 - Phs2-Env1 - + + Osc 2 - Phs env 1 + 振荡器 2 相位包络 1 - Phs2-Env2 - + + Osc 2 - Phs env 2 + 振荡器 2 相位包络 2 - Phs2-LFO1 - + + Osc 2 - Phs LFO 1 + 振荡器 2 相位LFO 1 - Phs2-LFO2 - + + Osc 2 - Phs LFO 2 + 振荡器 2 相位LFO 2 - Phs3-Env1 - + + Osc 3 - Phs env 1 + 振荡器 3 相位包络 1 - Phs3-Env2 - + + Osc 3 - Phs env 2 + 振荡器 3 相位包络 2 - Phs3-LFO1 - + + Osc 3 - Phs LFO 1 + 振荡器 3 相位LFO 1 - Phs3-LFO2 - + + Osc 3 - Phs LFO 2 + 振荡器 3 相位LFO 2 - Pit1-Env1 - + + Osc 1 - Pit env 1 + 振荡器 1 音调包络 1 - Pit1-Env2 - + + Osc 1 - Pit env 2 + 振荡器 1 音调包络 2 - Pit1-LFO1 - + + Osc 1 - Pit LFO 1 + 振荡器 1 音调LFO 1 - Pit1-LFO2 - + + Osc 1 - Pit LFO 2 + 振荡器 1 音调LFO 2 - Pit2-Env1 - + + Osc 2 - Pit env 1 + 振荡器 2 音调包络 1 - Pit2-Env2 - + + Osc 2 - Pit env 2 + 振荡器 2 音调包络 2 - Pit2-LFO1 - + + Osc 2 - Pit LFO 1 + 振荡器 2 音调LFO 1 - Pit2-LFO2 - + + Osc 2 - Pit LFO 2 + 振荡器 2 音调LFO 2 - Pit3-Env1 - + + Osc 3 - Pit env 1 + 振荡器 3 音调包络 1 - Pit3-Env2 - + + Osc 3 - Pit env 2 + 振荡器 3 音调包络 2 - Pit3-LFO1 - + + Osc 3 - Pit LFO 1 + 振荡器 3 音调LFO 1 - Pit3-LFO2 - + + Osc 3 - Pit LFO 2 + 振荡器 3 音调LFO 2 - PW1-Env1 - + + Osc 1 - PW env 1 + 振荡器 1 脉冲包络 1 - PW1-Env2 - + + Osc 1 - PW env 2 + 振荡器 1 脉冲包络 2 - PW1-LFO1 - + + Osc 1 - PW LFO 1 + 振荡器 1 脉冲LFO 1 - PW1-LFO2 - + + Osc 1 - PW LFO 2 + 振荡器 1 脉冲LFO 2 - Sub3-Env1 - + + Osc 3 - Sub env 1 + 振荡器 3 分支包络 1 - Sub3-Env2 - + + Osc 3 - Sub env 2 + 振荡器 3 分支包络 2 - Sub3-LFO1 - + + Osc 3 - Sub LFO 1 + 振荡器 3 分支LFO 1 - Sub3-LFO2 - + + 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 随机平滑 @@ -4736,278 +8703,240 @@ Please make sure you have write permission to the file and the directory contain MonstroView + Operators view - - - - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - + 操作视图 + Matrix view 矩阵视图 - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - Mix Osc2 with Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - - - - Modulate frequency of Osc3 with Osc2 - - - - Modulate phase of Osc3 with Osc2 - - - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - Choose waveform for oscillator 2. - 为振荡器2选择波形 - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - PHS controls the phase offset of the LFO. - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - + + + Volume 音量 + + + Panning 声相 + + + Coarse detune 音高粗调 + + + semitones 半音 - Finetune left + + + Fine tune left 左声道微调 + + + + cents 音分 - Finetune right + + + 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 调制量 @@ -5015,117 +8944,145 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator MultitapEchoControlDialog + Length 长度 + Step length: 步进长度: + Dry 干声 - Dry Gain: + + Dry gain: 干声增益: + Stages + 低通层数 + + + + Low-pass stages: - Lowpass stages: - - - + Swap inputs 互换输入 - Swap left and right input channel for reflections - 互换左右通道的输入以达到反射效果 + + Swap left and right input channels for reflections + NesInstrument - Channel 1 Coarse detune + + Channel 1 coarse detune - Channel 1 Volume - 通道 1 音量 - - - Channel 1 Envelope length - 通道 1 包络长度 - - - Channel 1 Duty cycle - 通道 1 占空比 - - - Channel 1 Sweep amount + + Channel 1 volume - Channel 1 Sweep rate + + 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 - 通道 2 包络长度 - - - Channel 2 Duty cycle - 通道 2 占空比 - - - Channel 2 Sweep amount + + Channel 2 envelope length - Channel 2 Sweep rate + + Channel 2 duty cycle - Channel 3 Coarse detune + + Channel 2 sweep amount - Channel 3 Volume - 通道 3 音量 - - - Channel 4 Volume - 通道 4 音量 - - - Channel 4 Envelope length - 通道 4 包络长度 - - - Channel 4 Noise frequency - 通道 4 噪音频率 - - - Channel 4 Noise frequency sweep + + 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 颤音 @@ -5133,196 +9090,447 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 + + 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 volume - Osc %1 音量 - - - Osc %1 panning - Osc %1 声像 - - - 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 - 调制类型 %1 - - + 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: 通道预设 + Bank selector 音色选择器 + Bank + Program selector 乐器选择器 + Patch 音色 + Name 名称 + OK 确定 + Cancel 取消 @@ -5330,77 +9538,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - Open other patch - 打开其他音色 - - - Click here to open another patch-file. Loop and Tune settings are not reset. - 点击这里打开另一个音色文件。循环和调音设置不会被重设。 + + Open patch + + Loop 循环 + Loop mode 循环模式 - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - 在这里你可以开关循环模式。如果启用,PatMan 会使用文件中的循环信息。 - - + Tune 调音 + Tune mode 调音模式 - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - 这里可以开关调音模式。如果启用,PatMan 会将采样调成和音符一样的频率。 - - + No file selected 未选择文件 + Open patch file 打开音色文件 + Patch-Files (*.pat) 音色文件 (*.pat) - PatternView + MidiClipView + Open in piano-roll 在钢琴窗中打开 + + Set as ghost in piano-roll + + + + Clear all notes 清除所有音符 + Reset name 重置名称 + Change name 修改名称 + Add steps 添加音阶 + Remove steps 移除音阶 + Clone Steps 复制音阶 @@ -5408,14 +9624,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 而可能没有正确连接。请确保峰值控制器正常连接后再次保存次文件。我们对给你造成的不便深表歉意。 @@ -5423,10 +9642,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerDialog + PEAK 峰值 + LFO Controller LFO 控制器 @@ -5434,327 +9655,519 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog + BASE 基准 - Base amount: - 基础值: - - - Modulation amount: - 调制量: - - - Attack: - 打击声: - - - Release: - 释音: + + Base: + 基准值: + AMNT 数量 + + Modulation amount: + 调制量: + + + MULT + 增幅 + + + + Amount multiplicator: - Amount Multiplicator: - - - + ATCK 打击 + + Attack: + 打击声: + + + DCAY 衰减 + + Release: + 释音: + + + + TRSH + + + + Treshold: 阀值: - TRSH + + Mute output + 输出静音 + + + + Absolute value PeakControllerEffectControls + Base value 基准值 + Modulation amount 调制量 - Mute output - 输出静音 - - + Attack 打进声 + Release 释放 - Abs Value - - - - Amount Multiplicator - - - + Treshold 阀值 + + + Mute output + 输出静音 + + + + Absolute value + + + + + Amount multiplicator + + PianoRoll - Please open a pattern by double-clicking on it! - 双击打开片段! - - - Last note - 上一个音符 - - - Note lock - 音符锁定 - - + Note Velocity 音符音量 + Note Panning 音符声相偏移 + Mark/unmark current semitone 标记/取消标记当前半音 - Mark current scale - - - - Mark current chord - 标记当前和弦 - - - Unmark all - 取消标记所有 - - - No scale - - - - No chord - 没有和弦 - - - Velocity: %1% - 音量:%1% - - - Panning: %1% left - 声相:%1% 偏左 - - - Panning: %1% right - 声相:%1% 偏右 - - - Panning: center - 声相:居中 - - - Please enter a new value between %1 and %2: - 请输入一个介于 %1 和 %2 的值: - - + 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 pattern (Space) + + 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) 录制音符一边播放 - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) 停止当前片段(空格) - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - 点击这里播放当前的片段。在编辑时,此功能非常有用。在播放到末尾时,将会自动从头再次播放。 - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - 点击这里从指定通道的 MIDI 设备或虚拟钢琴录制音符到当前片段。录制时,所有音符都将被添加到此片段,在录制后你就可以自由地编辑它们。 - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - 点击这里从指定通道的 MIDI 设备或虚拟钢琴录制音符到当前片段。录制时,所有音符都将被添加到此片段,并且你将会听到对应的声音或旋律。 - - - Click here to stop playback of current pattern. - 点击这里停止播放当前的片段。 - - - Draw mode (Shift+D) - 绘制模式 (Shift+D) - - - Erase mode (Shift+E) - 擦除模式 (Shift+E) - - - Select mode (Shift+S) - 选择模式 (Shift+S) - - - Detune mode (Shift+T) - 失谐模式 (Shift+T) - - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - 点击这里将会启用绘制模式。在这个模式下,你可以增加、移动、加长、缩短音符。在大多数情况下,这是默认的模式。你还可以按 'Shift+D' 激活此模式。如果你想暂时切换到选定模式可以按住 %1 。 - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - 点击启用擦除模式。此模式下你可以擦除音符。你可以按键盘上的 'Shift+E' 启用此模式。 - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - 点击这里将会启用选定模式。在这个模式下你可以选定多个音符。你还可以在绘制模式下按住 %1 来暂时切换到选定模式。 - - - Click here and detune mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - Cut selected notes (%1+X) - 剪切选定音符 (%1+X) - - - Copy selected notes (%1+C) - 复制选定音符 (%1+C) - - - Paste notes from clipboard (%1+V) - 从剪贴板粘贴音符 (%1+V) - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - 点击这里将会把剪切板里面的音符粘贴到第一个可见的小节。 - - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. - 这个选项控制了坐标轴的放大率。在进行某些任务时会很有用。在平常的编辑中,放大率应该根据你的片段中最短的那个音符设定。 - - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. - 'Q' 的意思是量化 (Quantization),这个控制了网格的大小,音符和控制点的对齐。量化值越小,你就能在钢琴窗中画出更小的音符,或者在自动控制编辑器中画出更精确的控制点。 - - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited - 你可以在此选项中选择新音符的长度。“上一个音符”选项表示 LMMS 将会使用你所编辑的上一个音符的长度 - - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! - - - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. - - - + 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 pattern + + + Piano-Roll - no clip 钢琴窗 - 没有片段 - Quantize - 量化 + + + 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”失败! @@ -5762,221 +10175,1293 @@ Reason: "%2" PluginBrowser + + Instrument Plugins + + + + Instrument browser 乐器浏览器 + Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. 将乐器插件拖入歌曲编辑器, 节拍低音线编辑器, 或者现有的乐器轨道。 - Instrument Plugins + + 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. + + + + + 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 + 带 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 + + + + 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 + + + + + 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 + + + + + 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 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! LMMS插件 %1 没有一个插件描述符命名为 %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 + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + 编辑 + + + + Remove + 移除 + + + + Plugin Name + + + + + Preset: + + + ProjectNotes - 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)... - - + 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-File (*.wav) - WAV-文件 (*.wav) - - - Compressed OGG-File (*.ogg) - 压缩的 OGG 文件(*.ogg) - - - FLAC-File (*.flac) + + WAV (*.wav) - Compressed MP3-File (*.mp3) + + 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 + 文件:%1 + + + File: 文件: + + + RecentProjectsMenu - File: %1 - 文件:%1 + + &Recently Opened Projects + 最近打开的工程(&R) RenameDialog + Rename... 重命名... @@ -5984,716 +11469,1606 @@ Reason: "%2" ReverbSCControlDialog + Input 输入 - Input Gain: + + Input gain: 输入增益: + Size + Size: + Color + Color: + Output 输出 - Output Gain: + + Output gain: 输出增益: ReverbSCControls - Input Gain - + + Input gain + 输入增益 + Size + Color - Output Gain + + 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 - Open audio file - 打开音频文件 - - - 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) - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - 所有音频文件 (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - - + Fail to open file + Audio files are limited to %1 MB in size and %2 minutes of playing time - - - SampleTCOView - double-click to select sample - 双击选择采样 + + 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 - Sample track - 采样轨道 - - + 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 - Setup LMMS - 设置LMMS + + Reset to default value + - General settings - 常规设置 + + Use built-in NaN handler + - BUFFER SIZE - 缓冲区大小 + + Settings + 设置 - Reset to default-value - 重置为默认值 + + + General + - MISC - 杂项 + + Graphical user interface (GUI) + + + Display volume as dBFS + 以 dBFS 为单位显示音量 + + + Enable tooltips 启用工具提示 - Show restart warning after changing settings - 在改变设置后显示重启警告 + + Enable master oscilloscope by default + - Compress project files per default - 默认压缩项目文件 + + Enable all note labels in piano roll + - One instrument track window mode - 单乐器轨道窗口模式 + + Enable compact track buttons + - HQ-mode for output audio-device - 对输出设备使用高质量输出 + + Enable one instrument-track-window mode + - Compact track buttons - 紧凑化轨道图标 + + 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 插件和主机回放 - Enable note labels in piano roll - 在钢琴窗中显示音号 - - - Enable waveform display by default - 默认启用波形图 - - + Keep effects running even without input 在没有输入时也运行音频效果 - Create backup file when saving a project - 保存工程时建立备份 + + + Audio + 音频 - LANGUAGE - 语言 + + Audio interface + - Paths - 路径 + + HQ mode for output audio device + + + Buffer size + + + + + + MIDI + MIDI + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + LMMS working directory LMMS工作目录 - VST-plugin directory - VST插件目录 + + VST plugins directory + + + LADSPA plugins directories + + + + + SF2 directory + SF2 目录 + + + + Default SF2 + + + + + GIG directory + GIG 目录 + + + + Theme directory + + + + Background artwork 背景图片 - STK rawwave directory - STK rawwave 目录 + + Some changes require restarting. + - Default Soundfont File - 默认 SoundFont 文件 + + Autosave interval: %1 + - Performance settings - 性能设置 + + Choose the LMMS working directory + - UI effects vs. performance - 界面特效 vs 性能 + + Choose your VST plugins directory + - Smooth scroll in Song Editor - 歌曲编辑器中启用平滑滚动 + + Choose your LADSPA plugins directory + - Show playback cursor in AudioFileProcessor - 在 AudioFileProcessor 中显示回放光标 + + Choose your default SF2 + - Audio settings - 音频设置 + + Choose your theme directory + - AUDIO INTERFACE - 音频接口 + + Choose your background picture + - MIDI settings - MIDI设置 - - - MIDI INTERFACE - MIDI接口 + + + Paths + 路径 + OK 确定 + Cancel 取消 - Restart LMMS - 重启LMMS - - - Please note that most changes won't take effect until you restart LMMS! - 请注意很多设置需要重启LMMS才可生效! - - + Frames: %1 Latency: %2 ms 帧数: %1 延迟: %2 毫秒 - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - 在这里,你可以设置 LMMS 所用缓冲区的大小。缓冲区越小,延迟越小,但声音质量和性能可能会受影响。 - - - Choose LMMS working directory - 选择 LMMS 工作目录 - - - Choose your VST-plugin directory - 选择 VST 插件目录 - - - Choose artwork-theme directory - 选择插图目录 - - - Choose LADSPA plugin directory - 选择 LADSPA 插件目录 - - - Choose STK rawwave directory - 选择 STK rawwave 目录 - - - Choose default SoundFont - 选择默认的 SoundFont - - - Choose background artwork - 选择背景图片 - - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - 在这里你可以选择你想要的音频接口。取决于你的系统和编译时的设置, 你可以选择 ALSA, JACK, OSS 等选项。在下面的方框中你可以设置音频接口的控制项目。 - - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - 在这里你可以选择你想要的 MIDI 接口。取决于你的系统和编译时的设置, 你可以选择 ALSA, OSS 等选项。在下面的方框中你可以设置 MIDI 接口的控制项目。 - - - Reopen last project on start - 启动时打开最近的项目 - - - Directories - 目录 - - - Themes directory - 主题文件目录 - - - GIG directory - GIG 目录 - - - SF2 directory - SF2 目录 - - - LADSPA plugin directories - LADSPA 插件目录 - - - Auto save - 自动保存 - - + Choose your GIG directory 选择 GIG 目录 + Choose your SF2 directory 选择 SF2 目录 + minutes 分钟 + minute 分钟 - Display volume as dBFS - 以 dBFS 为单位显示音量 - - - Enable auto-save - 启用自动保存 - - - Allow auto-save while playing - 允许在播放时自动保存 - - + Disabled + + + SidInstrument - Auto-save interval: %1 - 自动保存间隔:%1 + + Cutoff frequency + 切除频率 - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. - 设置自动保存时间间隔为 %1。 -请您也时常手动保存您的项目。如果您的设备较旧,您可以选择禁用“允许在播放时自动保存”这个选项。 + + Resonance + 共鸣 + + + + 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 + + + Close + 关闭 Song + Tempo 节奏 + Master volume 主音量 + Master pitch 主音高 - Project saved - 工程已保存 + + Aborting project load + - The project %1 is now saved. - 工程 %1 已保存。 + + Project file contains local paths to plugins, which could be used to run malicious code. + - Project NOT saved. - 工程 **没有** 保存。 - - - The project %1 was not saved! - 工程%1没有保存! - - - Import file - 导入文件 - - - MIDI sequences - MIDI 音序器 - - - Hydrogen projects - Hydrogen工程 - - - All file types - 所有类型 - - - Empty project - 空工程 - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - 这个工程是空的所以就算导出也没有意义,请在歌曲编辑器中加入一点声音吧! - - - Select directory for writing exported tracks... - 选择写入导出音轨的目录... - - - untitled - 未标题 - - - Select file for project-export... - 为工程导出选择文件... - - - The following errors occured while loading: - 载入时发生以下错误: - - - MIDI File (*.mid) - MIDI 文件 (*.mid) + + Can't load project: Project file contains local paths to plugins. + + LMMS Error report LMMS 错误报告 - Save project - 保存工程 + + (repeated %1 times) + + + + + The following errors occurred while loading: + SongEditor + Could not open file 无法打开文件 - Could not write 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 似乎包含错误,无法被加载。 - Tempo - 节奏 - - - TEMPO/BPM - 节奏/BPM - - - tempo of song - 歌曲的节奏 - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). - 歌曲的节拍是以拍每分 (BPM)计算的。如果你想改变你歌曲的节拍, 你就需要改变这个数值。如每个小节有4拍, 那么以 BPM 计算的节拍数就是一分钟内会播放多少个四分之一个小节(或是4分钟内会播放多少个小节)。 - - - High quality mode - 高质量模式 - - - Master volume - 主音量 - - - master volume - 主音量 - - - Master pitch - 主音高 - - - master pitch - 主音高 - - - Value: %1% - 值: %1% - - - Value: %1 semitones - 值: %1 半音程 - - - 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. - 无法打开 %1 写入数据。或许没有权限修改此文件。请确保您拥有对此文件的写权限,然后重试。 - - - template - 模板 - - - project - 工程文件 - - + Version difference 版本差异 - This %1 was created with LMMS %2. - 这个%1是由 LMMS 版本 %2 创建的。 + + template + 模板 + + + + project + 工程文件 + + + + Tempo + 节奏 + + + + TEMPO + + + + + Tempo in BPM + + + + + High quality mode + 高质量模式 + + + + + + Master volume + 主音量 + + + + + + Master pitch + 主音高 + + + + Value: %1% + 值: %1% + + + + Value: %1 semitones + 值: %1 半音程 SongEditorWindow + Song-Editor 歌曲编辑器 + Play song (Space) 播放歌曲(空格) + Record samples from Audio-device 从音频设备录制样本 + Record samples from Audio-device while playing song or BB track 在播放歌曲或BB轨道时从音频设备录入样本 + Stop song (Space) 停止歌曲(空格) - Add beat/bassline - 添加节拍/Bassline - - - Add sample-track - 添加采样轨道 - - - Add automation-track - 添加自动控制轨道 - - - Draw mode - 绘制模式 - - - Edit mode (select and move) - 编辑模式(选定和移动) - - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - 点击这里完整播放歌曲。将从绿色歌曲标记开始播放。在播放的同时可以对它进行移动。 - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - 点击这里停止播放,歌曲位置标记会跳到歌曲的开头。 - - + Track actions 轨道动作 + + Add beat/bassline + 添加节拍/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 缩放控制 - - - SpectrumAnalyzerControlDialog - Linear spectrum - 线性频谱图 + + Horizontal zooming + 水平缩放 - Linear Y axis - 线性 Y 轴 + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControls + StepRecorderWidget - Linear spectrum - 线性频谱图 + + Hint + 提示 - Linear Y axis - 线性 Y 轴 - - - Channel mode - 通道模式 + + Move recording curser using <Left/Right> arrows + SubWindow + Close 关闭 + Maximize 最大化 + Restore 还原 @@ -6701,81 +13076,110 @@ Remember to also save your project manually. You can choose to disable saving wh TabWidget + + Settings for %1 %1 的设定 + + TemplatesMenu + + + New from template + 从模版新建工程 + + TempoSyncKnob + + 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分音符 + Synced to 32nd Note 同步为32分音符 @@ -6783,30 +13187,37 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units - 点击改变时间单位 + + Time units + + MIN 分钟 + SEC + MSEC 毫秒 + BAR 小节 + BEAT + TICK @@ -6814,45 +13225,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - Enable/disable auto-scrolling - 启用/禁用自动滚动 + + Auto scrolling + - Enable/disable loop-points - 启用/禁用循环点 + + Loop points + - After stopping go back to begin - 停止后前往开头 + + 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> 禁用磁性吸附。 - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - 按住 <Shift> 移动起始循环点;按住 <%1> 禁用磁性吸附。 - Track + Mute 静音 + Solo 独奏 @@ -6860,305 +13276,492 @@ Remember to also save your project manually. You can choose to disable saving wh 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... 请稍等... - Importing MIDI-file... - 正在导入 MIDI-文件... + + Loading cancelled + + + Project loading was cancelled. + + + + Loading Track %1 (%2/Total %3) 正在加载轨道 %1 (第 %2 个/共 %3 个) + + + Importing MIDI-file... + 正在导入 MIDI-文件... + - TrackContentObject + Clip + Mute 静音 - TrackContentObjectView + ClipView + Current position 当前位置 - Hint - 提示 - - - Press <%1> and drag to make a copy. - 按住 <%1> 并拖动以创建副本。 - - + Current length 当前长度 - Press <%1> for free resizing. - 按住 <%1> 自由调整大小。 - - + + %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 + + + Paste + 粘贴 + TrackOperationsWidget - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - 按住 <%1> 的同时拖动移动柄复制并移动此轨道。 + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + - Actions for this track - 对此轨道可进行的操作 + + Actions + + + Mute 静音 + + Solo 独奏 - Mute this track - 静音此轨道 + + 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 清除此轨道 - FX %1: %2 + + Channel %1: %2 效果 %1: %2 + + Assign to new mixer Channel + 分配到新的效果通道 + + + Turn all recording on 打开所有录制 + Turn all recording off 关闭所有录制 - Assign to new FX Channel - 分配到新的效果通道 + + Change color + 改变颜色 + + + + Reset color to default + 重置颜色 + + + + Set random color + + + + + Clear clip colors + TripleOscillatorView - Use phase modulation for modulating oscillator 1 with oscillator 2 + + Modulate phase of oscillator 1 by oscillator 2 - Use amplitude modulation for modulating oscillator 1 with oscillator 2 + + Modulate amplitude of oscillator 1 by oscillator 2 - Mix output of oscillator 1 & 2 + + Mix output of oscillators 1 & 2 + Synchronize oscillator 1 with oscillator 2 同步振荡器 1 和振荡器 2 - Use frequency modulation for modulating oscillator 1 with oscillator 2 - 将振荡器 1 的频率调制应用给振荡器 2 - - - Use phase modulation for modulating oscillator 2 with oscillator 3 + + Modulate frequency of oscillator 1 by oscillator 2 - Use amplitude modulation for modulating oscillator 2 with oscillator 3 + + Modulate phase of oscillator 2 by oscillator 3 - Mix output of oscillator 2 & 3 + + Modulate amplitude of oscillator 2 by oscillator 3 + + Mix output of oscillators 2 & 3 + + + + Synchronize oscillator 2 with oscillator 3 同步振荡器 2 和振荡器 3 - Use frequency modulation for modulating oscillator 2 with oscillator 3 - 将振荡器 2 的频率调制应用给振荡器 3 + + Modulate frequency of oscillator 2 by oscillator 3 + + Osc %1 volume: - - - - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - + 振荡器%1音量 + Osc %1 panning: - - - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - + 振荡器%1声相 + Osc %1 coarse detuning: - + 振荡器%1音调粗调 + semitones 半音 - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - - - + Osc %1 fine detuning left: - + 振荡器%1左声道微调 + + cents 音分 cents - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - + Osc %1 fine detuning right: - - - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - + 振荡器%1右声道微调 + Osc %1 phase-offset: - + 振荡器%1相位偏移 + + degrees - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - - - + Osc %1 stereo phase-detuning: + 振荡器%1立体相位偏移 + + + + Sine wave + 正弦波 + + + + Triangle wave + 三角波 + + + + Saw wave + 锯齿波 + + + + Square wave + 方波 + + + + Moog-like saw wave - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. + + Exponential wave + 指数爆炸波形 + + + + White noise + 白噪音 + + + + User-defined wave + + + + + VecControls + + + Display persistence amount - Use a sine-wave for current oscillator. - 为当前振荡器使用正弦波。 - - - Use a triangle-wave for current oscillator. - 为当前振荡器使用三角波。 - - - Use a saw-wave for current oscillator. - 为当前振荡器使用锯齿波。 - - - Use a square-wave for current oscillator. - 为当前振荡器使用方波。 - - - Use a moog-like saw-wave for current oscillator. + + Logarithmic scale - Use an exponential wave for current oscillator. - 为当前振荡器使用指数爆炸波形。 + + High quality + + + + + VecControlsDialog + + + HQ + - Use white-noise for current oscillator. - 为当前振荡器使用白噪音。 + + Double the resolution and simulate continuous analog-like trace. + - Use a user-defined waveform for current oscillator. - 为当前振荡器使用用户自定波形。 + + 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? @@ -7166,156 +13769,117 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - Open other VST-plugin - 打开其他的VST插件 + + + Open VST plugin + - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. - 如果你想打开另一个 VST 插件。在点击此按牛后, 将会打开文件选择对话框, 你就可以选择你的 VST 插件文件了。 + + Control VST plugin from LMMS host + - Show/hide GUI - 显示/隐藏界面 - - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - 点此显示/隐藏VST插件的界面。 - - - Turn off all notes - 全部静音 - - - Open VST-plugin - 打开VST插件 - - - DLL-files (*.dll) - DLL-文件 (*.dll) - - - EXE-files (*.exe) - EXE-文件 (*.exe) - - - No VST-plugin loaded - 未载入VST插件 - - - Control VST-plugin from LMMS host - 从 LMMS 宿主控制 VST-插件 - - - Click here, if you want to control VST-plugin from host. - 如果你想从宿主控制 VST-插件, 请点击这里。 - - - Open VST-plugin preset - 打开 VST-插件预设 - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - 如果你想打开另一个 *.fxp, *.fxb VST 插件预设, 请点击这里。 + + Open VST plugin preset + + Previous (-) 上一个 (-) - Click here, if you want to switch to another VST-plugin preset program. - 如果你想切换到另一个 VST 插件预设,请点击这里。 - - + Save preset 保存预置 - Click here, if you want to save current VST-plugin preset program. - 点击这里, 如果你想保存当前 VST-插件预设。 - - + Next (+) 下一个 (+) - Click here to select presets that are currently loaded in VST. - 点击此处选择当前所加载 VST 的预设 + + Show/hide GUI + 显示/隐藏界面 + + Turn off all notes + 全部静音 + + + + DLL-files (*.dll) + DLL-文件 (*.dll) + + + + EXE-files (*.exe) + EXE-文件 (*.exe) + + + + No VST plugin loaded + + + + Preset 预置 + by 制造商 + - VST plugin control - VST插件控制 - - VisualizationWidget - - click to enable/disable visualization of master-output - 点击启用/禁用视觉化主输出 - - - Click to enable - 点击启用 - - VstEffectControlDialog + Show/hide 显示/隐藏 - Control VST-plugin from LMMS host - 从 LMMS 宿主控制 VST-插件 + + Control VST plugin from LMMS host + - Click here, if you want to control VST-plugin from host. - 如果你想从 LMMS 宿主控制 VST-插件, 请点击这里。 - - - Open VST-plugin preset - 打开 VST-插件预设 - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. - 如果你想打开另一个 *.fxp, *.fxb VST 插件预设, 请点击这里。 + + Open VST plugin preset + + Previous (-) 上一个 (-) - Click here, if you want to switch to another VST-plugin preset program. - 如果你想切换到另一个 VST 插件预设,请点击这里。 - - + Next (+) 下一个 (+) - Click here to select presets that are currently loaded in VST. - 点击此处选择当前所加载 VST 的预设。 - - + Save preset 保存预置 - Click here, if you want to save current VST-plugin preset program. - 点击这里, 如果你想保存当前 VST-插件预设。 - - + + Effect by: 音效制作: + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -7323,173 +13887,207 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin - Loading plugin - 载入插件 + + + 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 - Please wait while loading VST plugin... - 正在载入VST插件,请稍候…… + + Loading plugin + 载入插件 - The VST plugin %1 could not be loaded. - 无法载入VST插件 %1。 + + 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 选定的图像 @@ -7497,2786 +14095,2251 @@ Please make sure you have read-permission to the file and the directory containi WatsynView - 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 with output of A2 - - - - Ring-modulate A1 and A2 - - - - Modulate phase of A1 with output of A2 - - - - Mix output of B2 to B1 - - - - Modulate amplitude of B1 with output of B2 - - - - Ring-modulate B1 and B2 - - - - Modulate phase of B1 with output of B2 - - - - Draw your own waveform here by dragging your mouse on this graph. - 使用鼠标在此图像上绘制你自己的波形。 - - - Load waveform - 加载波形 - - - Click to load a waveform from a sample file - 点击从文件加载波形 - - - Phase left - - - - Click to shift phase by -15 degrees - - - - Phase right - - - - Click to shift phase by +15 degrees - - - - Normalize - 标准化 - - - Click to normalize - 标准化 - - - Invert - 反转 - - - Click to invert - - - - Smooth - 平滑 - - - Click to smooth - 平滑化 - - - Sine wave - 正弦波 - - - Click for sine wave - 点击这里使用正弦波。 - - - Triangle wave - 三角波 - - - Click for triangle wave - 点击这里使用三角波。 - - - Click for saw wave - 点击这里使用锯齿波。 - - - Square wave - 方波 - - - Click for square wave - 点击这里使用方波。 - - + + + + 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 + 选择振荡器 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 + + + 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 frequency - Filter Resonance + + Filter resonance + Bandwidth 带宽 - FM Gain - FM 增益 - - - Resonance Center Frequency + + FM gain - Resonance Bandwidth + + Resonance center frequency - Forward MIDI Control Change Events - 转发 MIDI 控制的变更事件 + + Resonance bandwidth + + + + + Forward MIDI control change events + ZynAddSubFxView - Show GUI - 显示图形界面 - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - 点击这里显示/隐藏 ZynAddSubFX 的图形界面 (GUI) 。 - - + Portamento: 滑音: + PORT 端口 - Filter Frequency: - 过滤器频率: + + Filter frequency: + + FREQ 频率 - Filter Resonance: + + Filter resonance: + RES + Bandwidth: 带宽: + BW - FM Gain: + + FM gain: + FM GAIN + Resonance center frequency: + RES CF + Resonance bandwidth: + RES BW - Forward MIDI Control Changes - 转发 MIDI 控制变化 + + Forward MIDI control changes + + + + + Show GUI + 显示图形界面 - audioFileProcessor + AudioFileProcessor + Amplify 增益 + Start of sample 采样起始 + End of sample 采样结尾 - Reverse sample - 反转采样 - - - Stutter - - - + Loopback point 循环点 + + Reverse sample + 反转采样 + + + Loop mode 循环模式 + + Stutter + + + + Interpolation mode 补间方式 + None + Linear 线性插补 + Sinc 辛格(Sinc)插补 + Sample not found: %1 采样未找到: %1 - bitInvader + BitInvader - Samplelength - 采样长度 + + Sample length + - bitInvaderView + BitInvaderView - Sample Length - 采样长度 - - - Sine wave - 正弦波 - - - Triangle wave - 三角波 - - - Saw wave - 锯齿波 - - - Square wave - 方波 - - - White noise wave - 白噪音 - - - User defined wave - 用户自定义波形 - - - Smooth - 平滑 - - - Click here to smooth waveform. - 点击这里平滑波形。 - - - Interpolation - 补间 - - - Normalize - 标准化 + + Sample length + + Draw your own waveform here by dragging your mouse on this graph. 使用鼠标在此图像上绘制你自己的波形。 - Click for a sine-wave. - 点击这里使用正弦波。 + + + Sine wave + 正弦波 - Click here for a triangle-wave. - 点击这里使用三角波。 + + + Triangle wave + 三角波 - Click here for a saw-wave. - 点击这里使用锯齿波。 + + + Saw wave + 锯齿波 - Click here for a square-wave. - 点击这里使用方波。 + + + Square wave + 方波 - Click here for white-noise. - 点击这里使用白噪音。 + + + White noise + 白噪音 - Click here for a user-defined shape. - 点击这里使用自定义波形。 - - - - dynProcControlDialog - - INPUT - 输入 - - - Input gain: - 输入增益: - - - OUTPUT - 输出 - - - Output gain: - 输出增益: - - - ATTACK - 打击声 - - - Peak attack time: + + + User-defined wave - RELEASE - 释放 - - - Peak release time: - - - - Reset waveform - 重置波形 - - - Click here to reset the wavegraph back to default - 点击这里重置波形为默认状态 - - + + Smooth waveform 平滑波形 - Click here to apply smoothing to wavegraph - 点击这里来使波形图更为平滑 + + Interpolation + 补间 - Increase wavegraph amplitude by 1dB + + Normalize + 标准化 + + + + DynProcControlDialog + + + INPUT + 输入 + + + + Input gain: + 输入增益: + + + + OUTPUT + 输出 + + + + Output gain: + 输出增益: + + + + ATTACK + 打击声 + + + + Peak attack time: - Click here to increase wavegraph amplitude by 1dB - 点击这里将波形增益值增加 1dB + + RELEASE + 释放 - Decrease wavegraph amplitude by 1dB + + Peak release time: - Click here to decrease wavegraph amplitude by 1dB - 点击这里将波形增益值减少 1dB - - - Stereomode Maximum + + + 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 - Stereomode Average + + Stereo mode: average + Process based on the average of both stereo channels - Stereomode Unlinked + + Stereo mode: unlinked + Process each stereo channel independently - dynProcControls + DynProcControls + Input gain 输入增益 + Output gain 输出增益 + Attack time 打击时间 + Release time 释放时间 + Stereo mode 双声道模式 - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - - - - Sine wave - 正弦波 - - - Click for a sine-wave. - 点击这里使用正弦波。 - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - 指数爆炸波形 - - - Click for an exponential wave. - - - - Saw wave - 锯齿波 - - - Click here for a saw-wave. - 点击这里使用锯齿波。 - - - User defined wave - 用户自定义波形 - - - Click here for a user-defined shape. - 点击这里使用自定义波形。 - - - Triangle wave - 三角波 - - - Click here for a triangle-wave. - 点击这里使用三角波。 - - - Square wave - 方波 - - - Click here for a square-wave. - 点击这里使用方波。 - - - White noise wave - 白噪音 - - - Click here for white-noise. - 点击这里使用白噪音。 - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - - - - O2 panning: - - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - Assign to: - 分配给: - - - New FX Channel - 新的效果通道 - - graphModel + Graph 图形 - kickerInstrument + KickerInstrument + Start frequency 起始频率 + End frequency 结束频率 - Gain - 增益 - - + Length 长度 - Distortion Start - 起始失真度 + + Start distortion + - Distortion End - 结束失真度 + + End distortion + - Envelope Slope - 包络线倾斜度 + + Gain + 增益 + + Envelope slope + + + + Noise 噪音 + Click 力度 - Frequency Slope - 频率倾斜度 + + Frequency slope + + Start from note 从哪个音符开始 + End to note 到哪个音符结束 - kickerInstrumentView + KickerInstrumentView + Start frequency: 起始频率: + End frequency: 结束频率: + + Frequency slope: + + + + Gain: 增益: - Frequency Slope: - 频率倾斜度: + + Envelope length: + - Envelope Length: - 包络长度: - - - Envelope Slope: - 包络线倾斜度: + + Envelope slope: + + Click: 力度: + Noise: 噪音: - Distortion Start: - 起始失真度: + + Start distortion: + - Distortion End: - 结束失真度: + + End distortion: + - ladspaBrowserView + LadspaBrowserView + + Available Effects 可用效果器 + + Unavailable Effects 不可用效果器 + + Instruments 乐器插件 + + Analysis Tools 分析工具 + + Don't know 未知 - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - 这个对话框显示 LMMS 找到的所有 LADSPA 插件信息。这些插件根据接口类型和名字被分为五个类别。 - -"可用效果" 是指可以被 LMMS 使用的插件。为了让 LMMS 可以开启效果, 首先, 这个插件需要是有效果的。也就是说, 这个插件需要有输入和输出通道。LMMS 会将音频接口名称中有 ‘in’ 的接口识别为输入接口, 将音频接口名称中有 ‘out’ 的接口识别为输出接口。并且, 效果插件需要有相同的输入输出通道, 还要能支持实时处理。 - -"不可用效果" 是指被识别为效果插件的插件, 但是输入输出通道数不同或者不支持实时音频处理。 - -"乐器" 是指只检测到有输出通道的插件。 - -"分析工具" 是指只检测到有输入通道的插件。 - -"未知" 是指没有检测到任何输出或输出通道的插件。 - -双击任意插件将会显示接口信息。 - - + Type: 类型: - ladspaDescription + LadspaDescription + Plugins 插件 + Description 描述 - ladspaPortDialog + LadspaPortDialog + Ports 端口 + Name 名称 + Rate 比特率 + Direction 方向 + Type 类型 + Min < Default < Max 最小 < 默认 < 最大 + Logarithmic 对数 + SR Dependent 依赖 SR + Audio 音频 + Control 控制 + Input 输入 + Output 输出 + Toggled 启用 + Integer 整型 + Float 浮点 + + Yes - lb302Synth + Lb302Synth + VCF Cutoff Frequency + VCF Resonance + VCF Envelope Mod + VCF Envelope Decay + Distortion 失真 + Waveform 波形 + Slide Decay + Slide + Accent + Dead + 24dB/oct Filter - lb302SynthView + 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 + MalletsInstrument + Hardness + Position 位置 - Vibrato Gain + + Vibrato gain - Vibrato Freq + + Vibrato frequency - Stick Mix + + Stick mix + Modulator 调制器 + Crossfade - LFO Speed + + LFO speed LFO 速度 - LFO Depth - LFO 位深 + + LFO depth + + ADSR + Pressure 压力 + Motion + Speed 速度 + Bowed + Spread + Marimba + Vibraphone + Agogo - Wood1 + + Wood 1 + Reso - Wood2 + + Wood 2 + Beats - Two Fixed + + Two fixed + Clump - Tubular Bells + + Tubular bells - Uniform Bar + + Uniform bar - Tuned Bar + + Tuned bar + Glass 玻璃 - Tibetan Bowl - 藏缽 + + Tibetan bowl + - malletsInstrumentView + MalletsInstrumentView + Instrument 乐器 + Spread + Spread: - Hardness - - - - Hardness: - - - - Position - 位置 - - - Position: - 位置: - - - Vib Gain - - - - Vib Gain: - - - - Vib Freq - - - - Vib Freq: - - - - Stick Mix - - - - Stick Mix: - - - - Modulator - 调制器 - - - Modulator: - 调制器: - - - Crossfade - - - - Crossfade: - - - - LFO Speed - LFO 速度 - - - LFO Speed: - LFO 速度: - - - LFO Depth - LFO 位深 - - - LFO Depth: - LFO 位深: - - - ADSR - - - - ADSR: - - - - Pressure - 压力 - - - Pressure: - 压力: - - - Speed - 速度 - - - Speed: - 速度: - - + 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 + ManageVSTEffectView + - VST parameter control - VST 参数控制 - VST Sync - VST 同步 - - - Click here if you want to synchronize all parameters with VST plugin. - 点击这里, 如果你想与 VST 插件同步所有参数。 + + VST sync + + + Automated 自动 - Click here if you want to display automated parameters only. - 如果你想仅显示自动控制参数,请点击这里。 - - + Close 关闭 - - Close VST effect knob-controller window. - 关闭 VST 效果调整窗口。 - - manageVestigeInstrumentView + ManageVestigeInstrumentView + + - VST plugin control - VST插件控制 + VST Sync VST 同步 - Click here if you want to synchronize all parameters with VST plugin. - 点击这里, 如果你想与 VST 插件同步所有参数。 - - + + Automated 自动 - Click here if you want to display automated parameters only. - 如果你想仅显示自动控制参数,请点击这里。 - - + Close 关闭 - - Close VST plugin knob-controller window. - 关闭 VST 插件调整窗口。 - - opl2instrument - - Patch - 音色 - - - Op 1 Attack - - - - Op 1 Decay - - - - Op 1 Sustain - - - - Op 1 Release - - - - Op 1 Level - - - - Op 1 Level Scaling - - - - Op 1 Frequency Multiple - - - - 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 Multiple - - - - Op 2 Key Scaling Rate - - - - Op 2 Percussive Envelope - - - - Op 2 Tremolo - - - - Op 2 Vibrato - - - - Op 2 Waveform - - - - FM - FM - - - Vibrato Depth - - - - Tremolo Depth - - - - - opl2instrumentView - - Attack - 打击声 - - - Decay - 衰减 - - - Release - 释放 - - - Frequency multiplier - 频率加倍器 - - - - organicInstrument + OrganicInstrument + Distortion 失真 + Volume 音量 - organicInstrumentView + OrganicInstrumentView + Distortion: 失真: + Volume: 音量: + Randomise 随机 + + Osc %1 waveform: + Osc %1 volume: - + 振荡器%1音量 + Osc %1 panning: - - - - cents - 音分 cents - - - The distortion knob adds distortion to the output of the instrument. - - - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - + 振荡器%1声相 + Osc %1 stereo detuning + + cents + 音分 cents + + + Osc %1 harmonic: - FreeBoyInstrument - - Sweep time - - - - Sweep direction - - - - Sweep RtShift amount - - - - Wave Pattern Duty - - - - Channel 1 volume - - - - Volume sweep direction - - - - Length of each step in sweep - - - - Channel 2 volume - - - - Channel 3 volume - - - - Channel 4 volume - - - - 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 - 低音 - - - Shift Register width - - - - - FreeBoyInstrumentView - - Sweep Time: - - - - Sweep Time - - - - Sweep RtShift amount: - - - - Sweep RtShift amount - - - - Wave pattern duty: - - - - Wave Pattern Duty - - - - Square Channel 1 Volume: - - - - Length of each step in sweep: - - - - Length of each step in sweep - - - - Wave pattern duty - - - - Square Channel 2 Volume: - - - - Square Channel 2 Volume - - - - Wave Channel Volume: - 波形通道音量: - - - Wave 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 - - - - Channel1 to SO1 (Right) - - - - Channel2 to SO1 (Right) - - - - Channel3 to SO1 (Right) - - - - Channel4 to SO1 (Right) - - - - Channel1 to SO2 (Left) - - - - Channel2 to SO2 (Left) - - - - Channel3 to SO2 (Left) - - - - Channel4 to SO2 (Left) - - - - Wave Pattern - - - - The amount of increase or decrease in frequency - - - - The rate at which increase or decrease in frequency occurs - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - Square Channel 1 Volume - - - - The delay between step change - - - - Draw the wave here - 在此处绘制波形 - - - - patchesDialog + PatchesDialog + Qsynth: Channel Preset Qsynth: 通道预设 + Bank selector 音色选择器 + Bank + Program selector 程序节选择器 + Patch 音色 + Name 名称 + OK 确定 + Cancel 取消 - pluginBrowser - - no description - 没有描述 - - - Incomplete monophonic imitation tb303 - 对单音 TB303 的不完整的模拟器 - - - Plugin for freely manipulating stereo output - - - - Plugin for controlling knobs with sound peaks - - - - Plugin for enhancing stereo separation of a stereo input file - - - - List installed LADSPA plugins - 列出已安装的 LADSPA 插件 - - - GUS-compatible patch instrument - GUS 兼容音色的乐器 - - - Additive Synthesizer for organ-like sounds - - - - Tuneful things to bang on - - - - VST-host for using VST(i)-plugins within LMMS - LMMS的VST(i)插件宿主 - - - Vibrating string modeler - - - - plugin for using arbitrary LADSPA-effects inside LMMS. - 在 LMMS 中使用任意 LADSPA 效果的插件。 - - - Filter for importing MIDI-files into LMMS - 导入 MIDI 文件到 LMMS 的解析器 - - - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. - 模拟 MOS6581 和 MOS8580 SID 的模拟器 -这些芯片曾在 Commodore 64 电脑上用过。 - - - Player for SoundFont files - 在工程中使用SoundFont - - - Emulation of GameBoy (TM) APU - GameBoy (TM) APU 模拟器 - - - Customizable wavetable synthesizer - 可自定制的波表合成器 - - - Embedded ZynAddSubFX - 内置的 ZynAddSubFX - - - 2-operator FM Synth - - - - Filter for importing Hydrogen files into LMMS - 导入 Hydrogen 工程文件到 LMMS 的解析器 - - - LMMS port of sfxr - sfxr 的 LMMS 移植版本 - - - Monstrous 3-oscillator synth with modulation matrix - 带 3 个振荡器和调制矩阵的能发出像怪兽一样声音的合成器 - - - Three powerful oscillators you can modulate in several ways - 三个可以任你调制的强大振荡器 - - - A native amplifier plugin - 原生增益插件 - - - Carla Rack Instrument - Carla Rack 乐器 - - - 4-oscillator modulatable wavetable synth - 有四个振荡器的可调制波表合成器 - - - plugin for waveshaping - - - - Boost your bass the fast and simple way - - - - Versatile drum synthesizer - 多功能鼓合成器 - - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - 简单地在乐器栏使用采样(比如鼓音源), 同时也提供多种设置 - - - plugin for processing dynamics in a flexible way - - - - Carla Patchbay Instrument - Carla Patchbay 乐器 - - - plugin for using arbitrary VST effects inside LMMS. - 在 LMMS 中使用任意 VST 效果的插件。 - - - Graphical spectrum analyzer plugin - 图形频谱分析器插件 - - - A NES-like synthesizer - 类似于 NES 的合成器 - - - A native delay plugin - 原生的衰减插件 - - - Player for GIG files - 播放 GIG 文件的播放器 - - - A multitap echo delay plugin - - - - A native flanger plugin - 一个原生的 镶边 (Flanger) 插件 - - - An oversampling bitcrusher - - - - A native eq plugin - 原生的 EQ 插件 - - - A 4-band Crossover Equalizer - 一种 四波段交叉均衡器 - - - A Dual filter plugin - - - - Filter for exporting MIDI-files from LMMS - 从 LMMS 导出 MIDI 文件的生成器 - - - Reverb algorithm by Sean Costello - Sean Costello 发明的混响算法 - - - Mathematical expression parser - - - - - sf2Instrument + Sf2Instrument + Bank + Patch 音色 + Gain 增益 + Reverb 混响 - Reverb Roomsize - 混响空间大小 + + Reverb room size + - Reverb Damping - 混响阻尼 + + Reverb damping + - Reverb Width - 混响宽度 + + Reverb width + - Reverb Level - 混响级别 + + Reverb level + + Chorus 合唱 - Chorus Lines - 合唱声部 + + Chorus voices + - Chorus Level - 合唱电平 + + Chorus level + - Chorus Speed - 合唱速度 + + Chorus speed + - Chorus Depth - 合唱深度 + + Chorus depth + + A soundfont %1 could not be loaded. 无法载入Soundfont %1。 - sf2InstrumentView - - Open other SoundFont file - 打开其他SoundFont文件 - - - Click here to open another SF2 file - 点击此处打开另一个SF2文件 - - - Choose the patch - 选择路径 - - - Gain - 增益 - - - Apply reverb (if supported) - 应用混响(如果支持) - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - 此按钮会启用混响效果器。可以制作出很酷的效果,但仅对支持的文件有效。 - - - Reverb Roomsize: - 混响空间大小: - - - Reverb Damping: - 混响阻尼: - - - Reverb Width: - 混响宽度: - - - Reverb Level: - 混响级别: - - - Apply chorus (if supported) - 应用合唱 (如果支持) - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - 此按钮会启用合唱效果器。 - - - Chorus Lines: - 合唱声部: - - - Chorus Level: - 合唱级别: - - - Chorus Speed: - 合唱速度: - - - Chorus Depth: - 合唱深度: - + Sf2InstrumentView + + Open SoundFont file 打开SoundFont文件 - SoundFont2 Files (*.sf2) - SoundFont2 Files (*.sf2) + + Choose patch + + + + + Gain: + 增益: + + + + Apply reverb (if supported) + 应用混响(如果支持) + + + + Room size: + + + + + Damping: + + + + + Width: + 宽度: + + + + + Level: + + + + + Apply chorus (if supported) + 应用合唱 (如果支持) + + + + Voices: + + + + + Speed: + 速度: + + + + Depth: + 位深: + + + + SoundFont Files (*.sf2 *.sf3) + - sfxrInstrument + SfxrInstrument - Wave Form - 波形 + + Wave + - sidInstrument + StereoEnhancerControlDialog - Cutoff - 切除 - - - Resonance - 共鸣 - - - Filter type - 过滤器类型 - - - Voice 3 off - 声音 3 关 - - - Volume - 音量 - - - Chip model - 芯片型号 - - - - sidInstrumentView - - Volume: - 音量: - - - Resonance: - 共鸣: - - - Cutoff frequency: - 频谱刀频率: - - - High-Pass filter - 高通滤波器 - - - Band-Pass filter - 带通滤波器 - - - Low-Pass filter - 低通滤波器 - - - Voice3 Off - 声音 3 关 - - - MOS6581 SID - MOS6581 SID - - - MOS8580 SID - MOS8580 SID - - - Attack: - 打进声: - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. + + WIDTH - Decay: - 衰减: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - Sustain: - 振幅持平: - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - Release: - 声音消失: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - Pulse Width: - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - Coarse: - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - Pulse Wave - 脉冲波 - - - Triangle Wave - 三角波 - - - SawTooth - 锯齿波 - - - Noise - 噪音 - - - Sync - 同步 - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - Ring-Mod - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - Filtered - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - Test - 测试 - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - 测试, 当此项选中时, 振荡器 %1 将会被归零并锁定, 直到此选项被关闭。 - - - - stereoEnhancerControlDialog - - WIDE - 宽度 - - + Width: 宽度: - stereoEnhancerControls + StereoEnhancerControls + Width 宽度 - stereoMatrixControlDialog + StereoMatrixControlDialog + Left to Left Vol: 从左到左音量: + Left to Right Vol: 从左到右音量: + Right to Left Vol: 从右到左音量: + Right to Right Vol: 从右到右音量: - stereoMatrixControls + StereoMatrixControls + Left to Left 从左到左 + Left to Right 从左到右 + Right to Left 从右到左 + Right to Right 从右到右 - vestigeInstrument + VestigeInstrument + Loading plugin 载入插件 - Please wait while loading VST-plugin... - 请等待VST插件加载完成... + + Please wait while loading the VST plugin... + - vibed + Vibed + String %1 volume + String %1 stiffness + Pick %1 position + Pickup %1 position - Pan %1 - 声相 %1 + + String %1 panning + - Detune %1 - 去谐 %1 + + String %1 detune + - Fuzziness %1 - 模糊度 %1 + + String %1 fuzziness + - Length %1 - 长度 %1 + + String %1 length + + Impulse %1 - Octave %1 - 八度音 %1 + + String %1 + - vibedView + VibedView - Volume: - 音量: - - - The 'V' knob sets the volume of the selected string. + + String volume: + String stiffness: - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - - - + Pick position: - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - - - + Pickup position: - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. + + String panning: - Pan: - 声相: - - - The Pan knob determines the location of the selected string in the stereo field. + + String detune: - Detune: - 去谐: - - - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. + + String fuzziness: - Fuzziness: - 模糊度: - - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. + + String length: - Length: - 长度: - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - Impulse or initial state - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. + + Impulse + Octave - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - - - + Impulse Editor - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - - - + Enable waveform 启用波形 - Click here to enable/disable waveform. - 点击这里启用/禁用波形。 + + Enable/disable string + + String - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - - - + + Sine wave 正弦波 + + Triangle wave 三角波 + + Saw wave 锯齿波 + + Square wave 方波 - White noise wave + + + White noise 白噪音 - User defined wave - 用户自定义波形 + + + User-defined wave + - Smooth - 平滑 + + + Smooth waveform + 平滑波形 - Click here to smooth waveform. - 点击这里平滑波形。 - - - Normalize - 标准化 - - - Click here to normalize waveform. - 点击这里标准化波形。 - - - Use a sine-wave for current oscillator. - 为当前振荡器使用正弦波。 - - - Use a triangle-wave for current oscillator. - 为当前振荡器使用三角波。 - - - Use a saw-wave for current oscillator. - 为当前振荡器使用锯齿波。 - - - Use a square-wave for current oscillator. - 为当前振荡器使用方波。 - - - Use white-noise for current oscillator. - 为当前振荡器使用白噪音。 - - - Use a user-defined waveform for current oscillator. - 为当前振荡器使用用户自定波形。 + + + Normalize waveform + - voiceObject + 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 + WaveShaperControlDialog + INPUT 输入 + Input gain: 输入增益: + OUTPUT 输出 + Output gain: 输出增益: - Reset waveform - 重置波形 + + + Reset wavegraph + - Click here to reset the wavegraph back to default - 点击这里重置波形为默认状态 + + + Smooth wavegraph + - Smooth waveform - 平滑波形 + + + Increase wavegraph amplitude by 1 dB + - Click here to apply smoothing to wavegraph - 点击这里来使波形图更为平滑 - - - Increase graph amplitude by 1dB - 将图像的增益值增加 1dB - - - Click here to increase wavegraph amplitude by 1dB - 点击这里将波形增益值增加 1dB - - - Decrease graph amplitude by 1dB - 将图像的增益值减少 1dB - - - Click here to decrease wavegraph amplitude by 1dB - 点击这里将波形增益值减少 1dB + + + Decrease wavegraph amplitude by 1 dB + + Clip input 输入压限 - Clip input signal to 0dB - 将输入信号限制到 0dB + + Clip input signal to 0 dB + - waveShaperControls + 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 261d7c666..791a45599 100644 --- a/data/locale/zh_TW.ts +++ b/data/locale/zh_TW.ts @@ -2,79 +2,68 @@ AboutDialog - + About LMMS 關於 LMMS - + LMMS LMMS - - Version %1 (%2/%3, Qt %4, %5) - 版本 %1 (%2/%3, Qt %4, %5) + + Version %1 (%2/%3, Qt %4, %5). + - + About 關於 - - LMMS - easy music production for everyone - LMMS - 人人都是作曲家 + + LMMS - easy music production for everyone. + - - Copyright © %1 - 版權所有 © %1 + + Copyright © %1. + - - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">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> + - + Authors 作者 - + Involved 參與者 - + Contributors ordered by number of commits: 貢獻者名單(以提交次數排序): - + Translation 翻譯 - + 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! - 當前語言是中文(台灣) - -翻譯人員: -TonyChyi <tonychee1989 at gmail.com> -Min Zhang <zm1990s at gmail.com> -Jeff Bai <jeffbaichina at gmail.com> -Mingye Wang <arthur2e5@aosc.xyz> -Zixing Liu <liushuyu@aosc.xyz> -BrLi <brli at chakraos.org> - -若你有興趣提高翻譯品質,請聯絡維護團隊 (https://github.com/AOSC-Dev/translations)、之前的譯者或本項目維護者! + - + License 授權協議 @@ -161,106 +150,60 @@ BrLi <brli at chakraos.org> AudioFileProcessorView - - Open other sample - 開啟其他取樣 + + Open sample + - - Click here, if you want to open another audio-file. A dialog will appear where you can select your file. Settings like looping-mode, start and end-points, amplify-value, and so on are not reset. So, it may not sound like the original sample. - 如果想打開另一個音訊檔,請點擊這裡。接著會出現檔案選擇視窗。諸如循環模式 (looping-mode),起始/結束點,放大率 (amplify-value) 之類的值不會被重置。因此聽起來會和取樣來源有差異。 - - - + Reverse sample 反轉取樣 - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - 如果點擊此按鈕,整個取樣將會被反轉。能用於製作很酷的效果,例如 reversed crash. - - - + Disable loop 停用循環 - - This button disables looping. The sample plays only once from start to end. - 點擊此按鈕可以禁止循環播放。取樣檔案將從頭到尾播放一次。 - - - - + Enable loop 啟用循環 - - This button enables forwards-looping. The sample loops between the end point and the loop point. - 點擊此按鈕後,Forwards-looping 會被打開,採樣將在終止點(End Point)和循環點(Loop Point)之間播放。 + + Enable ping-pong loop + - - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - 點擊此按鈕後,Ping-pong-looping 會被打開,採樣將在終止點 (End Point) 和循環點 (Loop Point) 之間來回播放。 - - - + Continue sample playback across notes 跨音符繼續播放採樣 - - Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) - - - - + Amplify: 放大: - - With this knob you can set the amplify ratio. When you set a value of 100% your sample isn't changed. Otherwise it will be amplified up or down (your actual sample-file isn't touched!) - 此旋鈕用於調整放大比率。當設爲100% 時採樣不會變化。除此之外,不是放大就是減弱(原始的採樣文件不會被改變) + + Start point: + - - Startpoint: - 起始點: + + End point: + - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - 調節此旋鈕,以告訴 AudioFileProcessor 在哪裏開始播放。 - - - - Endpoint: - 終點: - - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - 調節此旋鈕,以告訴 AudioFileProcessor 在哪裏停止播放。 - - - + Loopback point: 循環點: - - - With this knob you can set the point where the loop starts. - 調節此旋鈕,以設置循環開始的地方。 - AudioFileProcessorWaveView - + Sample length: 採樣長度: @@ -268,163 +211,168 @@ BrLi <brli at chakraos.org> 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 - 客戶端名稱 + + Client name + - - CHANNELS - 聲道數 + + Channels + - AudioOss::setupWidget + AudioOss - DEVICE - 裝置 + Device + - CHANNELS - 聲道數 + Channels + AudioPortAudio::setupWidget - - BACKEND - 後端 + + Backend + - - DEVICE - 裝置 + + Device + - AudioPulseAudio::setupWidget + AudioPulseAudio - DEVICE - 裝置 + Device + - CHANNELS - 聲道數 + Channels + AudioSdl::setupWidget - - DEVICE - 裝置 + + Device + - AudioSndio::setupWidget + AudioSndio - DEVICE - 裝置 + Device + - CHANNELS - 聲道數 + Channels + AudioSoundIo::setupWidget - - BACKEND - 後端 + + Backend + - - DEVICE - 裝置 + + 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... 連線至控制器… @@ -432,385 +380,300 @@ BrLi <brli at chakraos.org> AutomationEditor - - Please open an automation pattern with the context menu of a control! + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip with the context menu of a control! 請透過控制的右鍵選單開啟自動控制模式! - - - Values copied - 值已複製 - - - - All selected values were copied to the clipboard. - 所有選中的值已複製。 - AutomationEditorWindow - - Play/pause current pattern (Space) + + Play/pause current clip (Space) 播放/暫停當前片段(空格) - - Click here if you want to play the current pattern. This is useful while editing it. The pattern is automatically looped when the end is reached. - 點擊這裏播放片段。編輯時很有用,片段會自動循環播放。 - - - - Stop playing of current pattern (Space) + + Stop playing of current clip (Space) 停止當前片段(空格) - - Click here if you want to stop playing of the current pattern. - 點擊這裏停止播放片段。 - - - + Edit actions 編輯功能 - + Draw mode (Shift+D) 繪製模式 (Shift+D) - + Erase mode (Shift+E) 擦除模式 (Shift+E) - + + Draw outValues mode (Shift+C) + + + + Flip vertically 垂直翻轉 - + Flip horizontally 水平翻轉 - - Click here and the pattern will be inverted.The points are flipped in the y direction. - 點擊這裡來翻轉圖形 (pattern)。圖上的點會隨y軸翻轉。 - - - - Click here and the pattern will be reversed. The points are flipped in the x direction. - 點擊這裡來翻轉圖形 (pattern)。圖上的點會隨x軸翻轉。 - - - - Click here and draw-mode will be activated. In this mode you can add and move single values. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. - 點擊這裏啓用繪製模式。在此模式下你可以增加或移動單個值。 大部分時間下默認使用此模式。你也可以按鍵盤上的 ‘Shift+D’激活此模式。 - - - - Click here and erase-mode will be activated. In this mode you can erase single values. You can also press 'Shift+E' on your keyboard to activate this mode. - 點擊啓用擦除模式。此模式下你可以擦除單個值。你可以按鍵盤上的 'Shift+E' 啓用此模式。 - - - + Interpolation controls 補間控制 - + Discrete progression 區間進程 (Discrete progression) - + Linear progression 線性進程 (Linear progression) - + Cubic Hermite progression - + Tension value for spline - - A higher tension value may make a smoother curve but overshoot some values. A low tension value will cause the slope of the curve to level off at each control point. - - - - - Click here to choose discrete progressions for this automation pattern. The value of the connected object will remain constant between control points and be set immediately to the new value when each control point is reached. - - - - - Click here to choose linear progressions for this automation pattern. The value of the connected object will change at a steady rate over time between control points to reach the correct value at each control point without a sudden change. - - - - - Click here to choose cubic hermite progressions for this automation pattern. The value of the connected object will change in a smooth curve and ease in to the peaks and valleys. - - - - + Tension: - - Cut selected values (%1+X) - 剪下選擇的值 (%1+X) - - - - Copy selected values (%1+C) - 複製選擇的值 (%1+C) - - - - Paste values from clipboard (%1+V) - 從剪貼簿貼上值 (%1+V) - - - - Click here and selected values will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - 點擊這裏,選擇的值將會被剪切到剪切板。你可以使用粘貼按鈕將它們粘貼到任意地方,存爲任意片段。 - - - - Click here and selected values will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. - 點擊這裏,選擇的值將會被複制到剪切板。你可以使用粘貼按鈕將它們粘貼到任意地方,存爲任意片段。 - - - - Click here and the values from the clipboard will be pasted at the first visible measure. - 點擊這裏,選擇的值將從剪貼板粘貼到第一個可見的小節。 - - - + Zoom controls 縮放控制 - + + Horizontal zooming + 橫向縮放 + + + + Vertical zooming + 垂直縮放 + + + Quantization controls 量化控制 - + Quantization 量化 - - Quantization. Sets the smallest step size for the Automation Point. By default this also sets the length, clearing out other points in the range. Press <Ctrl> to override this behaviour. - - - - - - Automation Editor - no pattern + + + Automation Editor - no clip 自動控制編輯器 - 沒有片段 - - + + Automation Editor - %1 自動控制編輯器 - %1 - - Model is already connected to this pattern. + + Model is already connected to this clip. 模型已連接到此片段。 - AutomationPattern + AutomationClip - + Drag a control while pressing <%1> 按住<%1>拖動控制器 - AutomationPatternView + AutomationClipView - - double-click to open this pattern in automation editor - 雙擊在自動編輯器中打開此片段 - - - + 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 pattern. + + Model is already connected to this clip. 模型已連接到此片段。 AutomationTrack - + Automation track 自動控制軌道 - BBEditor + PatternEditor - + Beat+Bassline Editor 節拍+低音線編輯器 - + Play/pause current beat/bassline (Space) 播放/暫停當前節拍/低音線(空格) - + Stop playback of current beat/bassline (Space) 停止播放當前節拍/低音線(空格) - - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - 點擊這裏停止播放當前節拍/低音線。當結束時節拍/低音線會自動循環播放。 - - - - Click here to stop playing of current beat/bassline. - 點擊這裏停止播發當前節拍/低音線。 - - - + 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 - BBTCOView + PatternClipView - + Open in Beat+Bassline-Editor 在節拍+Bassline編輯器中打開 - + Reset name 重置名稱 - + Change name 修改名稱 - - - Change color - 改變顏色 - - - - Reset color to default - 重置顏色 - - BBTrack + PatternTrack - + Beat/Bassline %1 節拍/Bassline %1 - + Clone of %1 %1 的副本 @@ -886,7 +749,7 @@ BrLi <brli at chakraos.org> - Input Gain: + Input gain: 輸入增益: @@ -896,12 +759,12 @@ BrLi <brli at chakraos.org> - Input Noise: - 輸入噪音: + Input noise: + - Output Gain: + Output gain: 輸出增益: @@ -911,84 +774,2296 @@ BrLi <brli at chakraos.org> - Output Clip: - 輸出壓限: - - - - Rate Enabled + Output clip: - - Enable samplerate-crushing + + Rate enabled - - Depth Enabled - 深度已啓用 - - - - Enable bitdepth-crushing + + Enable sample-rate crushing - + + Depth enabled + + + + + Enable bit-depth crushing + + + + FREQ 頻率 - + Sample rate: 採樣率: - + STEREO - + Stereo difference: 雙聲道差異: - + QUANT - + Levels: 級別: - CaptionMenu + BitcrushControls - + + Input gain + 輸入增益 + + + + Input noise + + + + + Output gain + 輸出增益 + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + 級別 + + + + Rate enabled + + + + + Depth enabled + + + + + CarlaAboutW + + + About Carla + + + + + About + 關於 + + + + About text here + + + + + Extended licensing here + + + + + 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 + + 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 + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + + + + + Rack + + + + + Patchbay + + + + + Logs + + + + + Loading... + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + 檔案(&F) + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help 幫助(&H) - - Help (not available) - 幫助(不可用) + + toolBar + + + + + 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 + + + + + &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... + + + + + 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 - - Click here to show or hide the graphical user interface (GUI) of Carla. - 點擊此處可以顯示或隱藏 Carla 的圖形界面。 + + Settings + 設置 + + + + main + + + + + canvas + + + + + engine + + + + + osc + + + + + file-paths + + + + + plugin-paths + + + + + wine + + + + + experimental + + + + + Widget + + + + + + Main + + + + + + Canvas + + + + + + Engine + + + + + File Paths + + + + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + 路徑 + + + + Default project folder: + + + + + Interface + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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) + + + + + 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 + 混合 @@ -1002,73 +3077,73 @@ BrLi <brli at chakraos.org> 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. 檢測到環路。 @@ -1076,22 +3151,22 @@ BrLi <brli at chakraos.org> ControllerRackView - + Controller Rack 控制器機架 - + Add 增加 - + Confirm Delete 刪除前確認 - + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. 確定要刪除嗎?此控制器仍處於被連接狀態。此操作不可撤銷。 @@ -1099,37 +3174,32 @@ BrLi <brli at chakraos.org> ControllerView - + Controls 控制器 - - Controllers are able to automate the value of a knob, slider, and other controls. - 控制器可以自動控制旋鈕,滑塊和其他控件的值。 - - - + Rename controller 重命名控制器 - + Enter the new name for this controller 輸入這個控制器的新名稱 - + LFO - + &Remove this controller - + Re&name this controller @@ -1138,77 +3208,97 @@ BrLi <brli at chakraos.org> 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 2 gain - Band 2 Gain: + Band 2 gain: + + + + + Band 3 gain - Band 3 Gain: + Band 3 gain: + + + + + Band 4 gain - Band 4 Gain: + Band 4 gain: - Band 1 Mute + Band 1 mute - Mute Band 1 + Mute band 1 - Band 2 Mute + Band 2 mute - Mute Band 2 + Mute band 2 - Band 3 Mute + Band 3 mute - Mute Band 3 + Mute band 3 - Band 4 Mute + Band 4 mute - Mute Band 4 + Mute band 4 @@ -1216,7 +3306,7 @@ BrLi <brli at chakraos.org> DelayControls - Delay Samples + Delay samples @@ -1226,12 +3316,12 @@ BrLi <brli at chakraos.org> - Lfo Frequency + LFO frequency - Lfo Amount + LFO amount @@ -1249,8 +3339,8 @@ BrLi <brli at chakraos.org> - Delay Time - 延遲時間 + Delay time + @@ -1259,7 +3349,7 @@ BrLi <brli at chakraos.org> - Feedback Amount + Feedback amount @@ -1269,7 +3359,7 @@ BrLi <brli at chakraos.org> - Lfo + LFO frequency @@ -1279,12 +3369,12 @@ BrLi <brli at chakraos.org> - Lfo Amt + LFO amount - Out Gain + Out gain @@ -1293,6 +3383,223 @@ BrLi <brli at chakraos.org> 增益 + + 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 + + + + + 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 @@ -1353,13 +3660,13 @@ BrLi <brli at chakraos.org> - Click to enable/disable Filter 1 - 點擊啓用/禁用過濾器 1 + Enable/disable filter 1 + - Click to enable/disable Filter 2 - 點擊啓用/禁用過濾器 2 + Enable/disable filter 2 + @@ -1376,8 +3683,8 @@ BrLi <brli at chakraos.org> - Cutoff 1 frequency - 濾波器 1 截頻 + Cutoff frequency 1 + @@ -1406,8 +3713,8 @@ BrLi <brli at chakraos.org> - Cutoff 2 frequency - 濾波器 2 截頻 + Cutoff frequency 2 + @@ -1422,26 +3729,26 @@ BrLi <brli at chakraos.org> - LowPass - 低通 + Low-pass + - HiPass - 高通 + Hi-pass + - BandPass csg - 帶通 csg + Band-pass csg + - BandPass czpg - 帶通 czpg + Band-pass czpg + @@ -1452,8 +3759,8 @@ BrLi <brli at chakraos.org> - Allpass - 全通 + All-pass + @@ -1464,50 +3771,50 @@ BrLi <brli at chakraos.org> - 2x LowPass - 2 個低通串聯 + 2x Low-pass + - RC LowPass 12dB - RC 低通(12dB) + RC Low-pass 12 dB/oct + - RC BandPass 12dB - RC 帶通(12dB) + RC Band-pass 12 dB/oct + - RC HighPass 12dB - RC 高通(12dB) + RC High-pass 12 dB/oct + - RC LowPass 24dB - RC 低通(24dB) + RC Low-pass 24 dB/oct + - RC BandPass 24dB - RC 帶通(24dB) + RC Band-pass 24 dB/oct + - RC HighPass 24dB - RC 高通(24dB) + RC High-pass 24 dB/oct + - Vocal Formant Filter - 人聲移除過濾器 + Vocal Formant + @@ -1518,19 +3825,19 @@ BrLi <brli at chakraos.org> - SV LowPass + SV Low-pass - SV BandPass + SV Band-pass - SV HighPass + SV High-pass @@ -1555,50 +3862,55 @@ BrLi <brli at chakraos.org> Editor - + Transport controls - + Play (Space) 播放(空格) - + Stop (Space) 停止(空格) - + Record 錄音 - + Record while playing 播放時錄音 + + + Toggle Step Recording + + Effect - + Effect enabled 啓用效果器 - + Wet/Dry mix 幹/溼混合 - + Gate 門限 - + Decay 衰減 @@ -1614,12 +3926,12 @@ BrLi <brli at chakraos.org> EffectRackView - + EFFECTS CHAIN 效果器鏈 - + Add effect 增加效果器 @@ -1627,28 +3939,28 @@ BrLi <brli at chakraos.org> EffectSelectDialog - + Add effect 增加效果器 - - + + Name 名稱 - + Type 類型 - + Description 描述 - + Author @@ -1656,396 +3968,256 @@ BrLi <brli at chakraos.org> EffectView - - Toggles the effect on or off. - 打開或關閉效果. - - - + On/Off 開/關 - + W/D W/D - + Wet Level: 效果度: - - The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - 旋轉幹溼度旋鈕以調整原信號與有效果的信號的比例。 - - - + DECAY 衰減 - + Time: 時間: - - The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - 衰減旋鈕控制在插件停止工作前,緩衝區中加入的靜音時常。較小的數值會降低CPU佔用率但是可能導致延遲或混響產生撕裂。 - - - + GATE 門限 - + Gate: 門限: - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - 門限旋鈕設置自動靜音時,被認爲是靜音的信號幅度。 - - - + Controls 控制 - - Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. - -The On/Off switch allows you to bypass a given plugin at any point in time. - -The Wet/Dry knob controls the balance between the input signal and the effected signal that is the resulting output from the effect. The input for the stage is the output from the previous stage. So, the 'dry' signal for effects lower in the chain contains all of the previous effects. - -The Decay knob controls how long the signal will continue to be processed after the notes have been released. The effect will stop processing signals when the volume has dropped below a given threshold for a given length of time. This knob sets the 'given length of time'. Longer times will require more CPU, so this number should be set low for most effects. It needs to be bumped up for effects that produce lengthy periods of silence, e.g. delays. - -The Gate knob controls the 'given threshold' for the effect's auto shutdown. The clock for the 'given length of time' will begin as soon as the processed signal level drops below the level specified with this knob. - -The Controls button opens a dialog for editing the effect's parameters. - -Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - - - - + Move &up 向上移(&U) - + Move &down 向下移(&D) - + &Remove this plugin 移除此插件(&R) EnvelopeAndLfoParameters - - - Predelay - 預延遲 - - - - Attack - 打進聲 - - Hold - 保持 + Env pre-delay + - Decay - 衰減 + Env attack + - Sustain - 持續 + Env hold + - Release - 釋放 + Env decay + - Modulation - 調製 + Env sustain + - - LFO Predelay - LFO 預延遲 + + Env release + - - LFO Attack - LFO 打進聲(attack) + + Env mod amount + - - LFO speed - LFO 速度 + + LFO pre-delay + - - LFO Modulation - LFO 調製 + + LFO attack + - LFO Wave Shape - LFO 波形形狀 + LFO frequency + - Freq x 100 - 頻率 x 100 + LFO mod amount + - Modulate Env-Amount - 調製所有包絡 + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + EnvelopeAndLfoView - - + + DEL DEL - - Predelay: - 預延遲: + + + Pre-delay: + - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - 使用預延遲旋鈕設定此包絡的預延遲,較大的值會加長包絡開始的時間。 - - - - + + ATT ATT - + + Attack: 打進聲: - - Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - 使用起音旋鈕設定此包絡的起音時間,較大的值會讓包絡達到起音值的時間增加。爲鋼琴等樂器選擇小值而絃樂選擇大值。 - - - + HOLD 持續 - + Hold: 持續: - - Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - 使用持續旋鈕設定此包絡的持續時間。較大的值會在它衰減到持續值時,保持包絡在起音值更久。 - - - + DEC 衰減 - + Decay: 衰減: - - Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - 使用衰減旋鈕設定此包絡的衰減值。較大的值會延長包絡從起音值衰減到持續值的時間。爲鋼琴等樂器選擇一個小值。 - - - + SUST 持續 - + Sustain: 持續: - - Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - 使用持續旋鈕設置此包絡的持續值,較大的值會增加釋放前,包絡在此保持的值。 - - - + REL 釋音 - + Release: 釋音: - - Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - 使用釋音旋鈕設定此包絡的釋音時間,較大值會增加包絡衰減到零的時間。爲絃樂等樂器選擇一個大值。 - - - - + + AMT - - + + Modulation amount: 調製量: - - Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - 使用調製量旋鈕設置LFO對此包絡的調製量,較大的值會對此包絡控制的值(如音量或截頻)影響更大。 - - - - LFO predelay: - LFO 預延遲: - - - - Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - - - - - LFO- attack: - - - - - Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - - - - + SPD - - LFO speed: - + + Frequency: + 頻率: - - Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - - - - - Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - - - - - Click here for a sine-wave. - 點擊這裡使用正弦波。 - - - - Click here for a triangle-wave. - 點擊這裡使用三角波。 - - - - Click here for a saw-wave for current. - 點擊這裡使用鋸齒波。 - - - - Click here for a square-wave. - 點擊這裡使用方形波。 - - - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - 點擊這裡使用自訂波形。之後請把所用波形的樣本檔案拖到LFO Graph上。 - - - - Click here for random wave. - 點擊這裡使用隨機波形。 - - - + FREQ x 100 頻率 x 100 - - Click here if the frequency of this LFO should be multiplied by 100. - 點擊這裡把這個LFO的頻率乘以100。 - - - - multiply LFO-frequency by 100 + + Multiply LFO frequency by 100 - - MODULATE ENV-AMOUNT + + MODULATE ENV AMOUNT - - Click here to make the envelope-amount controlled by this LFO. + + Control envelope amount by this LFO - - control envelope-amount by this LFO - - - - + ms/LFO: - + Hint 提示 - - Drag a sample from somewhere and drop it in this window. - 把樣本檔案拖到這個視窗上放開。 + + Drag and drop a sample into this window. + @@ -2062,7 +4234,7 @@ Right clicking will bring up a context menu where you can change the order in wh - Low shelf gain + Low-shelf gain @@ -2087,7 +4259,7 @@ Right clicking will bring up a context menu where you can change the order in wh - High Shelf gain + High-shelf gain @@ -2097,7 +4269,7 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf res + Low-shelf res @@ -2122,7 +4294,7 @@ Right clicking will bring up a context menu where you can change the order in wh - High Shelf res + High-shelf res @@ -2137,7 +4309,7 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf freq + Low-shelf freq @@ -2162,7 +4334,7 @@ Right clicking will bring up a context menu where you can change the order in wh - High shelf freq + High-shelf freq @@ -2177,7 +4349,7 @@ Right clicking will bring up a context menu where you can change the order in wh - Low shelf active + Low-shelf active @@ -2202,7 +4374,7 @@ Right clicking will bring up a context menu where you can change the order in wh - High shelf active + High-shelf active @@ -2242,12 +4414,12 @@ Right clicking will bring up a context menu where you can change the order in wh - low pass type + Low-pass type - high pass type + High-pass type @@ -2270,7 +4442,7 @@ Right clicking will bring up a context menu where you can change the order in wh - Low Shelf + Low-shelf @@ -2295,7 +4467,7 @@ Right clicking will bring up a context menu where you can change the order in wh - High Shelf + High-shelf @@ -2305,8 +4477,8 @@ Right clicking will bring up a context menu where you can change the order in wh - In Gain - + Input gain + 輸入增益 @@ -2317,8 +4489,8 @@ Right clicking will bring up a context menu where you can change the order in wh - Out Gain - + Output gain + 輸出增益 @@ -2342,12 +4514,12 @@ Right clicking will bring up a context menu where you can change the order in wh - lp grp + LP group - hp grp + HP group @@ -2373,202 +4545,217 @@ Right clicking will bring up a context menu where you can change the order in wh ExportProjectDialog - + Export project 導出工程 - - Output - 輸出 - - - - File format: - 檔案格式: - - - - Samplerate: - 採樣率: - - - - 44100 Hz - 44100 Hz - - - - 48000 Hz - 48000 Hz - - - - 88200 Hz - 88200 Hz - - - - 96000 Hz - 96000 Hz - - - - 192000 Hz - 192000 Hz - - - - Depth: - 位深: - - - - 16 Bit Integer - 16 位整形 - - - - 24 Bit Integer - 24 位元整數 - - - - 32 Bit Float - 32 位浮點型 - - - - Stereo mode: + + Export as loop (remove extra bar) - - Stereo - - - - - Joint Stereo - - - - - Mono - - - - - Bitrate: - 碼率: - - - - 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 - 使用可變位元率 - - - - Quality settings - 質量設置 - - - - Interpolation: - 補間: - - - - Zero Order Hold - 零階保持 - - - - Sinc Fastest - 最快 Sinc 補間 - - - - Sinc Medium (recommended) - 中等 Sinc 補間 (推薦) - - - - Sinc Best (very slow!) - 最佳 Sinc 補間 (很慢!) - - - - Oversampling (use with care!): - 過採樣 (請謹慎使用!): - - - - 1x (None) - 1x (無) - - - - 2x - 2x - - - - 4x - 4x - - - - 8x - 8x - - - - Export as loop (remove end silence) - 導出爲迴環loop(移除結尾的靜音) - - - + 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 + 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 + 使用可變位元率 + + + + Quality settings + 質量設置 + + + + Interpolation: + 補間: + + + + Zero order hold + + + + + Sinc worst (fastest) + + + + + Sinc medium (recommended) + + + + + Sinc best (slowest) + + + + + Oversampling: + + + + + 1x (None) + 1x (無) + + + + 2x + 2x + + + + 4x + 4x + + + + 8x + 8x + + + Start 開始 - + Cancel 取消 @@ -2585,90 +4772,45 @@ Please make sure you have write permission to the file and the directory contain 請確認您有權限存取此檔案,以及包含此檔案的目錄後再試一次。 - + 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% - - Compression level: - - - - (fastest) - - - - (default) - - - - (smallest) - - - - - Expressive - - Selected graph - - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - - Fader - - + + Set value + + + + Please enter a new value between %1 and %2: 請輸入一個介於%1和%2之間的數值: @@ -2676,15 +4818,27 @@ Please make sure you have write permission to the file and the directory contain FileBrowser - + + User content + + + + + Factory content + + + + Browser 瀏覽器 + Search + Refresh list @@ -2692,47 +4846,67 @@ Please make sure you have write permission to the file and the directory contain FileBrowserTreeWidget - + Send to active instrument-track 發送到活躍的樂器軌道 - - Open in new instrument-track/Song Editor - 在新的樂器軌道/歌曲編輯器中打開 + + Open containing folder + - - Open in new instrument-track/B+B Editor - 在新樂器軌道/B+B 編輯器中打開 + + 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 錯誤 - - does not appear to be a valid - 並不是一個有效的 + + %1 does not appear to be a valid %2 file + - - file - 檔案 - - - + --- Factory files --- --- 內建檔案 --- @@ -2741,12 +4915,12 @@ Please make sure you have write permission to the file and the directory contain FlangerControls - Delay Samples + Delay samples - Lfo Frequency + LFO frequency @@ -2756,16 +4930,21 @@ Please make sure you have write permission to the file and the directory contain - Regen + Stereo phase + Regen + + + + Noise 噪音 - + Invert 反轉 @@ -2779,8 +4958,8 @@ Please make sure you have write permission to the file and the directory contain - Delay Time: - 延遲時間: + Delay time: + @@ -2804,142 +4983,485 @@ Please make sure you have write permission to the file and the directory contain - FDBK + PHASE - Feedback Amount: + Phase: - NOISE + FDBK - White Noise Amount: - 白噪音數量: + Feedback amount: + - + + NOISE + + + + + White noise amount: + + + + Invert 反轉 - FxLine + 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 + + + + + MixerLine + + Channel send amount 通道發送的數量 - - The FX channel receives input from one or more instrument tracks. - It in turn can be routed to multiple other FX channels. LMMS automatically takes care of preventing infinite loops for you and doesn't allow making a connection that would result in an infinite loop. - -In order to route the channel to another channel, select the FX channel and click on the "send" button on the channel you want to send to. The knob under the send button controls the level of signal that is sent to the channel. - -You can remove and move FX channels in the context menu, which is accessed by right-clicking the FX channel. - - - - - + 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 + + - FxMixer + MixerLineLcdSpinBox - + + Assign to: + 分配給: + + + + New mixer Channel + 新的效果通道 + + + + Mixer + + Master 主控 - - - - FX %1 + + + + Channel %1 FX %1 - + Volume 音量 - + Mute 靜音 - + Solo 獨奏 - FxMixerView + MixerView - - FX-Mixer + + Mixer 效果混合器 - - FX Fader %1 + + Fader %1 FX 衰減器 %1 - + Mute 靜音 - - Mute this FX channel + + Mute this mixer channel 靜音此效果通道 - + Solo 獨奏 - - Solo FX channel + + Solo mixer channel 獨奏效果通道 - FxRoute + MixerRoute - - + + Amount to send from channel %1 to channel %2 從通道 %1 發送到通道 %2 的量 @@ -2947,17 +5469,17 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrument - + Bank - + Patch 音色 - + Gain 增益 @@ -2965,58 +5487,23 @@ You can remove and move FX channels in the context menu, which is accessed by ri GigInstrumentView - - Open other GIG file - 打開另外的 GIG 文件 - - - - Click here to open another GIG file - 點擊這裏打開另外一個 GIG 文件 - - - - Choose the patch - 選擇路徑 - - - - Click here to change which patch of the GIG file to use - 點擊這裏選擇另一種 GIG 音色 - - - - - Change which instrument of the GIG file is being played - 更換正在使用的 GIG 文件中的樂器 - - - - Which GIG file is currently being used - 哪一個 GIG 文件正在被使用 - - - - Which patch of the GIG file is currently being used - GIG 文件的哪一個音色正在被使用 - - - - Gain - 增益 - - - - Factor to multiply samples by - - - - + + Open GIG file 開啟 GIG 檔案 - + + Choose patch + + + + + Gain: + 增益: + + + GIG Files (*.gig) GIG 檔案 (*.gig) @@ -3024,52 +5511,52 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 正在準備自動化控制編輯器 @@ -3077,20 +5564,25 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggio - + Arpeggio - + Arpeggio type - + Arpeggio range + + + Note repeats + + Cycle steps @@ -3170,139 +5662,119 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionArpeggioView - + ARPEGGIO 琶音 - - An arpeggio is a method playing (especially plucked) instruments, which makes the music much livelier. The strings of such instruments (e.g. harps) are plucked like chords. The only difference is that this is done in a sequential order, so the notes are not played at the same time. Typical arpeggios are major or minor triads, but there are a lot of other possible chords, you can select. - - - - + RANGE 範圍 - + Arpeggio range: - + octave(s) - - Use this knob for setting the arpeggio range in octaves. The selected arpeggio will be played within specified number of octaves. + + REP - + + Note repeats: + + + + + time(s) + + + + CYCLE - + Cycle notes: - + note(s) - - Jumps over n steps in the arpeggio and cycles around if we're over the note range. If the total note range is evenly divisible by the number of steps jumped over you will get stuck in a shorter arpeggio or even on one note. - - - - + SKIP - + Skip rate: - - - + + + % % - - The skip function will make the arpeggiator pause one step randomly. From its start in full counter clockwise position and no effect it will gradually progress to full amnesia at maximum setting. - - - - + MISS - + Miss rate: - - The miss function will make the arpeggiator miss the intended note. - - - - + TIME 時長 - + Arpeggio time: - + ms 毫秒 - - Use this knob for setting the arpeggio time in milliseconds. The arpeggio time specifies how long each arpeggio-tone should be played. - - - - + GATE 門限 - + Arpeggio gate: - - Use this knob for setting the arpeggio gate. The arpeggio gate specifies the percent of a whole arpeggio-tone that should be played. With this you can make cool staccato arpeggios. - - - - + Chord: 和絃: - + Direction: 方向: - + Mode: 模式: @@ -3310,488 +5782,488 @@ You can remove and move FX channels in the context menu, which is accessed by ri 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 @@ -3799,92 +6271,91 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentFunctionNoteStackingView - + STACKING 堆疊 - + Chord: 和絃: - + RANGE 範圍 - + Chord range: 和絃範圍: - + octave(s) - - - Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - - InstrumentMidiIOView - + ENABLE MIDI INPUT 啓用MIDI輸入 - - - CHANNEL - 通道 - - - - - VELOCITY - 力度 - - - + ENABLE MIDI OUTPUT 啓用MIDI輸出 - - PROGRAM - 樂器 + + + 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 + + Specify the velocity normalization base for MIDI-based instruments at 100% note velocity. - + BASE VELOCITY 基準力度 @@ -3892,171 +6363,171 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentMiscView - + MASTER PITCH 主音高 - - Enables the use of Master Pitch - 啓用主音高 + + Enables the use of master pitch + InstrumentSoundShaping - + VOLUME 音量 - + Volume 音量 - + CUTOFF 切除 - - + + Cutoff frequency 切除頻率 - + RESO - + Resonance 共鳴 - + Envelopes/LFOs 壓限/低頻振盪 - + Filter type 過濾器類型 - + Q/Resonance + + + Low-pass + + - LowPass - 低通 + Hi-pass + - HiPass - 高通 + Band-pass csg + - BandPass csg - 帶通 csg + Band-pass czpg + - BandPass czpg - 帶通 czpg - - - Notch 凹口濾波器 - - Allpass - 全通 + + All-pass + - + Moog Moog + + + 2x Low-pass + + - 2x LowPass - 2 個低通串聯 + RC Low-pass 12 dB/oct + - RC LowPass 12dB - RC 低通(12dB) + RC Band-pass 12 dB/oct + - RC BandPass 12dB - RC 帶通(12dB) + RC High-pass 12 dB/oct + - RC HighPass 12dB - RC 高通(12dB) + RC Low-pass 24 dB/oct + - RC LowPass 24dB - RC 低通(24dB) + RC Band-pass 24 dB/oct + - RC BandPass 24dB - RC 帶通(24dB) + RC High-pass 24 dB/oct + - RC HighPass 24dB - RC 高通(24dB) + Vocal Formant + - Vocal Formant Filter - 人聲移除過濾器 - - - 2x Moog + + + SV Low-pass + + - SV LowPass + SV Band-pass - SV BandPass + SV High-pass - SV HighPass - - - - SV Notch - + Fast Formant - + Tripole @@ -4064,62 +6535,42 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentSoundShapingView - + TARGET 目標 - - These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - - - - + FILTER - - Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - - - - + FREQ 頻率 - - cutoff frequency: - + + Cutoff frequency: + 頻譜刀頻率: - + Hz Hz - - Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... + + Q/RESO - - RESO + + Q/Resonance: - - Resonance: - 共鳴: - - - - Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - - - - + Envelopes, LFOs and filters are not supported by the current instrument. 包絡和低頻振盪 (LFO) 不被當前樂器支持。 @@ -4127,21 +6578,26 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrack - - With this knob you can set the volume of the opened channel. - 使用此旋鈕可以設置開放通道的音量。 - - - + unnamed_track 未命名軌道 - + Base note 基本音 + + + First note + + + + + Last note + 上一個音符 + Volume @@ -4164,17 +6620,27 @@ You can remove and move FX channels in the context menu, which is accessed by ri - FX channel + Mixer channel 效果通道 - Master Pitch + Master pitch 主音高 - - + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + Default preset 預置 @@ -4182,213 +6648,267 @@ You can remove and move FX channels in the context menu, which is accessed by ri InstrumentTrackView - + Volume 音量 - + Volume: 音量: - + VOL VOL - + Panning 聲相 - + Panning: 聲相: - + PAN PAN - + MIDI MIDI - + Input 輸入 - + Output 輸出 - - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + Channel %1: %2 效果 %1: %2 InstrumentTrackWindow - + GENERAL SETTINGS 常規設置 - - Use these controls to view and edit the next/previous track in the song editor. - 使用這些控制選項來查看和編輯在歌曲編輯器中的上個/下個軌道。 + + Volume + 音量 - - Instrument volume - 樂器音量 - - - + Volume: 音量: - + VOL VOL - + Panning 聲相 - + Panning: 聲相: - + PAN PAN - + Pitch 音高 - + Pitch: 音高: - + cents 音分 cents - + PITCH - + Pitch range (semitones) 音域範圍(半音) - + RANGE 範圍 - - FX channel + + Mixer channel 效果通道 - - FX + + CHANNEL 效果 - + Save current instrument track settings in a preset file 儲存目前的樂器軌道設定為預設集檔案 - - Click here, if you want to save current instrument track settings in a preset file. Later you can load this preset by double-clicking it in the preset-browser. - 如果你想保存當前樂器軌道設置到預設文件, 請點擊這裏。稍後你可以在預設瀏覽器中雙擊以使用它。 - - - + SAVE 保存 - + Envelope, filter & LFO - + Chord stacking & arpeggio - + Effects - - MIDI settings - MIDI設置 + + 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 + + + + + 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之間的數值: @@ -4417,33 +6937,46 @@ You can remove and move FX channels in the context menu, which is accessed by ri LadspaControlView - + Link channels 連接通道 - + Value: 值: - - - Sorry, no help available. - 啊哦,這個沒有幫助文檔。 - 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之間的數值: @@ -4521,136 +7054,126 @@ You can remove and move FX channels in the context menu, which is accessed by ri - - LFO Controller - LFO 控制器 - - - + BASE 基準 - - Base amount: - 基礎值: + + Base: + - todo + FREQ + 頻率 + + + + LFO frequency: - - SPD - - - - - LFO-speed: - - - - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - - - - + AMNT - + Modulation amount: 調製量: - - Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - - - - + PHS - + Phase offset: - - degrees + + degrees - - With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. + + Sine wave + 正弦波 + + + + Triangle wave + 三角波 + + + + Saw wave + 鋸齒波 + + + + Square wave + 方波 + + + + Moog saw wave - - Click here for a sine-wave. - 點擊這裡使用正弦波。 - - - - Click here for a triangle-wave. - 點擊這裡使用三角波。 - - - - Click here for a saw-wave. + + Exponential wave - - Click here for a square-wave. - 點擊這裡使用方形波。 - - - - Click here for a moog saw-wave. + + White noise - - Click here for an exponential wave. - - - - - Click here for white-noise. - - - - - Click here for a user-defined shape. + + User-defined shape. Double click to pick a file. + + + Mutliply modulation frequency by 1 + + + + + Mutliply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + - LmmsCore + Engine - + Generating wavetables 正在生成波形表 - + Initializing data structures 正在初始化數據結構 - + Opening audio and midi devices 正在啓動音頻和 MIDI 設備 - + Launching mixer threads 生在啓動混音器線程 @@ -4658,500 +7181,510 @@ Double click to pick a file. 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 我的電腦 - - Loading background artwork - 正在加載背景圖案 - - - + &File 檔案(&F) - + &New 新建(&N) - - New from template - 從模版新建工程 - - - + &Open... 打開(&O)... - - &Recently Opened Projects - 最近打開的工程(&R) + + 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 幫助 - - What's This? - 這是什麼? - - - + About 關於 - + Create new project 新建工程 - + Create new project from template 從模版新建工程 - + Open existing project 打開已有工程 - + Recently opened projects 最近打開的工程 - + Save current project 保存當前工程 - + Export current project 導出當前工程 - - What's this? - 這是什麼? - - - - Toggle metronome - 開啓/關閉節拍器 - - - - Show/hide Song-Editor - 顯示/隱藏歌曲編輯器 - - - - By pressing this button, you can show or hide the Song-Editor. With the help of the Song-Editor you can edit song-playlist and specify when which track should be played. You can also insert and move samples (e.g. rap samples) directly into the playlist. - 點擊這個按鈕, 你可以顯示/隱藏歌曲編輯器。在歌曲編輯器的幫助下, 你可以編輯歌曲播放列表並且設置哪個音軌在哪個時間播放。你還可以在播放列表中直接插入和移動採樣(如 RAP 採樣)。 - - - - Show/hide Beat+Bassline Editor - 顯示/隱藏節拍+旋律編輯器 - - - - By pressing this button, you can show or hide the Beat+Bassline Editor. The Beat+Bassline Editor is needed for creating beats, and for opening, adding, and removing channels, and for cutting, copying and pasting beat and bassline-patterns, and for other things like that. + + Metronome - - Show/hide Piano-Roll + + + Song Editor + 顯示/隱藏歌曲編輯器 + + + + + Beat+Bassline Editor + 顯示/隱藏節拍+旋律編輯器 + + + + + Piano Roll 顯示/隱藏鋼琴窗 - - Click here to show or hide the Piano-Roll. With the help of the Piano-Roll you can edit melodies in an easy way. - 點擊這裏顯示或隱藏鋼琴窗。在鋼琴窗的幫助下, 你可以很容易地編輯旋律。 - - - - Show/hide Automation Editor + + + Automation Editor 顯示/隱藏自動控制編輯器 - - Click here to show or hide the Automation Editor. With the help of the Automation Editor you can edit dynamic values in an easy way. - 點擊這裏顯示或隱藏自動控制編輯器。在自動控制編輯器的幫助下, 你可以很簡單地控制動態數值。 - - - - Show/hide FX Mixer + + + Mixer 顯示/隱藏混音器 - - Click here to show or hide the FX Mixer. The FX Mixer is a very powerful tool for managing effects for your song. You can insert effects into different effect-channels. - 點擊這裏顯示或隱藏 FX 混音器。FX 混音器是管理你歌曲中不同音效的強大工具。你可以向不同的通道添加不同的效果。 - - - - Show/hide project notes - 顯示/隱藏工程註釋 - - - - Click here to show or hide the project notes window. In this window you can put down your project notes. - 點擊這裏顯示或隱藏工程註釋窗。在此窗口中你可以寫下工程的註釋。 - - - + 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的相關文檔。 - - Song Editor - 顯示/隱藏歌曲編輯器 - - - - Beat+Bassline Editor - 顯示/隱藏節拍+旋律編輯器 - - - - Piano Roll - 顯示/隱藏鋼琴窗 - - - - Automation Editor - 顯示/隱藏自動控制編輯器 - - - - FX Mixer - 顯示/隱藏混音器 - - - - Project Notes - 顯示/隱藏工程註釋 - - - + 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 拍子記號 @@ -5169,6 +7702,25 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + MidiController @@ -5185,23 +7737,43 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiImport - - + + Setup incomplete 設置不完整 - - You do not have 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 文件後將會沒有聲音。你需要下載一個通用 MIDI (GM) 的 Soundfont, 並且在設置對話框中選中後再試一次。 + + 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 軌道 @@ -5221,6 +7793,241 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 2/4 + + + + + 3/4 + + + + + 4/4 + + + + + 5/4 + + + + + 6/4 + + + + + Measures: + + + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + + + + + 9 + 9 + + + + 10 + + + + + 11 + 11 + + + + 12 + + + + + 13 + 13 + + + + 14 + + + + + 15 + + + + + 16 + + + + + Default Length: + + + + + + 1/16 + + + + + + 1/15 + + + + + + 1/12 + + + + + + 1/9 + + + + + + 1/8 + + + + + + 1/6 + + + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + + &File + 檔案(&F) + + + + &Edit + 編輯(&E) + + + + &Quit + 退出(&Q) + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + MidiPort @@ -5282,603 +8089,603 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiSetupWidget - - DEVICE - 設備 + + Device + MonstroInstrument - - Osc 1 Volume + + Osc 1 volume - - Osc 1 Panning + + Osc 1 panning - - Osc 1 Coarse detune + + Osc 1 coarse detune - - Osc 1 Fine detune left + + Osc 1 fine detune left - - Osc 1 Fine detune right + + Osc 1 fine detune right - - Osc 1 Stereo phase offset + + Osc 1 stereo phase offset - - Osc 1 Pulse width + + Osc 1 pulse width - - Osc 1 Sync send on rise + + Osc 1 sync send on rise - - Osc 1 Sync send on fall + + Osc 1 sync send on fall - - Osc 2 Volume + + Osc 2 volume - - Osc 2 Panning + + Osc 2 panning - - Osc 2 Coarse detune + + Osc 2 coarse detune - - Osc 2 Fine detune left + + Osc 2 fine detune left - - Osc 2 Fine detune right + + Osc 2 fine detune right - - Osc 2 Stereo phase offset + + Osc 2 stereo phase offset - - Osc 2 Waveform + + Osc 2 waveform - - Osc 2 Sync Hard + + Osc 2 sync hard - - Osc 2 Sync Reverse + + Osc 2 sync reverse - - Osc 3 Volume + + Osc 3 volume - - Osc 3 Panning + + Osc 3 panning - - Osc 3 Coarse detune + + Osc 3 coarse detune - + Osc 3 Stereo phase offset - - Osc 3 Sub-oscillator mix + + Osc 3 sub-oscillator mix - - Osc 3 Waveform 1 + + Osc 3 waveform 1 - - Osc 3 Waveform 2 + + Osc 3 waveform 2 - - Osc 3 Sync Hard + + Osc 3 sync hard - - Osc 3 Sync Reverse + + Osc 3 Sync reverse - - LFO 1 Waveform + + LFO 1 waveform - - LFO 1 Attack + + LFO 1 attack - - LFO 1 Rate + + LFO 1 rate - - LFO 1 Phase + + LFO 1 phase - - LFO 2 Waveform + + LFO 2 waveform - - LFO 2 Attack + + LFO 2 attack - - LFO 2 Rate + + LFO 2 rate - - LFO 2 Phase + + LFO 2 phase - - 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 - - Osc2-3 modulation + + Osc 2+3 modulation - + Selected view - - Vol1-Env1 + + Osc 1 - Vol env 1 - - Vol1-Env2 + + Osc 1 - Vol env 2 - - Vol1-LFO1 + + Osc 1 - Vol LFO 1 - - Vol1-LFO2 + + Osc 1 - Vol LFO 2 - - Vol2-Env1 + + Osc 2 - Vol env 1 - - Vol2-Env2 + + Osc 2 - Vol env 2 - - Vol2-LFO1 + + Osc 2 - Vol LFO 1 - - Vol2-LFO2 + + Osc 2 - Vol LFO 2 - - Vol3-Env1 + + Osc 3 - Vol env 1 - - Vol3-Env2 + + Osc 3 - Vol env 2 - - Vol3-LFO1 + + Osc 3 - Vol LFO 1 - - Vol3-LFO2 + + Osc 3 - Vol LFO 2 - - Phs1-Env1 + + Osc 1 - Phs env 1 - - Phs1-Env2 + + Osc 1 - Phs env 2 - - Phs1-LFO1 + + Osc 1 - Phs LFO 1 - - Phs1-LFO2 + + Osc 1 - Phs LFO 2 - - Phs2-Env1 + + Osc 2 - Phs env 1 - - Phs2-Env2 + + Osc 2 - Phs env 2 - - Phs2-LFO1 + + Osc 2 - Phs LFO 1 - - Phs2-LFO2 + + Osc 2 - Phs LFO 2 - - Phs3-Env1 + + Osc 3 - Phs env 1 - - Phs3-Env2 + + Osc 3 - Phs env 2 - - Phs3-LFO1 + + Osc 3 - Phs LFO 1 - - Phs3-LFO2 + + Osc 3 - Phs LFO 2 - - Pit1-Env1 + + Osc 1 - Pit env 1 - - Pit1-Env2 + + Osc 1 - Pit env 2 - - Pit1-LFO1 + + Osc 1 - Pit LFO 1 - - Pit1-LFO2 + + Osc 1 - Pit LFO 2 - - Pit2-Env1 + + Osc 2 - Pit env 1 - - Pit2-Env2 + + Osc 2 - Pit env 2 - - Pit2-LFO1 + + Osc 2 - Pit LFO 1 - - Pit2-LFO2 + + Osc 2 - Pit LFO 2 - - Pit3-Env1 + + Osc 3 - Pit env 1 - - Pit3-Env2 + + Osc 3 - Pit env 2 - - Pit3-LFO1 + + Osc 3 - Pit LFO 1 - - Pit3-LFO2 + + Osc 3 - Pit LFO 2 - - PW1-Env1 + + Osc 1 - PW env 1 - - PW1-Env2 + + Osc 1 - PW env 2 - - PW1-LFO1 + + Osc 1 - PW LFO 1 - - PW1-LFO2 + + Osc 1 - PW LFO 2 - - Sub3-Env1 + + Osc 3 - Sub env 1 - - Sub3-Env2 + + Osc 3 - Sub env 2 - - Sub3-LFO1 + + Osc 3 - Sub LFO 1 - - Sub3-LFO2 + + 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 @@ -5886,433 +8693,240 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MonstroView - + Operators view - - The Operators view contains all the operators. These include both audible operators (oscillators) and inaudible operators, or modulators: Low-frequency oscillators and Envelopes. - -Knobs and other widgets in the Operators view have their own what's this -texts, so you can get more specific help for them that way. - - - - + Matrix view 矩陣視圖 - - The Matrix view contains the modulation matrix. Here you can define the modulation relationships between the various operators: Each audible operator (oscillators 1-3) has 3-4 properties that can be modulated by any of the modulators. Using more modulations consumes more CPU power. - -The view is divided to modulation targets, grouped by the target oscillator. Available targets are volume, pitch, phase, pulse width and sub-osc ratio. Note: some targets are specific to one oscillator only. - -Each modulation target has 4 knobs, one for each modulator. By default the knobs are at 0, which means no modulation. Turning a knob to 1 causes that modulator to affect the modulation target as much as possible. Turning it to -1 does the same, but the modulation is inversed. - - - - - - + + + Volume 音量 - - - + + + Panning 聲相 - - - + + + Coarse detune - - - + + + semitones 半音 - - - Finetune left + + + Fine tune left - - - - + + + + cents - - - Finetune right + + + 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 Osc2 with Osc3 + + Mix osc 2 with osc 3 - - Modulate amplitude of Osc3 with Osc2 + + Modulate amplitude of osc 3 by osc 2 - - Modulate frequency of Osc3 with Osc2 + + Modulate frequency of osc 3 by osc 2 - - Modulate phase of Osc3 with Osc2 + + Modulate phase of osc 3 by osc 2 - - The CRS knob changes the tuning of oscillator 1 in semitone steps. - - - - - The CRS knob changes the tuning of oscillator 2 in semitone steps. - - - - - The CRS knob changes the tuning of oscillator 3 in semitone steps. - - - - - - - - FTL and FTR change the finetuning of the oscillator for left and right channels respectively. These can add stereo-detuning to the oscillator which widens the stereo image and causes an illusion of space. - - - - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. - - - - - The PW knob controls the pulse width, also known as duty cycle, of oscillator 1. Oscillator 1 is a digital pulse wave oscillator, it doesn't produce bandlimited output, which means that you can use it as an audible oscillator but it will cause aliasing. You can also use it as an inaudible source of a sync signal, which can be used to synchronize oscillators 2 and 3. - - - - - Send Sync on Rise: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from low to high, ie. when the amplitude changes from -1 to 1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - - Send Sync on Fall: When enabled, the Sync signal is sent every time the state of oscillator 1 changes from high to low, ie. when the amplitude changes from 1 to -1. Oscillator 1's pitch, phase and pulse width may affect the timing of syncs, but its volume has no effect on them. Sync signals are sent independently for both left and right channels. - - - - - - Hard sync: Every time the oscillator receives a sync signal from oscillator 1, its phase is reset to 0 + whatever its phase offset is. - - - - - - Reverse sync: Every time the oscillator receives a sync signal from oscillator 1, the amplitude of the oscillator gets inverted. - - - - - Choose waveform for oscillator 2. - - - - - Choose waveform for oscillator 3's first sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - - Choose waveform for oscillator 3's second sub-osc. Oscillator 3 can smoothly interpolate between two different waveforms. - - - - - The SUB knob changes the mixing ratio of the two sub-oscs of oscillator 3. Each sub-osc can be set to produce a different waveform, and oscillator 3 can smoothly interpolate between them. All incoming modulations to oscillator 3 are applied to both sub-oscs/waveforms in the exact same way. - - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -Mix mode means no modulation: the outputs of the oscillators are simply mixed together. - - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -AM means amplitude modulation: Oscillator 3's amplitude (volume) is modulated by oscillator 2. - - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -FM means frequency modulation: Oscillator 3's frequency (pitch) is modulated by oscillator 2. The frequency modulation is implemented as phase modulation, which gives a more stable overall pitch than "pure" frequency modulation. - - - - - In addition to dedicated modulators, Monstro allows oscillator 3 to be modulated by the output of oscillator 2. - -PM means phase modulation: Oscillator 3's phase is modulated by oscillator 2. It differs from frequency modulation in that the phase changes are not cumulative. - - - - - Select the waveform for LFO 1. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - - Select the waveform for LFO 2. -"Random" and "Random smooth" are special waveforms: they produce random output, where the rate of the LFO controls how often the state of the LFO changes. The smooth version interpolates between these states with cosine interpolation. These random modes can be used to give "life" to your presets - add some of that analog unpredictability... - - - - - - Attack causes the LFO to come on gradually from the start of the note. - - - - - - Rate sets the speed of the LFO, measured in milliseconds per cycle. Can be synced to tempo. - - - - - - PHS controls the phase offset of the LFO. - - - - - - PRE, or pre-delay, delays the start of the envelope from the start of the note. 0 means no delay. - - - - - - ATT, or attack, controls how fast the envelope ramps up at start, measured in milliseconds. A value of 0 means instant. - - - - - - HOLD controls how long the envelope stays at peak after the attack phase. - - - - - - DEC, or decay, controls how fast the envelope falls off from its peak, measured in milliseconds it would take to go from peak to zero. The actual decay may be shorter if sustain is used. - - - - - - SUS, or sustain, controls the sustain level of the envelope. The decay phase will not go below this level as long as the note is held. - - - - - - REL, or release, controls how long the release is for the note, measured in how long it would take to fall from peak to zero. Actual release may be shorter, depending on at what phase the note is released. - - - - - - The slope knob controls the curve or shape of the envelope. A value of 0 creates straight rises and falls. Negative values create curves that start slowly, peak quickly and fall of slowly again. Positive values create curves that start and end quickly, and stay longer near the peaks. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount 調製量 @@ -6336,8 +8950,8 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Dry Gain: - 幹聲增益: + Dry gain: + @@ -6346,7 +8960,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Lowpass stages: + Low-pass stages: @@ -6356,109 +8970,109 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Swap left and right input channel for reflections + Swap left and right input channels for reflections NesInstrument - - Channel 1 Coarse detune + + Channel 1 coarse detune - - Channel 1 Volume + + Channel 1 volume - - Channel 1 Envelope length + + Channel 1 envelope length - - Channel 1 Duty cycle + + Channel 1 duty cycle - - Channel 1 Sweep amount + + Channel 1 sweep amount - - Channel 1 Sweep rate + + Channel 1 sweep rate - + Channel 2 Coarse detune - + Channel 2 Volume - - Channel 2 Envelope length + + Channel 2 envelope length - - Channel 2 Duty cycle + + Channel 2 duty cycle - - Channel 2 Sweep amount + + Channel 2 sweep amount - - Channel 2 Sweep rate + + Channel 2 sweep rate - - Channel 3 Coarse detune + + Channel 3 coarse detune - - Channel 3 Volume + + Channel 3 volume - - Channel 4 Volume + + Channel 4 volume - - Channel 4 Envelope length + + Channel 4 envelope length - - Channel 4 Noise frequency + + Channel 4 noise frequency - - Channel 4 Noise frequency sweep + + Channel 4 noise frequency sweep - + Master volume 主音量 - + Vibrato @@ -6466,220 +9080,408 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 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 + + 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 @@ -6726,105 +9528,85 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PatmanView - - Open other patch - 打開其他音色 + + Open patch + - - Click here to open another patch-file. Loop and Tune settings are not reset. - 點擊這裏打開另一個音色文件。循環和調音設置不會被重設。 - - - + Loop 循環 - + Loop mode 循環模式 - - Here you can toggle the Loop mode. If enabled, PatMan will use the loop information available in the file. - 在這裏你可以開關循環模式。如果啓用,PatMan 會使用文件中的循環信息。 - - - + Tune 調音 - + Tune mode 調音模式 - - Here you can toggle the Tune mode. If enabled, PatMan will tune the sample to match the note's frequency. - 這裏可以開關調音模式。如果啓用,PatMan 會將採樣調成和音符一樣的頻率。 - - - + No file selected 未選擇檔案 - + Open patch file 打開音色文件 - + Patch-Files (*.pat) 音色文件 (*.pat) - PatternView + MidiClipView - - use mouse wheel to set velocity of a step - - - - - double-click to open in Piano Roll - - - - + Open in piano-roll 在鋼琴窗中打開 - + + Set as ghost in piano-roll + + + + Clear all notes 清除所有音符 - + Reset name 重置名稱 - + Change name 修改名稱 - + Add steps 添加音階 - + Remove steps 移除音階 - + Clone Steps @@ -6837,12 +9619,12 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator 峯值控制器 - + 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 中的錯誤,峰值控制器可能並未正確地連線。請確認峰值控制器正確地連線後再次儲存檔案。造成您的不便,深感抱歉。 @@ -6863,199 +9645,234 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PeakControllerEffectControlDialog - + BASE 基準 - - Base amount: - 基礎值: + + Base: + - + AMNT - + Modulation amount: 調製量: - + MULT - - Amount Multiplicator: + + Amount multiplicator: - + ATCK 打擊 - + Attack: 打擊聲: - + DCAY - + Release: 釋音: - + TRSH - + Treshold: + + + Mute output + 輸出靜音 + + + + Absolute value + + PeakControllerEffectControls - + Base value 基準值 - + Modulation amount 調製量 - + Attack 打進聲 - + Release 釋放 - + Treshold 閥值 - + Mute output 輸出靜音 - - Abs Value + + Absolute value - - Amount Multiplicator + + 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 聲相:居中 - - Please open a pattern by double-clicking on it! + + 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 的值: @@ -7063,207 +9880,284 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator PianoRollWindow - - Play/pause current pattern (Space) + + 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 - - Stop playing of current pattern (Space) + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) 停止當前片段(空格) - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you can play and edit them afterwards. - - - - - Click here to record notes from a MIDI-device or the virtual test-piano of the according channel-window to the current pattern. When recording all notes you play will be written to this pattern and you will hear the song or BB track in the background. - - - - - Click here to stop playback of current pattern. - - - - + Edit actions 編輯功能 - + Draw mode (Shift+D) 繪製模式 (Shift+D) - + Erase mode (Shift+E) 擦除模式 (Shift+E) - + Select mode (Shift+S) 選擇模式 (Shift+S) - - Click here and draw mode will be activated. In this mode you can add, resize and move notes. This is the default mode which is used most of the time. You can also press 'Shift+D' on your keyboard to activate this mode. In this mode, hold %1 to temporarily go into select mode. - - - - - Click here and erase mode will be activated. In this mode you can erase notes. You can also press 'Shift+E' on your keyboard to activate this mode. - 點擊啓用擦除模式。此模式下你可以擦除音符。你可以按鍵盤上的 'Shift+E' 啓用此模式。 - - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold %1 in draw mode to temporarily use select mode. - - - - + Pitch Bend mode (Shift+T) - - Click here and Pitch Bend mode will be activated. In this mode you can click a note to open its automation detuning. You can utilize this to slide notes from one to another. You can also press 'Shift+T' on your keyboard to activate this mode. - - - - + Quantize - + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + Copy paste controls - - Cut selected notes (%1+X) - 剪切選定音符 (%1+X) - - - - Copy selected notes (%1+C) - 複製選定音符 (%1+C) - - - - Paste notes from clipboard (%1+V) - 從剪貼板粘貼音符 (%1+V) - - - - Click here and the selected notes will be cut into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. + + Cut (%1+X) - - Click here and the selected notes will be copied into the clipboard. You can paste them anywhere in any pattern by clicking on the paste button. + + Copy (%1+C) - - Click here and the notes from the clipboard will be pasted at the first visible measure. + + Paste (%1+V) - + Timeline controls 時間線控制 - + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + Zoom and note controls - - This controls the magnification of an axis. It can be helpful to choose magnification for a specific task. For ordinary editing, the magnification should be fitted to your smallest notes. + + Horizontal zooming + 橫向縮放 + + + + Vertical zooming + 垂直縮放 + + + + Quantization + 量化 + + + + Note length - - The 'Q' stands for quantization, and controls the grid size notes and control points snap to. With smaller quantization values, you can draw shorter notes in Piano Roll, and more exact control points in the Automation Editor. + + Key - - This lets you select the length of new notes. 'Last Note' means that LMMS will use the note length of the note you last edited + + Scale - - The feature is directly connected to the context-menu on the virtual keyboard, to the left in Piano Roll. After you have chosen the scale you want in this drop-down menu, you can right click on a desired key in the virtual keyboard, and then choose 'Mark current Scale'. LMMS will highlight all notes that belongs to the chosen scale, and in the key you have selected! + + Chord - - Let you select a chord which LMMS then can draw or highlight.You can find the most common chords in this drop-down menu. After you have selected a chord, click anywhere to place the chord, and right click on the virtual keyboard to open context menu and highlight the chord. To return to single note placement, you need to choose 'No chord' in this drop-down menu. + + Snap mode - - + + Clear ghost notes + + + + + Piano-Roll - %1 鋼琴窗 - %1 - - - Piano-Roll - no pattern + + + 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”失敗! @@ -7271,178 +10165,1146 @@ Reason: "%2" 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 + + + + + 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 + + + + + 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 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 + 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)... @@ -7450,98 +11312,125 @@ Reason: "%2" ProjectRenderer - - WAV-File (*.wav) - WAV-文件 (*.wav) - - - - Compressed OGG-File (*.ogg) - 壓縮的 OGG 文件(*.ogg) - - - FLAC-File (*.flac) + + WAV (*.wav) - - Compressed MP3-File (*.mp3) + + 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 檔案:%1 @@ -7551,10 +11440,18 @@ Reason: "%2" 檔案: + + RecentProjectsMenu + + + &Recently Opened Projects + 最近打開的工程(&R) + + RenameDialog - + Rename... 重命名... @@ -7568,7 +11465,7 @@ Reason: "%2" - Input Gain: + Input gain: 輸入增益: @@ -7598,7 +11495,7 @@ Reason: "%2" - Output Gain: + Output gain: 輸出增益: @@ -7606,8 +11503,8 @@ Reason: "%2" ReverbSCControls - Input Gain - + Input gain + 輸入增益 @@ -7621,126 +11518,601 @@ Reason: "%2" - Output Gain + 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 音訊檔案的檔案大小已限制為 %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) - SampleTCOView + SampleClipView - - double-click to select sample - 雙擊選擇採樣 + + 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 採樣軌道 @@ -7748,608 +12120,795 @@ Reason: "%2" 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 - - Setup LMMS - 設置LMMS - - - - - General settings - 常規設置 - - - - BUFFER SIZE - 緩衝區大小 - - - - - Reset to default-value - 重置爲默認值 - - - - MISC - 雜項 - - - - Enable tooltips - 啓用工具提示 - - - - Show restart warning after changing settings - 在改變設置後顯示重啓警告 - - - - Display volume as dBFS + + Reset to default value - - Compress project files per default - 預設壓縮專案檔 - - - - One instrument track window mode - 單樂器軌道窗口模式 - - - - HQ-mode for output audio-device - 對輸出設備使用高質量輸出 - - - - Compact track buttons - 緊湊化軌道圖標 - - - - Sync VST plugins to host playback - 同步 VST 插件和主機回放 - - - - Enable note labels in piano roll - 在鋼琴窗中顯示音號 - - - - Enable waveform display by default - 默認啓用波形圖 - - - - Keep effects running even without input - 在沒有輸入時也運行音頻效果 - - - - Create backup file when saving a project - 儲存專案時建立備份檔 - - - - Reopen last project on start - 啓動時打開最近的項目 - - - + Use built-in NaN handler - - PLUGIN EMBEDDING + + 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 - - LANGUAGE - 語言 + + Keep plugin windows on top when not embedded + - - - Paths - 路徑 + + Sync VST plugins to host playback + 同步 VST 插件和主機回放 - - Directories - 目錄 + + 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工作目錄 - - Themes directory - 主題文件目錄 + + VST plugins directory + - - Background artwork - 背景圖片 + + LADSPA plugins directories + - - VST-plugin directory - VST插件目錄 - - - - GIG directory - GIG 目錄 - - - + SF2 directory SF2 目錄 - - LADSPA plugin directories - LADSPA 插件目錄 - - - - STK rawwave directory - STK rawwave 目錄 - - - - Default Soundfont File - 預設 SoundFont 檔案 - - - - - Performance settings - 性能設置 - - - - Auto save - 自動保存 - - - - Enable auto-save + + Default SF2 - - Allow auto-save while playing + + GIG directory + GIG 目錄 + + + + Theme directory - - UI effects vs. performance - 界面特效 vs 性能 + + Background artwork + 背景圖片 - - Smooth scroll in Song Editor - 歌曲編輯器中啓用平滑滾動 + + Some changes require restarting. + - - Show playback cursor in AudioFileProcessor - 在 AudioFileProcessor 中顯示播放指標 + + Autosave interval: %1 + - - - Audio settings - 音頻設置 + + Choose the LMMS working directory + - - AUDIO INTERFACE - 音頻接口 + + Choose your VST plugins directory + - - - MIDI settings - MIDI設置 + + Choose your LADSPA plugins directory + - - MIDI INTERFACE - MIDI接口 + + Choose your default SF2 + - + + Choose your theme directory + + + + + Choose your background picture + + + + + + Paths + 路徑 + + + OK 確定 - + Cancel 取消 - - Restart LMMS - 重啓LMMS - - - - Please note that most changes won't take effect until you restart LMMS! - 請注意很多設置需要重啓LMMS纔可生效! - - - + Frames: %1 Latency: %2 ms 幀數: %1 延遲: %2 毫秒 - - Here you can setup the internal buffer-size used by LMMS. Smaller values result in a lower latency but also may cause unusable sound or bad performance, especially on older computers or systems with a non-realtime kernel. - 在這裏,你可以設置 LMMS 所用緩衝區的大小。緩衝區越小,延遲越小,但聲音質量和性能可能會受影響。 - - - - Choose LMMS working directory - 選擇 LMMS 工作目錄 - - - + Choose your GIG directory 選擇 GIG 目錄 - + Choose your SF2 directory 選擇 SF2 目錄 - - Choose your VST-plugin directory - 選擇 VST 插件目錄 - - - - Choose artwork-theme directory - 選擇插圖目錄 - - - - Choose LADSPA plugin directory - 選擇 LADSPA 插件目錄 - - - - Choose STK rawwave directory - 選擇 STK rawwave 目錄 - - - - Choose default SoundFont - 選擇默認的 SoundFont - - - - Choose background artwork - 選擇背景圖片 - - - + minutes 分鐘 - + minute 分鐘 - + Disabled + + + SidInstrument - - Auto-save interval: %1 + + Cutoff frequency + 切除頻率 + + + + Resonance + 共鳴 + + + + Filter type + 過濾器類型 + + + + Voice 3 off + 聲音 3 關 + + + + Volume + 音量 + + + + Chip model + 芯片型號 + + + + SidInstrumentView + + + Volume: + 音量: + + + + Resonance: + 共鳴: + + + + + Cutoff frequency: + 頻譜刀頻率: + + + + High-pass filter - - Set the time between automatic backup to %1. -Remember to also save your project manually. You can choose to disable saving while playing, something some older systems find difficult. + + Band-pass filter - - Here you can select your preferred audio-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, JACK, OSS and more. Below you see a box which offers controls to setup the selected audio-interface. - 在這裏你可以選擇你想要的音頻接口。取決於你的系統和編譯時的設置, 你可以選擇 ALSA, JACK, OSS 等選項。在下面的方框中你可以設置音頻接口的控制項目。 + + Low-pass filter + - - Here you can select your preferred MIDI-interface. Depending on the configuration of your system during compilation time you can choose between ALSA, OSS and more. Below you see a box which offers controls to setup the selected MIDI-interface. - 在這裏你可以選擇你想要的 MIDI 接口。取決於你的系統和編譯時的設置, 你可以選擇 ALSA, OSS 等選項。在下面的方框中你可以設置 MIDI 接口的控制項目。 + + 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 + + + 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 LMMS錯誤報告 - - 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 - 所有檔案類型 - - - - Empty project - 空工程 - - - - - This project is empty so exporting makes no sense. Please put some items into Song Editor first! - 這個工程是空的所以就算導出也沒有意義,請在歌曲編輯器中加入一點聲音吧! - - - - Select directory for writing exported tracks... - 選擇寫入導出音軌的目錄... - - - - - untitled - 未命名 - - - - - Select file for project-export... - 匯出專案至… - - - - Save project + (repeated %1 times) - - MIDI File (*.mid) - MIDI 檔案 (*.mid) - - - - The following errors occured while loading: - 載入時發生以下錯誤: + + 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. 無法開啟 %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 to write to this file. Please make sure you have write-access to the file and try again. - 無法開啟 %1 以進行寫入。請確認您有權限寫入此檔案後再試一次。 + + 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 - - This %1 was created with LMMS %2. - - - - + template - + project - + Tempo 節奏 - - TEMPO/BPM - 節奏/BPM - - - - tempo of song - 歌曲的節奏 - - - - The tempo of a song is specified in beats per minute (BPM). If you want to change the tempo of your song, change this value. Every measure has four beats, so the tempo in BPM specifies, how many measures / 4 should be played within a minute (or how many measures should be played within four minutes). + + TEMPO - + + Tempo in BPM + + + + High quality mode 高質量模式 - - + + + Master volume 主音量 - - master volume - 主音量 - - - - + + + Master pitch 主音高 - - master pitch - 主音高 - - - + Value: %1% 值: %1% - + Value: %1 semitones 值: %1 半音程 @@ -8357,131 +12916,149 @@ Remember to also save your project manually. You can choose to disable saving wh SongEditorWindow - + Song-Editor 歌曲編輯器 - + Play song (Space) 播放歌曲(空格) - + Record samples from Audio-device 從音頻設備錄製樣本 - + Record samples from Audio-device while playing song or BB track 在播放歌曲或BB軌道時從音頻設備錄入樣本 - + Stop song (Space) 停止歌曲(空格) - - Click here, if you want to play your whole song. Playing will be started at the song-position-marker (green). You can also move it while playing. - 點擊這裏完整播放歌曲。將從綠色歌曲標記開始播放。在播放的同時可以對它進行移動。 - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - 點擊這裏停止播放,歌曲位置標記會跳到歌曲的開頭。 - - - + Track actions 軌道動作 - + Add beat/bassline 添加節拍/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 縮放控制 - - - SpectrumAnalyzerControlDialog - - Linear spectrum - 線性頻譜圖 + + Horizontal zooming + 橫向縮放 - - Linear Y axis - 線性 Y 軸 + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControls + StepRecorderWidget - - Linear spectrum - 線性頻譜圖 + + Hint + 提示 - - Linear Y axis - 線性 Y 軸 - - - - Channel mode - 通道模式 + + Move recording curser using <Left/Right> arrows + SubWindow - + Close - + Maximize - + Restore @@ -8489,17 +13066,25 @@ Remember to also save your project manually. You can choose to disable saving wh TabWidget - + Settings for %1 %1 的設定 + + TemplatesMenu + + + New from template + 從模版新建工程 + + TempoSyncKnob - + Tempo Sync @@ -8549,42 +13134,42 @@ Remember to also save your project manually. You can choose to disable saving wh - + 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 @@ -8593,36 +13178,36 @@ Remember to also save your project manually. You can choose to disable saving wh TimeDisplayWidget - click to change time units - 點擊改變時間單位 + Time units + - + MIN - + SEC - + MSEC - + BAR - + BEAT - + TICK @@ -8630,56 +13215,50 @@ Remember to also save your project manually. You can choose to disable saving wh TimeLineWidget - - Enable/disable auto-scrolling - 啓用/禁用自動滾動 + + Auto scrolling + - - Enable/disable loop-points - 啓用/禁用循環點 + + Loop points + - - After stopping go back to begin - 停止後前往開頭 + + 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> 禁用磁性吸附。 - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - 按住 <Shift> 移動起始循環點;按住 <%1> 禁用磁性吸附。 - Track - + Mute 靜音 - + Solo 獨奏 @@ -8717,13 +13296,13 @@ Please make sure you have read-permission to the file and the directory containi - + Cancel 取消 - + Please wait... 請稍等... @@ -8743,337 +13322,436 @@ Please make sure you have read-permission to the file and the directory containi - + Importing MIDI-file... 正在匯入 MIDI 檔案… - TrackContentObject + Clip - + Mute 靜音 - TrackContentObjectView + ClipView - + Current position 當前位置 - - - Hint - 提示 - - - - Press <%1> and drag to make a copy. - 按住 <%1> 並拖動以創建副本。 - - - + Current length 當前長度 - - Press <%1> for free resizing. - 按住 <%1> 自由調整大小。 - - - - + + %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 + + + Paste + 粘貼 + TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. - - Actions for this track + + Actions - + + Mute 靜音 - - + + Solo 獨奏 - - Mute this track + + 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 - - FX %1: %2 + + Channel %1: %2 效果 %1: %2 - - Assign to new FX Channel + + 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 - - Use phase modulation for modulating oscillator 1 with oscillator 2 + + Modulate phase of oscillator 1 by oscillator 2 - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 + + Modulate amplitude of oscillator 1 by oscillator 2 - - Mix output of oscillator 1 & 2 + + Mix output of oscillators 1 & 2 - + Synchronize oscillator 1 with oscillator 2 - - Use frequency modulation for modulating oscillator 1 with oscillator 2 + + Modulate frequency of oscillator 1 by oscillator 2 - - Use phase modulation for modulating oscillator 2 with oscillator 3 + + Modulate phase of oscillator 2 by oscillator 3 - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 + + Modulate amplitude of oscillator 2 by oscillator 3 - - Mix output of oscillator 2 & 3 + + Mix output of oscillators 2 & 3 - + Synchronize oscillator 2 with oscillator 3 - - Use frequency modulation for modulating oscillator 2 with oscillator 3 + + Modulate frequency of oscillator 2 by oscillator 3 - + Osc %1 volume: - - With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - - - - + Osc %1 panning: - - With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - - - - + Osc %1 coarse detuning: - + semitones - - With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 24 semitones (2 octaves) up and down. This is useful for creating sounds with a chord. - - - - + Osc %1 fine detuning left: - - + + cents 音分 cents - - With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - - + Osc %1 fine detuning right: - - With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - - - - + Osc %1 phase-offset: - - + + degrees - - With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - - - - + Osc %1 stereo phase-detuning: - - With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. + + Sine wave + 正弦波 + + + + Triangle wave + 三角波 + + + + Saw wave + 鋸齒波 + + + + Square wave + 方波 + + + + Moog-like saw wave - - Use a sine-wave for current oscillator. - 爲當前振盪器使用正弦波。 - - - - Use a triangle-wave for current oscillator. - 爲當前振盪器使用三角波。 - - - - Use a saw-wave for current oscillator. - 爲當前振盪器使用鋸齒波。 - - - - Use a square-wave for current oscillator. - 爲當前振盪器使用方波。 - - - - Use a moog-like saw-wave for current oscillator. + + Exponential wave - - Use an exponential wave for current oscillator. + + White noise - - Use white-noise for current oscillator. - 爲當前振盪器使用白噪音。 + + User-defined wave + + + + + VecControls + + + Display persistence amount + - - Use a user-defined waveform for current oscillator. - 爲當前振盪器使用用戶自定波形。 + + 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? @@ -9081,130 +13759,77 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView - - Open other VST-plugin - 打開其他的VST插件 - - - - Click here, if you want to open another VST-plugin. After clicking on this button, a file-open-dialog appears and you can select your file. + + + Open VST plugin - - Control VST-plugin from LMMS host - 從 LMMS 宿主控制 VST-插件 - - - - Click here, if you want to control VST-plugin from host. + + Control VST plugin from LMMS host - - Open VST-plugin preset - 打開 VST-插件預設 - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset - + Previous (-) 上一個 (-) - - - Click here, if you want to switch to another VST-plugin preset program. - - - - + Save preset 保存預置 - - Click here, if you want to save current VST-plugin preset program. - 點擊這裏, 如果你想保存當前 VST-插件預設。 - - - + Next (+) 下一個 (+) - - Click here to select presets that are currently loaded in VST. - - - - + Show/hide GUI 顯示/隱藏界面 - - Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - 點此顯示/隱藏VST插件的界面。 - - - + Turn off all notes 全部靜音 - - Open VST-plugin - 打開VST插件 - - - + DLL-files (*.dll) DLL 檔案 (*.dll) - + EXE-files (*.exe) EXE 檔案 (*.exe) - - No VST-plugin loaded - 未載入VST插件 + + No VST plugin loaded + - + Preset 預置 - + by - + - VST plugin control - VST插件控制 - - VisualizationWidget - - - click to enable/disable visualization of master-output - 點擊啓用/禁用視覺化主輸出 - - - - Click to enable - 點擊啓用 - - VstEffectControlDialog @@ -9214,63 +13839,37 @@ Please make sure you have read-permission to the file and the directory containi - Control VST-plugin from LMMS host - 從 LMMS 宿主控制 VST-插件 - - - - Click here, if you want to control VST-plugin from host. + Control VST plugin from LMMS host - - Open VST-plugin preset - 打開 VST-插件預設 - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Open VST plugin preset - + Previous (-) 上一個 (-) - - - Click here, if you want to switch to another VST-plugin preset program. - - - - + Next (+) 下一個 (+) - - Click here to select presets that are currently loaded in VST. - - - - + Save preset 保存預置 - - Click here, if you want to save current VST-plugin preset program. - 點擊這裏, 如果你想保存當前 VST-插件預設。 - - - - + + Effect by: - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -9278,59 +13877,49 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -9348,147 +13937,147 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -9496,3471 +14085,2249 @@ Please make sure you have read-permission to the file and the directory containi 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 with output of A2 + + Modulate amplitude of A1 by output of A2 - - Ring-modulate A1 and A2 + + Ring modulate A1 and A2 - - Modulate phase of A1 with output of A2 + + Modulate phase of A1 by output of A2 - + Mix output of B2 to B1 - - Modulate amplitude of B1 with output of B2 + + Modulate amplitude of B1 by output of B2 - - Ring-modulate B1 and B2 + + Ring modulate B1 and B2 - - Modulate phase of B1 with output of B2 + + Modulate phase of B1 by output of B2 - - - - + + + + Draw your own waveform here by dragging your mouse on this graph. - + Load waveform 載入波形 - - Click to load a waveform from a sample file - + + Load a waveform from a sample file + 從範例檔案中載入波型 - + Phase left - - Click to shift phase by -15 degrees + + Shift phase by -15 degrees - + Phase right - - Click to shift phase by +15 degrees + + Shift phase by +15 degrees - + + Normalize 標準化 - - Click to normalize - - - - + + Invert 反轉 - - Click to invert - - - - + + Smooth 平滑 - - Click to smooth - - - - + + Sine wave 正弦波 - - Click for sine wave - - - - - + + + Triangle wave 三角波 - - Click for triangle wave + + Saw wave + 鋸齒波 + + + + + Square wave + 方波 + + + + Xpressive + + + Selected graph - - Click for saw wave + + 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 方波 - - Click for 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 frequency - - Filter Resonance + + Filter resonance - + Bandwidth 帶寬 - - FM Gain - FM 增益 - - - - Resonance Center Frequency + + FM gain - - Resonance Bandwidth + + Resonance center frequency - - Forward MIDI Control Change Events + + Resonance bandwidth + + + + + Forward MIDI control change events ZynAddSubFxView - + Portamento: - + PORT - - Filter Frequency: + + Filter frequency: - + FREQ 頻率 - - Filter Resonance: + + Filter resonance: - + RES - + Bandwidth: 帶寬: - + BW - - FM Gain: + + FM gain: - + FM GAIN - + Resonance center frequency: - + RES CF - + Resonance bandwidth: - + RES BW - - Forward MIDI Control Changes + + Forward MIDI control changes - + Show GUI 顯示圖形界面 - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - - - audioFileProcessor + 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 + BitInvader - - Samplelength - 採樣長度 + + Sample length + - bitInvaderView + BitInvaderView - - Sample Length - 採樣長度 + + Sample length + - + Draw your own waveform here by dragging your mouse on this graph. - + + Sine wave 正弦波 - - Click for a sine-wave. - - - - + + Triangle wave 三角波 - - Click here for a triangle-wave. - 點擊這裡使用三角波。 - - - + + Saw wave 鋸齒波 - - Click here for a saw-wave. - - - - + + Square wave 方波 - - Click here for a square-wave. - 點擊這裡使用方形波。 - - - - White noise wave - 白噪音 - - - - Click here for white-noise. + + + White noise - - User defined wave - 用戶自定義波形 - - - - Click here for a user-defined shape. + + + User-defined wave - - Smooth - 平滑 + + + Smooth waveform + 平滑波形 - - Click here to smooth waveform. - 點擊這裏平滑波形。 - - - + Interpolation - + Normalize 標準化 - dynProcControlDialog + DynProcControlDialog - + INPUT 輸入 - + Input gain: 輸入增益: - + OUTPUT 輸出 - + Output gain: 輸出增益: - + ATTACK - + Peak attack time: - + RELEASE - + Peak release time: - - Reset waveform - 重置波形 - - - - Click here to reset the wavegraph back to default + + + Reset wavegraph - - Smooth waveform - 平滑波形 - - - - Click here to apply smoothing to wavegraph - 點擊這裏來使波形圖更爲平滑 - - - - Increase wavegraph amplitude by 1dB + + + Smooth wavegraph - - Click here to increase wavegraph amplitude by 1dB + + + Increase wavegraph amplitude by 1 dB - - Decrease wavegraph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB - - Click here to decrease wavegraph amplitude by 1dB + + Stereo mode: maximum - - Stereomode Maximum - - - - + Process based on the maximum of both stereo channels - - Stereomode Average + + Stereo mode: average - + Process based on the average of both stereo channels - - Stereomode Unlinked + + Stereo mode: unlinked - + Process each stereo channel independently - dynProcControls + DynProcControls - + Input gain 輸入增益 - + Output gain 輸出增益 - + Attack time - + Release time - + Stereo mode - - expressiveView - - Select oscillator W1 - - - - Select oscillator W2 - - - - Select oscillator W3 - - - - Select OUTPUT 1 - - - - Select OUTPUT 2 - - - - Open help window - - - - Sine wave - 正弦波 - - - Click for a sine-wave. - - - - Moog-Saw wave - - - - Click for a Moog-Saw-wave. - - - - Exponential wave - - - - Click for an exponential wave. - - - - Saw wave - 鋸齒波 - - - Click here for a saw-wave. - - - - User defined wave - 用戶自定義波形 - - - Click here for a user-defined shape. - - - - Triangle wave - 三角波 - - - Click here for a triangle-wave. - 點擊這裡使用三角波。 - - - Square wave - 方波 - - - Click here for a square-wave. - 點擊這裡使用方形波。 - - - White noise wave - 白噪音 - - - Click here for white-noise. - - - - WaveInterpolate - - - - ExpressionValid - - - - General purpose 1: - - - - General purpose 2: - - - - General purpose 3: - - - - O1 panning: - - - - O2 panning: - - - - Release transition: - - - - Smoothness - - - - - fxLineLcdSpinBox - - - Assign to: - 分配給: - - - - New FX Channel - 新的效果通道 - - graphModel - + Graph 圖形 - kickerInstrument + KickerInstrument - + Start frequency 起始頻率 - + End frequency 結束頻率 - + Length 長度 - - Distortion Start - 起始失真度 + + Start distortion + - - Distortion End - 結束失真度 + + End distortion + - + Gain 增益 - - Envelope Slope - 包絡線傾斜度 + + Envelope slope + - + Noise 噪音 - + Click 力度 - - Frequency Slope - 頻率傾斜度 + + Frequency slope + - + Start from note 從哪個音符開始 - + End to note 到哪個音符結束 - kickerInstrumentView + KickerInstrumentView - + Start frequency: 起始頻率: - + End frequency: 結束頻率: - - Frequency Slope: - 頻率傾斜度: + + Frequency slope: + - + Gain: 增益: - - Envelope Length: - 包絡長度: + + Envelope length: + - - Envelope Slope: - 包絡線傾斜度: + + Envelope slope: + - + Click: 力度: - + Noise: 噪音: - - Distortion Start: - 起始失真度: + + Start distortion: + - - Distortion End: - 結束失真度: + + End distortion: + - ladspaBrowserView + LadspaBrowserView - - + + Available Effects 可用效果器 - - + + Unavailable Effects 不可用效果器 - - + + Instruments 樂器插件 - - + + Analysis Tools 分析工具 - - + + Don't know 未知 - - This dialog displays information on all of the LADSPA plugins LMMS was able to locate. The plugins are divided into five categories based upon an interpretation of the port types and names. - -Available Effects are those that can be used by LMMS. In order for LMMS to be able to use an effect, it must, first and foremost, be an effect, which is to say, it has to have both input channels and output channels. LMMS identifies an input channel as an audio rate port containing 'in' in the name. Output channels are identified by the letters 'out'. Furthermore, the effect must have the same number of inputs and outputs and be real time capable. - -Unavailable Effects are those that were identified as effects, but either didn't have the same number of input and output channels or weren't real time capable. - -Instruments are plugins for which only output channels were identified. - -Analysis Tools are plugins for which only input channels were identified. - -Don't Knows are plugins for which no input or output channels were identified. - -Double clicking any of the plugins will bring up information on the ports. - 這個對話框顯示 LMMS 找到的所有 LADSPA 插件信息。這些插件根據接口類型和名字被分爲五個類別。 - -"可用效果" 是指可以被 LMMS 使用的插件。爲了讓 LMMS 可以開啓效果, 首先, 這個插件需要是有效果的。也就是說, 這個插件需要有輸入和輸出通道。LMMS 會將音頻接口名稱中有 ‘in’ 的接口識別爲輸入接口, 將音頻接口名稱中有 ‘out’ 的接口識別爲輸出接口。並且, 效果插件需要有相同的輸入輸出通道, 還要能支持實時處理。 - -"不可用效果" 是指被識別爲效果插件的插件, 但是輸入輸出通道數不同或者不支持實時音頻處理。 - -"樂器" 是指只檢測到有輸出通道的插件。 - -"分析工具" 是指只檢測到有輸入通道的插件。 - -"未知" 是指沒有檢測到任何輸出或輸出通道的插件。 - -雙擊任意插件將會顯示接口信息。 - - - + Type: 類型: - ladspaDescription + LadspaDescription - + Plugins 插件 - + Description 描述 - ladspaPortDialog + LadspaPortDialog - + Ports - + Name 名稱 - + Rate - + Direction 方向 - + Type 類型 - + Min < Default < Max 最小 < 默認 < 最大 - + Logarithmic 對數 - + SR Dependent - + Audio 音頻 - + Control 控制 - + Input 輸入 - + Output 輸出 - + Toggled - + Integer 整型 - + Float 浮點 - - + + Yes - lb302Synth + Lb302Synth - + VCF Cutoff Frequency - + VCF Resonance - + VCF Envelope Mod - + VCF Envelope Decay - + Distortion 失真 - + Waveform 波形 - + Slide Decay - + Slide - + Accent - + Dead - + 24dB/oct Filter - lb302SynthView + 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 + MalletsInstrument - + Hardness - + Position - - Vibrato Gain + + Vibrato gain - - Vibrato Freq + + Vibrato frequency - - Stick Mix + + Stick mix - + Modulator - + Crossfade - - LFO Speed + + LFO speed + LFO 速度 + + + + LFO depth - - LFO Depth - - - - + ADSR - + Pressure - + Motion - + Speed - + Bowed - + Spread - + Marimba - + Vibraphone - + Agogo - - Wood1 + + Wood 1 - + Reso - - Wood2 + + Wood 2 - + Beats - - Two Fixed + + Two fixed - + Clump - - Tubular Bells + + Tubular bells - - Uniform Bar + + Uniform bar - - Tuned Bar + + Tuned bar - + Glass - - Tibetan Bowl + + Tibetan bowl - malletsInstrumentView + 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: - - Vib Gain + + Vibrato gain - - Vib Gain: + + Vibrato gain: - - Vib Freq + + Vibrato frequency - - Vib Freq: + + Vibrato frequency: - - Stick Mix + + Stick mix - - Stick Mix: + + Stick mix: - + Modulator - + Modulator: - + Crossfade - + Crossfade: - - LFO Speed + + LFO speed + LFO 速度 + + + + LFO speed: - - LFO Speed: + + LFO depth - - LFO Depth + + LFO depth: - - LFO Depth: - - - - + ADSR - + ADSR: - + Pressure - + Pressure: - + Speed - + Speed: - manageVSTEffectView + ManageVSTEffectView - + - VST parameter control - VST 參數控制 - - VST Sync - VST 同步 + + VST sync + - - Click here if you want to synchronize all parameters with VST plugin. - 點擊這裏, 如果你想與 VST 插件同步所有參數。 - - - - + + Automated 自動 - - Click here if you want to display automated parameters only. - - - - + Close 關閉 - - - Close VST effect knob-controller window. - - - manageVestigeInstrumentView + ManageVestigeInstrumentView - - + + - VST plugin control - VST插件控制 - + VST Sync VST 同步 - - Click here if you want to synchronize all parameters with VST plugin. - 點擊這裏, 如果你想與 VST 插件同步所有參數。 - - - - + + Automated 自動 - - Click here if you want to display automated parameters only. - - - - + Close 關閉 - - - Close VST plugin knob-controller window. - - - opl2instrument + OrganicInstrument - - Patch - 音色 - - - - Op 1 Attack - - - - - Op 1 Decay - - - - - Op 1 Sustain - - - - - Op 1 Release - - - - - Op 1 Level - - - - - Op 1 Level Scaling - - - - - Op 1 Frequency Multiple - - - - - 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 Multiple - - - - - Op 2 Key Scaling Rate - - - - - Op 2 Percussive Envelope - - - - - Op 2 Tremolo - - - - - Op 2 Vibrato - - - - - Op 2 Waveform - - - - - FM - - - - - Vibrato Depth - - - - - Tremolo Depth - - - - - opl2instrumentView - - - - Attack - 打進聲 - - - - - Decay - 衰減 - - - - - Release - 釋放 - - - - - Frequency multiplier - - - - - organicInstrument - - + Distortion 失真 - + Volume 音量 - organicInstrumentView + OrganicInstrumentView - + Distortion: 失真: - - The distortion knob adds distortion to the output of the instrument. - - - - + Volume: 音量: - - The volume knob controls the volume of the output of the instrument. It is cumulative with the instrument window's volume control. - - - - + Randomise 隨機 - - The randomize button randomizes all knobs except the harmonics,main volume and distortion knobs. - - - - - + + Osc %1 waveform: - + Osc %1 volume: - + Osc %1 panning: - + Osc %1 stereo detuning - + cents 音分 cents - + Osc %1 harmonic: - FreeBoyInstrument + PatchesDialog - - Sweep time - - - - - Sweep direction - - - - - Sweep RtShift amount - - - - - - Wave Pattern Duty - - - - - 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 - - - - - The amount of increase or decrease in frequency - - - - - Sweep RtShift amount: - - - - - Sweep RtShift amount - - - - - The rate at which increase or decrease in frequency occurs - - - - - - Wave pattern duty: - - - - - Wave Pattern Duty - - - - - - The duty cycle is the ratio of the duration (time) that a signal is ON versus the total period of the signal. - - - - - - Square Channel 1 Volume: - - - - - Square Channel 1 Volume - - - - - - - Length of each step in sweep: - - - - - - - Length of each step in sweep - - - - - - - The delay between step change - - - - - Wave pattern duty - - - - - Square Channel 2 Volume: - - - - - - Square Channel 2 Volume - - - - - Wave Channel Volume: - - - - - - Wave 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 - - - - - Channel1 to SO1 (Right) - - - - - Channel2 to SO1 (Right) - - - - - Channel3 to SO1 (Right) - - - - - Channel4 to SO1 (Right) - - - - - Channel1 to SO2 (Left) - - - - - Channel2 to SO2 (Left) - - - - - Channel3 to SO2 (Left) - - - - - Channel4 to SO2 (Left) - - - - - Wave Pattern - - - - - Draw the wave here - - - - - patchesDialog - - + Qsynth: Channel Preset Qsynth: 通道預設 - + Bank selector 音色選擇器 - + Bank - + Program selector - + Patch 音色 - + Name 名稱 - + OK 確定 - + Cancel 取消 - pluginBrowser + Sf2Instrument - - 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 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) 插件 - - - - 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 tb303 - - - - - 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 - - - - - Emulation of GameBoy (TM) APU - GameBoy (TM) APU 模擬器 - - - - 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 電腦上用過。 - - - - Graphical spectrum analyzer plugin - 圖形頻譜分析器插件 - - - - 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 - - - - - 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 - - - - - Embedded ZynAddSubFX - 內置的 ZynAddSubFX - - - Mathematical expression parser - - - - - sf2Instrument - - + Bank - + Patch 音色 - + Gain 增益 - + Reverb 混響 - - Reverb Roomsize - 混響空間大小 + + Reverb room size + - - Reverb Damping - 混響阻尼 + + Reverb damping + - - Reverb Width - 混響寬度 + + Reverb width + - - Reverb Level - 混響級別 + + Reverb level + - + Chorus 合唱 - - Chorus Lines - 合唱聲部 + + Chorus voices + - - Chorus Level - 合唱電平 + + Chorus level + - - Chorus Speed - 合唱速度 + + Chorus speed + - - Chorus Depth - 合唱深度 + + Chorus depth + - + A soundfont %1 could not be loaded. 無法載入Soundfont %1。 - sf2InstrumentView + Sf2InstrumentView - - Open other SoundFont file - 打開其他SoundFont文件 - - - - Click here to open another SF2 file - 點擊此處打開另一個SF2文件 - - - - Choose the patch - 選擇路徑 - - - - Gain - 增益 - - - - Apply reverb (if supported) - 應用混響(如果支持) - - - - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - 此按鈕會啓用混響效果器。可以製作出很酷的效果,但僅對支持的文件有效。 - - - - Reverb Roomsize: - 混響空間大小: - - - - Reverb Damping: - 混響阻尼: - - - - Reverb Width: - 混響寬度: - - - - Reverb Level: - 混響級別: - - - - Apply chorus (if supported) - 應用合唱 (如果支持) - - - - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - 此按鈕會啓用合唱效果器。 - - - - Chorus Lines: - 合唱聲部: - - - - Chorus Level: - 合唱級別: - - - - Chorus Speed: - 合唱速度: - - - - Chorus Depth: - 合唱深度: - - - + + Open SoundFont file 開啟 SoundFont 檔案 - - SoundFont2 Files (*.sf2) - SoundFont2 Files (*.sf2) + + 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 + SfxrInstrument - - Wave Form - 波形 - - - - sidInstrument - - - Cutoff - 切除 - - - - Resonance - 共鳴 - - - - Filter type - 過濾器類型 - - - - Voice 3 off - 聲音 3 關 - - - - Volume - 音量 - - - - Chip model - 芯片型號 - - - - sidInstrumentView - - - Volume: - 音量: - - - - Resonance: - 共鳴: - - - - - Cutoff frequency: - 頻譜刀頻率: - - - - High-Pass filter - 高通濾波器 - - - - Band-Pass filter - 帶通濾波器 - - - - Low-Pass filter - 低通濾波器 - - - - Voice3 Off - 聲音 3 關 - - - - MOS6581 SID - MOS6581 SID - - - - MOS8580 SID - MOS8580 SID - - - - - Attack: - 打進聲: - - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - - - - - - Decay: - 衰減: - - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - - - - - Sustain: - 振幅持平: - - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - - - - - - Release: - 聲音消失: - - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - - - - - - Pulse Width: - - - - - The Pulse Width resolution allows the width to be smoothly swept with no discernable stepping. The Pulse waveform on Oscillator %1 must be selected to have any audible effect. - - - - - Coarse: - - - - - The Coarse detuning allows to detune Voice %1 one octave up or down. - - - - - Pulse Wave - - - - - Triangle Wave - - - - - SawTooth - - - - - Noise - 噪音 - - - - Sync - 同步 - - - - Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - - - - - Ring-Mod - - - - - Ring-mod replaces the Triangle Waveform output of Oscillator %1 with a "Ring Modulated" combination of Oscillators %1 and %2. - - - - - Filtered - - - - - When Filtered is on, Voice %1 will be processed through the Filter. When Filtered is off, Voice %1 appears directly at the output, and the Filter has no effect on it. - - - - - Test - 測試 - - - - Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. + + Wave - stereoEnhancerControlDialog + StereoEnhancerControlDialog - - WIDE + + WIDTH - + Width: 寬度: - stereoEnhancerControls + StereoEnhancerControls - + Width 寬度 - stereoMatrixControlDialog + StereoMatrixControlDialog - + Left to Left Vol: 從左到左音量: - + Left to Right Vol: 從左到右音量: - + Right to Left Vol: 從右到左音量: - + Right to Right Vol: 從右到右音量: - stereoMatrixControls + StereoMatrixControls - + Left to Left 從左到左 - + Left to Right 從左到右 - + Right to Left 從右到左 - + Right to Right 從右到右 - vestigeInstrument + VestigeInstrument - + Loading plugin 載入插件 - - Please wait while loading VST-plugin... - 請等待VST插件加載完成... + + Please wait while loading the VST plugin... + - vibed + Vibed - + String %1 volume - + String %1 stiffness - + Pick %1 position - + Pickup %1 position - - Pan %1 - 聲相 %1 + + String %1 panning + - - Detune %1 - 去諧 %1 + + String %1 detune + - - Fuzziness %1 - 模糊度 %1 + + String %1 fuzziness + - - Length %1 - 長度 %1 + + String %1 length + - + Impulse %1 - - Octave %1 - 八度音 %1 + + String %1 + - vibedView + VibedView - - Volume: - 音量: - - - - The 'V' knob sets the volume of the selected string. + + String volume: - + String stiffness: - - The 'S' knob sets the stiffness of the selected string. The stiffness of the string affects how long the string will ring out. The lower the setting, the longer the string will ring. - - - - + Pick position: - - The 'P' knob sets the position where the selected string will be 'picked'. The lower the setting the closer the pick is to the bridge. - - - - + Pickup position: - - The 'PU' knob sets the position where the vibrations will be monitored for the selected string. The lower the setting, the closer the pickup is to the bridge. + + String panning: - - Pan: + + String detune: - - The Pan knob determines the location of the selected string in the stereo field. + + String fuzziness: - - Detune: - 去諧: - - - - The Detune knob modifies the pitch of the selected string. Settings less than zero will cause the string to sound flat. Settings greater than zero will cause the string to sound sharp. + + String length: - - Fuzziness: + + Impulse - - The Slap knob adds a bit of fuzz to the selected string which is most apparent during the attack, though it can also be used to make the string sound more 'metallic'. - - - - - Length: - 長度: - - - - The Length knob sets the length of the selected string. Longer strings will both ring longer and sound brighter, however, they will also eat up more CPU cycles. - - - - - Impulse or initial state - - - - - The 'Imp' selector determines whether the waveform in the graph is to be treated as an impulse imparted to the string by the pick or the initial state of the string. - - - - + Octave - - The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. - - - - + Impulse Editor - - The waveform editor provides control over the initial state or impulse that is used to start the string vibrating. The buttons to the right of the graph will initialize the waveform to the selected type. The '?' button will load a waveform from a file--only the first 128 samples will be loaded. - -The waveform can also be drawn in the graph. - -The 'S' button will smooth the waveform. - -The 'N' button will normalize the waveform. - - - - - Vibed models up to nine independently vibrating strings. The 'String' selector allows you to choose which string is being edited. The 'Imp' selector chooses whether the graph represents an impulse or the initial state of the string. The 'Octave' selector chooses which harmonic the string should vibrate at. - -The graph allows you to control the initial state or impulse used to set the string in motion. - -The 'V' knob controls the volume. The 'S' knob controls the string's stiffness. The 'P' knob controls the pick position. The 'PU' knob controls the pickup position. - -'Pan' and 'Detune' hopefully don't need explanation. The 'Slap' knob adds a bit of fuzz to the sound of the string. - -The 'Length' knob controls the length of the string. - -The LED in the lower right corner of the waveform editor determines whether the string is active in the current instrument. - - - - + Enable waveform 啓用波形 - - Click here to enable/disable waveform. - 點擊這裏啓用/禁用波形。 + + Enable/disable string + - + String - - The String selector is used to choose which string the controls are editing. A Vibed instrument can contain up to nine independently vibrating strings. The LED in the lower right corner of the waveform editor indicates whether the selected string is active. - - - - + + Sine wave 正弦波 - - Use a sine-wave for current oscillator. - 爲當前振盪器使用正弦波。 - - - + + Triangle wave 三角波 - - Use a triangle-wave for current oscillator. - 爲當前振盪器使用三角波。 - - - + + Saw wave 鋸齒波 - - Use a saw-wave for current oscillator. - 爲當前振盪器使用鋸齒波。 - - - + + Square wave 方波 - - Use a square-wave for current oscillator. - 爲當前振盪器使用方波。 + + + White noise + - - White noise wave - 白噪音 + + + User-defined wave + - - Use white-noise for current oscillator. - 爲當前振盪器使用白噪音。 + + + Smooth waveform + 平滑波形 - - User defined wave - 用戶自定義波形 - - - - Use a user-defined waveform for current oscillator. - 爲當前振盪器使用用戶自定波形。 - - - - Smooth - 平滑 - - - - Click here to smooth waveform. - 點擊這裏平滑波形。 - - - - Normalize - 標準化 - - - - Click here to normalize waveform. - 點擊這裏標準化波形。 + + + Normalize waveform + - voiceObject + 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 + WaveShaperControlDialog - + INPUT 輸入 - + Input gain: 輸入增益: - + OUTPUT 輸出 - + Output gain: 輸出增益: - - Reset waveform - 重置波形 - - - - Click here to reset the wavegraph back to default + + + Reset wavegraph - - Smooth waveform - 平滑波形 - - - - Click here to apply smoothing to wavegraph - 點擊這裏來使波形圖更爲平滑 - - - - Increase graph amplitude by 1dB + + + Smooth wavegraph - - Click here to increase wavegraph amplitude by 1dB + + + Increase wavegraph amplitude by 1 dB - - Decrease graph amplitude by 1dB + + + Decrease wavegraph amplitude by 1 dB - - Click here to decrease wavegraph amplitude by 1dB - - - - + Clip input 輸入壓限 - - Clip input signal to 0dB - 將輸入信號限制到 0dB + + Clip input signal to 0 dB + - waveShaperControls + WaveShaperControls - + Input gain 輸入增益 - + Output gain 輸出增益 diff --git a/data/presets/AudioFileProcessor/Bass-Mania.xpf b/data/presets/AudioFileProcessor/Bass-Mania.xpf index 4a92c0028..9c0d2f073 100644 --- a/data/presets/AudioFileProcessor/Bass-Mania.xpf +++ b/data/presets/AudioFileProcessor/Bass-Mania.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/AudioFileProcessor/Erazor.xpf b/data/presets/AudioFileProcessor/Erazor.xpf index f106c27f8..c448829fa 100644 --- a/data/presets/AudioFileProcessor/Erazor.xpf +++ b/data/presets/AudioFileProcessor/Erazor.xpf @@ -3,12 +3,12 @@ - + - + diff --git a/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf b/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf index f9f11ef8b..001bd7462 100644 --- a/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf +++ b/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf b/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf index 6a9da93ce..808e27c4c 100644 --- a/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf +++ b/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf @@ -3,16 +3,15 @@ - - + + - + - - + \ No newline at end of file diff --git a/data/presets/AudioFileProcessor/SString.xpf b/data/presets/AudioFileProcessor/SString.xpf index 1def1d719..6e5214b0d 100644 --- a/data/presets/AudioFileProcessor/SString.xpf +++ b/data/presets/AudioFileProcessor/SString.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/AudioFileProcessor/orion.xpf b/data/presets/AudioFileProcessor/orion.xpf index 101286b29..0b11e00cf 100644 --- a/data/presets/AudioFileProcessor/orion.xpf +++ b/data/presets/AudioFileProcessor/orion.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/alien_strings.xpf b/data/presets/BitInvader/alien_strings.xpf index d29fdca10..938b4be36 100644 --- a/data/presets/BitInvader/alien_strings.xpf +++ b/data/presets/BitInvader/alien_strings.xpf @@ -3,7 +3,7 @@ - + @@ -13,6 +13,15 @@ + + + + + + + + + diff --git a/data/presets/BitInvader/beehive.xpf b/data/presets/BitInvader/beehive.xpf index b03ba92f5..eec0a74e6 100644 --- a/data/presets/BitInvader/beehive.xpf +++ b/data/presets/BitInvader/beehive.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/bell.xpf b/data/presets/BitInvader/bell.xpf index a5346e212..58dd81ea6 100644 --- a/data/presets/BitInvader/bell.xpf +++ b/data/presets/BitInvader/bell.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/BitInvader/cello.xpf b/data/presets/BitInvader/cello.xpf index 50ef327d9..5ef292373 100644 --- a/data/presets/BitInvader/cello.xpf +++ b/data/presets/BitInvader/cello.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/drama.xpf b/data/presets/BitInvader/drama.xpf index fc564fa58..d0ca7ed45 100644 --- a/data/presets/BitInvader/drama.xpf +++ b/data/presets/BitInvader/drama.xpf @@ -3,7 +3,7 @@ - + @@ -13,6 +13,15 @@ + + + + + + + + + diff --git a/data/presets/BitInvader/epiano.xpf b/data/presets/BitInvader/epiano.xpf index e2ed18dee..f74d36cfb 100644 --- a/data/presets/BitInvader/epiano.xpf +++ b/data/presets/BitInvader/epiano.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/invaders_must_die.xpf b/data/presets/BitInvader/invaders_must_die.xpf index 78c50c360..bbdbbbbfe 100644 --- a/data/presets/BitInvader/invaders_must_die.xpf +++ b/data/presets/BitInvader/invaders_must_die.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/pluck.xpf b/data/presets/BitInvader/pluck.xpf index b71974e4e..b71b696c1 100644 --- a/data/presets/BitInvader/pluck.xpf +++ b/data/presets/BitInvader/pluck.xpf @@ -3,16 +3,25 @@ - + - + + + + + + + + + + diff --git a/data/presets/BitInvader/soft_pad.xpf b/data/presets/BitInvader/soft_pad.xpf index 63803acb8..f6f16550d 100644 --- a/data/presets/BitInvader/soft_pad.xpf +++ b/data/presets/BitInvader/soft_pad.xpf @@ -3,8 +3,8 @@ - - + + diff --git a/data/presets/BitInvader/spacefx.xpf b/data/presets/BitInvader/spacefx.xpf index b10f47377..4bd980136 100644 --- a/data/presets/BitInvader/spacefx.xpf +++ b/data/presets/BitInvader/spacefx.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/BitInvader/subbass.xpf b/data/presets/BitInvader/subbass.xpf index 50ebb46c6..53d6bf838 100644 --- a/data/presets/BitInvader/subbass.xpf +++ b/data/presets/BitInvader/subbass.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/BitInvader/sweep_pad.xpf b/data/presets/BitInvader/sweep_pad.xpf index c2e6a5c52..683761974 100644 --- a/data/presets/BitInvader/sweep_pad.xpf +++ b/data/presets/BitInvader/sweep_pad.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/toy_piano.xpf b/data/presets/BitInvader/toy_piano.xpf index 0fed791d1..b2c0d9126 100644 --- a/data/presets/BitInvader/toy_piano.xpf +++ b/data/presets/BitInvader/toy_piano.xpf @@ -3,10 +3,10 @@ - - + + - + diff --git a/data/presets/BitInvader/wah_synth.xpf b/data/presets/BitInvader/wah_synth.xpf index e8e68c538..13c78c7ad 100644 --- a/data/presets/BitInvader/wah_synth.xpf +++ b/data/presets/BitInvader/wah_synth.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/Kicker/Clap dry.xpf b/data/presets/Kicker/Clap dry.xpf index f6c938959..05bc0a800 100644 --- a/data/presets/Kicker/Clap dry.xpf +++ b/data/presets/Kicker/Clap dry.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Kicker/Clap.xpf b/data/presets/Kicker/Clap.xpf index d354051ce..66cac9a91 100644 --- a/data/presets/Kicker/Clap.xpf +++ b/data/presets/Kicker/Clap.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Kicker/HihatClosed.xpf b/data/presets/Kicker/HihatClosed.xpf index 66dd8e7ac..2adcdc41f 100644 --- a/data/presets/Kicker/HihatClosed.xpf +++ b/data/presets/Kicker/HihatClosed.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Kicker/HihatOpen.xpf b/data/presets/Kicker/HihatOpen.xpf index c0f0aa692..4a6e69750 100644 --- a/data/presets/Kicker/HihatOpen.xpf +++ b/data/presets/Kicker/HihatOpen.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/Kicker/KickPower.xpf b/data/presets/Kicker/KickPower.xpf index 27259ce25..a9f3d7ebb 100644 --- a/data/presets/Kicker/KickPower.xpf +++ b/data/presets/Kicker/KickPower.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Kicker/Shaker.xpf b/data/presets/Kicker/Shaker.xpf index 13eee953e..877aa94bf 100644 --- a/data/presets/Kicker/Shaker.xpf +++ b/data/presets/Kicker/Shaker.xpf @@ -3,12 +3,12 @@ - + - + diff --git a/data/presets/Kicker/SnareLong.xpf b/data/presets/Kicker/SnareLong.xpf index b8b2f9d88..ce5e5cd8a 100644 --- a/data/presets/Kicker/SnareLong.xpf +++ b/data/presets/Kicker/SnareLong.xpf @@ -3,12 +3,12 @@ - + - + diff --git a/data/presets/Kicker/SnareMarch.xpf b/data/presets/Kicker/SnareMarch.xpf index d4d1ad0db..563f33843 100644 --- a/data/presets/Kicker/SnareMarch.xpf +++ b/data/presets/Kicker/SnareMarch.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Kicker/TR909-RimShot.xpf b/data/presets/Kicker/TR909-RimShot.xpf index e8626db29..ea7911c8a 100644 --- a/data/presets/Kicker/TR909-RimShot.xpf +++ b/data/presets/Kicker/TR909-RimShot.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Kicker/TrapKick.xpf b/data/presets/Kicker/TrapKick.xpf index a8ad8976d..19e648d91 100644 --- a/data/presets/Kicker/TrapKick.xpf +++ b/data/presets/Kicker/TrapKick.xpf @@ -3,12 +3,12 @@ - + - + diff --git a/data/presets/LB302/AcidLead.xpf b/data/presets/LB302/AcidLead.xpf index e264f9573..af7be34fc 100644 --- a/data/presets/LB302/AcidLead.xpf +++ b/data/presets/LB302/AcidLead.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/LB302/AngryLead.xpf b/data/presets/LB302/AngryLead.xpf index 9d9955895..1ad94ea1b 100644 --- a/data/presets/LB302/AngryLead.xpf +++ b/data/presets/LB302/AngryLead.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/LB302/DroneArp.xpf b/data/presets/LB302/DroneArp.xpf index 2d21adc2d..ecdc79fcf 100644 --- a/data/presets/LB302/DroneArp.xpf +++ b/data/presets/LB302/DroneArp.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/LB302/GoodOldTimes.xpf b/data/presets/LB302/GoodOldTimes.xpf index 45fb67102..e282e83cd 100644 --- a/data/presets/LB302/GoodOldTimes.xpf +++ b/data/presets/LB302/GoodOldTimes.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/LB302/Oh Synth.xpf b/data/presets/LB302/Oh Synth.xpf index 5241fe5fd..30de1ce20 100644 --- a/data/presets/LB302/Oh Synth.xpf +++ b/data/presets/LB302/Oh Synth.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/LB302/STrash.xpf b/data/presets/LB302/STrash.xpf index bd928e63c..c6d3cf48b 100644 --- a/data/presets/LB302/STrash.xpf +++ b/data/presets/LB302/STrash.xpf @@ -3,23 +3,11 @@ - + - - - - - - - - - - - - @@ -31,14 +19,6 @@ - - - - - - - - diff --git a/data/presets/Monstro/Growl.xpf b/data/presets/Monstro/Growl.xpf index f553b1641..d21804885 100644 --- a/data/presets/Monstro/Growl.xpf +++ b/data/presets/Monstro/Growl.xpf @@ -1,22 +1,22 @@ - + - - + + - + - - - - + + + + - - - + + + - + @@ -30,39 +30,39 @@ - - + + - - - + + + - - + + - - + + - - - - - + + + + + - - + + - + @@ -70,11 +70,11 @@ - - + + - + diff --git a/data/presets/Monstro/HorrorLead.xpf b/data/presets/Monstro/HorrorLead.xpf index 23cba07c4..fbe2639bc 100644 --- a/data/presets/Monstro/HorrorLead.xpf +++ b/data/presets/Monstro/HorrorLead.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Monstro/Phat.xpf b/data/presets/Monstro/Phat.xpf index 5615f0229..ec572d733 100644 --- a/data/presets/Monstro/Phat.xpf +++ b/data/presets/Monstro/Phat.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Monstro/ScaryBell.xpf b/data/presets/Monstro/ScaryBell.xpf index 00466696f..034521ad4 100644 --- a/data/presets/Monstro/ScaryBell.xpf +++ b/data/presets/Monstro/ScaryBell.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Nescaline/Chomp.xpf b/data/presets/Nescaline/Chomp.xpf index 9dea1898e..088ab2f43 100644 --- a/data/presets/Nescaline/Chomp.xpf +++ b/data/presets/Nescaline/Chomp.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Nescaline/Detune_lead.xpf b/data/presets/Nescaline/Detune_lead.xpf index cc06165ff..94173d690 100644 --- a/data/presets/Nescaline/Detune_lead.xpf +++ b/data/presets/Nescaline/Detune_lead.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Nescaline/Engine_overheats.xpf b/data/presets/Nescaline/Engine_overheats.xpf index 49176aef6..8bd5fbea9 100644 --- a/data/presets/Nescaline/Engine_overheats.xpf +++ b/data/presets/Nescaline/Engine_overheats.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Nescaline/Fireball_flick.xpf b/data/presets/Nescaline/Fireball_flick.xpf index b61c17375..c2ce19aaa 100644 --- a/data/presets/Nescaline/Fireball_flick.xpf +++ b/data/presets/Nescaline/Fireball_flick.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Nescaline/Mega_weapon.xpf b/data/presets/Nescaline/Mega_weapon.xpf index f5f0c26ae..f5bc80ca1 100644 --- a/data/presets/Nescaline/Mega_weapon.xpf +++ b/data/presets/Nescaline/Mega_weapon.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Bagpipe.xpf b/data/presets/OpulenZ/Bagpipe.xpf index e572498f4..41a80c1e3 100644 --- a/data/presets/OpulenZ/Bagpipe.xpf +++ b/data/presets/OpulenZ/Bagpipe.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Bells.xpf b/data/presets/OpulenZ/Bells.xpf index e7279a7fe..b8cf83107 100644 --- a/data/presets/OpulenZ/Bells.xpf +++ b/data/presets/OpulenZ/Bells.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Brass.xpf b/data/presets/OpulenZ/Brass.xpf index 553bdb5bc..0703df27b 100644 --- a/data/presets/OpulenZ/Brass.xpf +++ b/data/presets/OpulenZ/Brass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Bubbly_days.xpf b/data/presets/OpulenZ/Bubbly_days.xpf index 92e008284..5f82585a1 100644 --- a/data/presets/OpulenZ/Bubbly_days.xpf +++ b/data/presets/OpulenZ/Bubbly_days.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Cheesy_synth.xpf b/data/presets/OpulenZ/Cheesy_synth.xpf index 2c6d47306..a5adac20a 100644 --- a/data/presets/OpulenZ/Cheesy_synth.xpf +++ b/data/presets/OpulenZ/Cheesy_synth.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Clarinet.xpf b/data/presets/OpulenZ/Clarinet.xpf index 3301318a2..1b277a596 100644 --- a/data/presets/OpulenZ/Clarinet.xpf +++ b/data/presets/OpulenZ/Clarinet.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/OpulenZ/Combo_organ.xpf b/data/presets/OpulenZ/Combo_organ.xpf index 21e2d8a62..457c3f318 100644 --- a/data/presets/OpulenZ/Combo_organ.xpf +++ b/data/presets/OpulenZ/Combo_organ.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/OpulenZ/Epiano.xpf b/data/presets/OpulenZ/Epiano.xpf index dea947763..bd8380481 100644 --- a/data/presets/OpulenZ/Epiano.xpf +++ b/data/presets/OpulenZ/Epiano.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/OpulenZ/Funky.xpf b/data/presets/OpulenZ/Funky.xpf index 166537fbd..5394d54db 100644 --- a/data/presets/OpulenZ/Funky.xpf +++ b/data/presets/OpulenZ/Funky.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Halo_pad.xpf b/data/presets/OpulenZ/Halo_pad.xpf index a20fa050f..628e8d483 100644 --- a/data/presets/OpulenZ/Halo_pad.xpf +++ b/data/presets/OpulenZ/Halo_pad.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Harp.xpf b/data/presets/OpulenZ/Harp.xpf index 75b54d303..c78e4e896 100644 --- a/data/presets/OpulenZ/Harp.xpf +++ b/data/presets/OpulenZ/Harp.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Organ_leslie.xpf b/data/presets/OpulenZ/Organ_leslie.xpf index a1c5c024e..6d1bfbe77 100644 --- a/data/presets/OpulenZ/Organ_leslie.xpf +++ b/data/presets/OpulenZ/Organ_leslie.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/OpulenZ/Pad.xpf b/data/presets/OpulenZ/Pad.xpf index f35911cc1..e9ab41da6 100644 --- a/data/presets/OpulenZ/Pad.xpf +++ b/data/presets/OpulenZ/Pad.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Square.xpf b/data/presets/OpulenZ/Square.xpf index ad0aaca52..349debf6b 100644 --- a/data/presets/OpulenZ/Square.xpf +++ b/data/presets/OpulenZ/Square.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/OpulenZ/Vibraphone.xpf b/data/presets/OpulenZ/Vibraphone.xpf index c0e3ad55e..2b1d8173c 100644 --- a/data/presets/OpulenZ/Vibraphone.xpf +++ b/data/presets/OpulenZ/Vibraphone.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/Pwnage.xpf b/data/presets/Organic/Pwnage.xpf index 51401f5d6..39aac12e7 100644 --- a/data/presets/Organic/Pwnage.xpf +++ b/data/presets/Organic/Pwnage.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/Rubberband.xpf b/data/presets/Organic/Rubberband.xpf index 1dd0a1941..2e65f8c6e 100644 --- a/data/presets/Organic/Rubberband.xpf +++ b/data/presets/Organic/Rubberband.xpf @@ -3,19 +3,27 @@ - + - + - + + + + + + + + + diff --git a/data/presets/Organic/organ_blues.xpf b/data/presets/Organic/organ_blues.xpf index a35bbfda8..0ef0f6ffe 100644 --- a/data/presets/Organic/organ_blues.xpf +++ b/data/presets/Organic/organ_blues.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/Organic/organ_risingsun.xpf b/data/presets/Organic/organ_risingsun.xpf index b5dc75906..aa2f30329 100644 --- a/data/presets/Organic/organ_risingsun.xpf +++ b/data/presets/Organic/organ_risingsun.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/Organic/organ_swish.xpf b/data/presets/Organic/organ_swish.xpf index 569230f5b..e7713f08d 100644 --- a/data/presets/Organic/organ_swish.xpf +++ b/data/presets/Organic/organ_swish.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/pad_ethereal.xpf b/data/presets/Organic/pad_ethereal.xpf index a40168882..170779bc4 100644 --- a/data/presets/Organic/pad_ethereal.xpf +++ b/data/presets/Organic/pad_ethereal.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/pad_rich.xpf b/data/presets/Organic/pad_rich.xpf index b59501600..8f3833f9d 100644 --- a/data/presets/Organic/pad_rich.xpf +++ b/data/presets/Organic/pad_rich.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/pad_sweep.xpf b/data/presets/Organic/pad_sweep.xpf index 9b000e499..fc3ec8181 100644 --- a/data/presets/Organic/pad_sweep.xpf +++ b/data/presets/Organic/pad_sweep.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/puresine.xpf b/data/presets/Organic/puresine.xpf index 0c77ca9ca..eaed65a78 100644 --- a/data/presets/Organic/puresine.xpf +++ b/data/presets/Organic/puresine.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/Organic/sequencer_64.xpf b/data/presets/Organic/sequencer_64.xpf index c1f8fc223..1c59f8bde 100644 --- a/data/presets/Organic/sequencer_64.xpf +++ b/data/presets/Organic/sequencer_64.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/SID/Bass.xpf b/data/presets/SID/Bass.xpf index c5f605c8f..61a428308 100644 --- a/data/presets/SID/Bass.xpf +++ b/data/presets/SID/Bass.xpf @@ -3,12 +3,12 @@ - + - + diff --git a/data/presets/SID/CheesyGuitar.xpf b/data/presets/SID/CheesyGuitar.xpf index 756e14afc..5e5e2e348 100644 --- a/data/presets/SID/CheesyGuitar.xpf +++ b/data/presets/SID/CheesyGuitar.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/SID/Lead.xpf b/data/presets/SID/Lead.xpf index be81b2948..debd7c8e9 100644 --- a/data/presets/SID/Lead.xpf +++ b/data/presets/SID/Lead.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/SID/MadMind.xpf b/data/presets/SID/MadMind.xpf index 5375d5b00..a5c2d2bf6 100644 --- a/data/presets/SID/MadMind.xpf +++ b/data/presets/SID/MadMind.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/SID/Overdrive.xpf b/data/presets/SID/Overdrive.xpf index ef4b51a90..fcfa8a863 100644 --- a/data/presets/SID/Overdrive.xpf +++ b/data/presets/SID/Overdrive.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/SID/Pad.xpf b/data/presets/SID/Pad.xpf index 2a03b3f43..07f5a34fe 100644 --- a/data/presets/SID/Pad.xpf +++ b/data/presets/SID/Pad.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/AmazingBubbles.xpf b/data/presets/TripleOscillator/AmazingBubbles.xpf index d06bd61ca..8e4d22c5f 100644 --- a/data/presets/TripleOscillator/AmazingBubbles.xpf +++ b/data/presets/TripleOscillator/AmazingBubbles.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/AnalogBell.xpf b/data/presets/TripleOscillator/AnalogBell.xpf index 18f4d2baa..4bd866bcb 100644 --- a/data/presets/TripleOscillator/AnalogBell.xpf +++ b/data/presets/TripleOscillator/AnalogBell.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/AnalogDreamz.xpf b/data/presets/TripleOscillator/AnalogDreamz.xpf index 0af114cb9..3796f312f 100644 --- a/data/presets/TripleOscillator/AnalogDreamz.xpf +++ b/data/presets/TripleOscillator/AnalogDreamz.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/AnalogTimes.xpf b/data/presets/TripleOscillator/AnalogTimes.xpf index 0717947ed..2c264df8f 100644 --- a/data/presets/TripleOscillator/AnalogTimes.xpf +++ b/data/presets/TripleOscillator/AnalogTimes.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Analogous.xpf b/data/presets/TripleOscillator/Analogous.xpf index ec5c61a60..9d389fb87 100644 --- a/data/presets/TripleOscillator/Analogous.xpf +++ b/data/presets/TripleOscillator/Analogous.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Arpeggio.xpf b/data/presets/TripleOscillator/Arpeggio.xpf index 32300966f..edc441094 100644 --- a/data/presets/TripleOscillator/Arpeggio.xpf +++ b/data/presets/TripleOscillator/Arpeggio.xpf @@ -3,10 +3,10 @@ - - + + - + diff --git a/data/presets/TripleOscillator/ArpeggioPing.xpf b/data/presets/TripleOscillator/ArpeggioPing.xpf index 5da4c30d8..fd4dfd952 100644 --- a/data/presets/TripleOscillator/ArpeggioPing.xpf +++ b/data/presets/TripleOscillator/ArpeggioPing.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/Bell.xpf b/data/presets/TripleOscillator/Bell.xpf index 1d7044980..181462ac9 100644 --- a/data/presets/TripleOscillator/Bell.xpf +++ b/data/presets/TripleOscillator/Bell.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/BellArp.xpf b/data/presets/TripleOscillator/BellArp.xpf index 63f4edb06..ab3977fda 100644 --- a/data/presets/TripleOscillator/BellArp.xpf +++ b/data/presets/TripleOscillator/BellArp.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/BlandModBass.xpf b/data/presets/TripleOscillator/BlandModBass.xpf index 3160bd097..778fd04ac 100644 --- a/data/presets/TripleOscillator/BlandModBass.xpf +++ b/data/presets/TripleOscillator/BlandModBass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/BrokenToy.xpf b/data/presets/TripleOscillator/BrokenToy.xpf index ed0ac370e..b12a57e8c 100644 --- a/data/presets/TripleOscillator/BrokenToy.xpf +++ b/data/presets/TripleOscillator/BrokenToy.xpf @@ -3,12 +3,12 @@ - + - + - + diff --git a/data/presets/TripleOscillator/ChurchOrgan.xpf b/data/presets/TripleOscillator/ChurchOrgan.xpf index ac7a54f13..82565060b 100644 --- a/data/presets/TripleOscillator/ChurchOrgan.xpf +++ b/data/presets/TripleOscillator/ChurchOrgan.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/CryingPads.xpf b/data/presets/TripleOscillator/CryingPads.xpf index 441dce3c7..47ec11889 100644 --- a/data/presets/TripleOscillator/CryingPads.xpf +++ b/data/presets/TripleOscillator/CryingPads.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/DetunedGhost.xpf b/data/presets/TripleOscillator/DetunedGhost.xpf index 4f180b6e3..e72a6e365 100644 --- a/data/presets/TripleOscillator/DetunedGhost.xpf +++ b/data/presets/TripleOscillator/DetunedGhost.xpf @@ -3,14 +3,13 @@ - + - - + diff --git a/data/presets/TripleOscillator/DirtyReece.xpf b/data/presets/TripleOscillator/DirtyReece.xpf index d574c7299..095c3e665 100644 --- a/data/presets/TripleOscillator/DirtyReece.xpf +++ b/data/presets/TripleOscillator/DirtyReece.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/DistortedPMBass.xpf b/data/presets/TripleOscillator/DistortedPMBass.xpf index 970235507..57818277d 100644 --- a/data/presets/TripleOscillator/DistortedPMBass.xpf +++ b/data/presets/TripleOscillator/DistortedPMBass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Drums_HardKick.xpf b/data/presets/TripleOscillator/Drums_HardKick.xpf index 64bd31949..104c4066e 100644 --- a/data/presets/TripleOscillator/Drums_HardKick.xpf +++ b/data/presets/TripleOscillator/Drums_HardKick.xpf @@ -3,7 +3,7 @@ - + @@ -94,7 +94,7 @@ - + diff --git a/data/presets/TripleOscillator/Drums_HihatC.xpf b/data/presets/TripleOscillator/Drums_HihatC.xpf index 3b4dd5735..e34535d87 100644 --- a/data/presets/TripleOscillator/Drums_HihatC.xpf +++ b/data/presets/TripleOscillator/Drums_HihatC.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Drums_HihatO.xpf b/data/presets/TripleOscillator/Drums_HihatO.xpf index 19258c57a..e1e1bed63 100644 --- a/data/presets/TripleOscillator/Drums_HihatO.xpf +++ b/data/presets/TripleOscillator/Drums_HihatO.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/Drums_Kick.xpf b/data/presets/TripleOscillator/Drums_Kick.xpf index d18e0ed17..30c8284e6 100644 --- a/data/presets/TripleOscillator/Drums_Kick.xpf +++ b/data/presets/TripleOscillator/Drums_Kick.xpf @@ -1,21 +1,26 @@ - + - - + + - + - - - - + + + + - - - - + + + + + + + + + diff --git a/data/presets/TripleOscillator/Drums_Snare.xpf b/data/presets/TripleOscillator/Drums_Snare.xpf index 50731bf56..62f6c55db 100644 --- a/data/presets/TripleOscillator/Drums_Snare.xpf +++ b/data/presets/TripleOscillator/Drums_Snare.xpf @@ -1,21 +1,26 @@ - + - - + + - + - - - - + + + + - - - - + + + + + + + + + diff --git a/data/presets/TripleOscillator/DullBell.xpf b/data/presets/TripleOscillator/DullBell.xpf index 549689e4e..905feee52 100644 --- a/data/presets/TripleOscillator/DullBell.xpf +++ b/data/presets/TripleOscillator/DullBell.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/E-Organ.xpf b/data/presets/TripleOscillator/E-Organ.xpf index b04ba010d..cc842c52f 100644 --- a/data/presets/TripleOscillator/E-Organ.xpf +++ b/data/presets/TripleOscillator/E-Organ.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/E-Organ2.xpf b/data/presets/TripleOscillator/E-Organ2.xpf index 4ef8e1ac5..cc96f9e76 100644 --- a/data/presets/TripleOscillator/E-Organ2.xpf +++ b/data/presets/TripleOscillator/E-Organ2.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/ElectricOboe.xpf b/data/presets/TripleOscillator/ElectricOboe.xpf index a68b66bbb..70035a87f 100644 --- a/data/presets/TripleOscillator/ElectricOboe.xpf +++ b/data/presets/TripleOscillator/ElectricOboe.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Erazzor.xpf b/data/presets/TripleOscillator/Erazzor.xpf index 02e020b78..3f9762190 100644 --- a/data/presets/TripleOscillator/Erazzor.xpf +++ b/data/presets/TripleOscillator/Erazzor.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/FatCheese.xpf b/data/presets/TripleOscillator/FatCheese.xpf index 748b4dfe3..516067e19 100644 --- a/data/presets/TripleOscillator/FatCheese.xpf +++ b/data/presets/TripleOscillator/FatCheese.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/FatPMArp.xpf b/data/presets/TripleOscillator/FatPMArp.xpf index ad11a8952..22afcc14e 100644 --- a/data/presets/TripleOscillator/FatPMArp.xpf +++ b/data/presets/TripleOscillator/FatPMArp.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/FatTB303Arp.xpf b/data/presets/TripleOscillator/FatTB303Arp.xpf index 33bb2d8f6..131331c3a 100644 --- a/data/presets/TripleOscillator/FatTB303Arp.xpf +++ b/data/presets/TripleOscillator/FatTB303Arp.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Freaky-Bass.xpf b/data/presets/TripleOscillator/Freaky-Bass.xpf index 9368fcad5..0f4a10999 100644 --- a/data/presets/TripleOscillator/Freaky-Bass.xpf +++ b/data/presets/TripleOscillator/Freaky-Bass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/FutureBass.xpf b/data/presets/TripleOscillator/FutureBass.xpf index 84f4541e0..9f2b12bf6 100644 --- a/data/presets/TripleOscillator/FutureBass.xpf +++ b/data/presets/TripleOscillator/FutureBass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/FuzzyAnalogBass.xpf b/data/presets/TripleOscillator/FuzzyAnalogBass.xpf index 78b176dfd..82c3f72e5 100644 --- a/data/presets/TripleOscillator/FuzzyAnalogBass.xpf +++ b/data/presets/TripleOscillator/FuzzyAnalogBass.xpf @@ -1,21 +1,30 @@ - + - - + + - + + + - - - - + + + + - - - - + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Garfunkel.xpf b/data/presets/TripleOscillator/Garfunkel.xpf index d2f66d1fe..0e3ba9a24 100644 --- a/data/presets/TripleOscillator/Garfunkel.xpf +++ b/data/presets/TripleOscillator/Garfunkel.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/GhostBoy.xpf b/data/presets/TripleOscillator/GhostBoy.xpf index 0742a1c3c..90ea1fcea 100644 --- a/data/presets/TripleOscillator/GhostBoy.xpf +++ b/data/presets/TripleOscillator/GhostBoy.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/Harmonium.xpf b/data/presets/TripleOscillator/Harmonium.xpf index a90325093..52c0c0db7 100644 --- a/data/presets/TripleOscillator/Harmonium.xpf +++ b/data/presets/TripleOscillator/Harmonium.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf b/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf index c248b9c48..732571f86 100644 --- a/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf +++ b/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf @@ -3,8 +3,8 @@ - - + + diff --git a/data/presets/TripleOscillator/HiPad.xpf b/data/presets/TripleOscillator/HiPad.xpf index d61892e45..90713c7a2 100644 --- a/data/presets/TripleOscillator/HiPad.xpf +++ b/data/presets/TripleOscillator/HiPad.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/HugeGrittyBass.xpf b/data/presets/TripleOscillator/HugeGrittyBass.xpf index ab752fbff..59853f29c 100644 --- a/data/presets/TripleOscillator/HugeGrittyBass.xpf +++ b/data/presets/TripleOscillator/HugeGrittyBass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Jupiter.xpf b/data/presets/TripleOscillator/Jupiter.xpf index 86b59aac5..f0cad3577 100644 --- a/data/presets/TripleOscillator/Jupiter.xpf +++ b/data/presets/TripleOscillator/Jupiter.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/LFO-party.xpf b/data/presets/TripleOscillator/LFO-party.xpf index f5d9b1baa..a2b58ce7e 100644 --- a/data/presets/TripleOscillator/LFO-party.xpf +++ b/data/presets/TripleOscillator/LFO-party.xpf @@ -3,12 +3,12 @@ - + - + diff --git a/data/presets/TripleOscillator/LovelyDream.xpf b/data/presets/TripleOscillator/LovelyDream.xpf index 589640975..4d061fe2a 100644 --- a/data/presets/TripleOscillator/LovelyDream.xpf +++ b/data/presets/TripleOscillator/LovelyDream.xpf @@ -3,10 +3,10 @@ - + - + diff --git a/data/presets/TripleOscillator/MoogArpeggio.xpf b/data/presets/TripleOscillator/MoogArpeggio.xpf index d2f280c1b..11a3ee1ff 100644 --- a/data/presets/TripleOscillator/MoogArpeggio.xpf +++ b/data/presets/TripleOscillator/MoogArpeggio.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/MoveYourBody.xpf b/data/presets/TripleOscillator/MoveYourBody.xpf index fb67237bd..9b56e9a54 100644 --- a/data/presets/TripleOscillator/MoveYourBody.xpf +++ b/data/presets/TripleOscillator/MoveYourBody.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/OldComputerGames.xpf b/data/presets/TripleOscillator/OldComputerGames.xpf index 674bef674..c19b3e352 100644 --- a/data/presets/TripleOscillator/OldComputerGames.xpf +++ b/data/presets/TripleOscillator/OldComputerGames.xpf @@ -3,7 +3,7 @@ - + @@ -73,24 +73,6 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/PM-FMstring.xpf b/data/presets/TripleOscillator/PM-FMstring.xpf index 1433f3c47..485a570f6 100644 --- a/data/presets/TripleOscillator/PM-FMstring.xpf +++ b/data/presets/TripleOscillator/PM-FMstring.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/PMFMFTWbass.xpf b/data/presets/TripleOscillator/PMFMFTWbass.xpf index d81b55601..62ce53ab5 100644 --- a/data/presets/TripleOscillator/PMFMFTWbass.xpf +++ b/data/presets/TripleOscillator/PMFMFTWbass.xpf @@ -3,12 +3,12 @@ - + - + - + diff --git a/data/presets/TripleOscillator/PMbass.xpf b/data/presets/TripleOscillator/PMbass.xpf index 2e63d7136..9c0f062c9 100644 --- a/data/presets/TripleOscillator/PMbass.xpf +++ b/data/presets/TripleOscillator/PMbass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/PercussiveBass.xpf b/data/presets/TripleOscillator/PercussiveBass.xpf index 4afb1d0de..c9ebd118a 100644 --- a/data/presets/TripleOscillator/PercussiveBass.xpf +++ b/data/presets/TripleOscillator/PercussiveBass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Play-some-rock.xpf b/data/presets/TripleOscillator/Play-some-rock.xpf index 2ee19a7b2..0faeb71e3 100644 --- a/data/presets/TripleOscillator/Play-some-rock.xpf +++ b/data/presets/TripleOscillator/Play-some-rock.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/PluckArpeggio.xpf b/data/presets/TripleOscillator/PluckArpeggio.xpf index 44ce26c8e..b8e7deffc 100644 --- a/data/presets/TripleOscillator/PluckArpeggio.xpf +++ b/data/presets/TripleOscillator/PluckArpeggio.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/PluckBass.xpf b/data/presets/TripleOscillator/PluckBass.xpf index 51c5de329..f19113aca 100644 --- a/data/presets/TripleOscillator/PluckBass.xpf +++ b/data/presets/TripleOscillator/PluckBass.xpf @@ -3,7 +3,7 @@ - + @@ -15,31 +15,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/PowerStrings.xpf b/data/presets/TripleOscillator/PowerStrings.xpf index 0ef375097..0fdbd6a56 100644 --- a/data/presets/TripleOscillator/PowerStrings.xpf +++ b/data/presets/TripleOscillator/PowerStrings.xpf @@ -3,7 +3,7 @@ - + @@ -16,10 +16,6 @@ - - - - diff --git a/data/presets/TripleOscillator/RaveBass.xpf b/data/presets/TripleOscillator/RaveBass.xpf index 21fc6e90c..c27e9c790 100644 --- a/data/presets/TripleOscillator/RaveBass.xpf +++ b/data/presets/TripleOscillator/RaveBass.xpf @@ -3,12 +3,12 @@ - + - + - + diff --git a/data/presets/TripleOscillator/Ravemania.xpf b/data/presets/TripleOscillator/Ravemania.xpf index cab609fc5..4635a141e 100644 --- a/data/presets/TripleOscillator/Ravemania.xpf +++ b/data/presets/TripleOscillator/Ravemania.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/ResoBass.xpf b/data/presets/TripleOscillator/ResoBass.xpf index 85a785c6e..0f53d79d4 100644 --- a/data/presets/TripleOscillator/ResoBass.xpf +++ b/data/presets/TripleOscillator/ResoBass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/ResonantPad.xpf b/data/presets/TripleOscillator/ResonantPad.xpf index 0e375c846..dd0202e98 100644 --- a/data/presets/TripleOscillator/ResonantPad.xpf +++ b/data/presets/TripleOscillator/ResonantPad.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Rough!.xpf b/data/presets/TripleOscillator/Rough!.xpf index 38e5d364a..d2bca1ada 100644 --- a/data/presets/TripleOscillator/Rough!.xpf +++ b/data/presets/TripleOscillator/Rough!.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/SEGuitar.xpf b/data/presets/TripleOscillator/SEGuitar.xpf index 1215552b0..3f9445ca3 100644 --- a/data/presets/TripleOscillator/SEGuitar.xpf +++ b/data/presets/TripleOscillator/SEGuitar.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/SawReso.xpf b/data/presets/TripleOscillator/SawReso.xpf index 2c631d663..57c735322 100644 --- a/data/presets/TripleOscillator/SawReso.xpf +++ b/data/presets/TripleOscillator/SawReso.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/SpaceBass.xpf b/data/presets/TripleOscillator/SpaceBass.xpf index aeb43286d..b551cc8d4 100644 --- a/data/presets/TripleOscillator/SpaceBass.xpf +++ b/data/presets/TripleOscillator/SpaceBass.xpf @@ -3,8 +3,8 @@ - - + + diff --git a/data/presets/TripleOscillator/Square.xpf b/data/presets/TripleOscillator/Square.xpf index cbd455e0f..3b0470990 100644 --- a/data/presets/TripleOscillator/Square.xpf +++ b/data/presets/TripleOscillator/Square.xpf @@ -3,12 +3,12 @@ - + - + - + diff --git a/data/presets/TripleOscillator/SquarePing.xpf b/data/presets/TripleOscillator/SquarePing.xpf index c4a1999dd..4ce7483f4 100644 --- a/data/presets/TripleOscillator/SquarePing.xpf +++ b/data/presets/TripleOscillator/SquarePing.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/SuperSawLead.xpf b/data/presets/TripleOscillator/SuperSawLead.xpf index 916bde548..2e082e645 100644 --- a/data/presets/TripleOscillator/SuperSawLead.xpf +++ b/data/presets/TripleOscillator/SuperSawLead.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Supernova.xpf b/data/presets/TripleOscillator/Supernova.xpf index e5cebe159..9c76dd9de 100644 --- a/data/presets/TripleOscillator/Supernova.xpf +++ b/data/presets/TripleOscillator/Supernova.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/TB303.xpf b/data/presets/TripleOscillator/TB303.xpf index e5c1229ee..586ebd75a 100644 --- a/data/presets/TripleOscillator/TB303.xpf +++ b/data/presets/TripleOscillator/TB303.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/TINTNpad.xpf b/data/presets/TripleOscillator/TINTNpad.xpf index 6f04ca4f2..8f2c1e90d 100644 --- a/data/presets/TripleOscillator/TINTNpad.xpf +++ b/data/presets/TripleOscillator/TINTNpad.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/TheFirstOne.xpf b/data/presets/TripleOscillator/TheFirstOne.xpf index 741b07f3a..b00e48cd3 100644 --- a/data/presets/TripleOscillator/TheFirstOne.xpf +++ b/data/presets/TripleOscillator/TheFirstOne.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/TheMaster.xpf b/data/presets/TripleOscillator/TheMaster.xpf index c54787a19..3d65d0530 100644 --- a/data/presets/TripleOscillator/TheMaster.xpf +++ b/data/presets/TripleOscillator/TheMaster.xpf @@ -3,9 +3,9 @@ - + - + @@ -15,17 +15,6 @@ - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/TranceLead.xpf b/data/presets/TripleOscillator/TranceLead.xpf index cd1d3526a..8a6963e91 100644 --- a/data/presets/TripleOscillator/TranceLead.xpf +++ b/data/presets/TripleOscillator/TranceLead.xpf @@ -1,18 +1,22 @@ - - + + - - - - - - - - - + + + + + + + + + + + - - - - + + + + + + diff --git a/data/presets/TripleOscillator/WarmStack.xpf b/data/presets/TripleOscillator/WarmStack.xpf index fb903295c..6b0855e39 100644 --- a/data/presets/TripleOscillator/WarmStack.xpf +++ b/data/presets/TripleOscillator/WarmStack.xpf @@ -3,9 +3,9 @@ - + - + diff --git a/data/presets/TripleOscillator/Whistle.xpf b/data/presets/TripleOscillator/Whistle.xpf index 3d03f5e56..61bf8a546 100644 --- a/data/presets/TripleOscillator/Whistle.xpf +++ b/data/presets/TripleOscillator/Whistle.xpf @@ -3,8 +3,8 @@ - - + + diff --git a/data/presets/TripleOscillator/Xylophon.xpf b/data/presets/TripleOscillator/Xylophon.xpf index 73c92c55b..6e8d27db4 100644 --- a/data/presets/TripleOscillator/Xylophon.xpf +++ b/data/presets/TripleOscillator/Xylophon.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Vibed/Harpsichord.xpf b/data/presets/Vibed/Harpsichord.xpf index b7c617c9b..3864514e9 100644 --- a/data/presets/Vibed/Harpsichord.xpf +++ b/data/presets/Vibed/Harpsichord.xpf @@ -3,8 +3,8 @@ - - + + diff --git a/data/presets/Vibed/SadPad.xpf b/data/presets/Vibed/SadPad.xpf index 2ef17698b..00b9f1001 100644 --- a/data/presets/Vibed/SadPad.xpf +++ b/data/presets/Vibed/SadPad.xpf @@ -3,8 +3,8 @@ - - + + diff --git a/data/presets/Watsyn/Epic_lead.xpf b/data/presets/Watsyn/Epic_lead.xpf index a1747eadc..a45472ca1 100644 --- a/data/presets/Watsyn/Epic_lead.xpf +++ b/data/presets/Watsyn/Epic_lead.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Watsyn/Phase_bass.xpf b/data/presets/Watsyn/Phase_bass.xpf index 641c59c5b..d8feec186 100644 --- a/data/presets/Watsyn/Phase_bass.xpf +++ b/data/presets/Watsyn/Phase_bass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Watsyn/Pulse.xpf b/data/presets/Watsyn/Pulse.xpf index b3ace765e..14d58bcd5 100644 --- a/data/presets/Watsyn/Pulse.xpf +++ b/data/presets/Watsyn/Pulse.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/X-Pressive/Ambition.xpf b/data/presets/X-Pressive/Ambition.xpf deleted file mode 100644 index 2d93f7c05..000000000 --- a/data/presets/X-Pressive/Ambition.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Baby Violin.xpf b/data/presets/X-Pressive/Baby Violin.xpf deleted file mode 100644 index 2e887d3d2..000000000 --- a/data/presets/X-Pressive/Baby Violin.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Bad Singer.xpf b/data/presets/X-Pressive/Bad Singer.xpf deleted file mode 100644 index ca9cfd5a3..000000000 --- a/data/presets/X-Pressive/Bad Singer.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Cloud Bass.xpf b/data/presets/X-Pressive/Cloud Bass.xpf deleted file mode 100644 index 4e444f22a..000000000 --- a/data/presets/X-Pressive/Cloud Bass.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Creature.xpf b/data/presets/X-Pressive/Creature.xpf deleted file mode 100644 index b667a9c7f..000000000 --- a/data/presets/X-Pressive/Creature.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Electric Shock.xpf b/data/presets/X-Pressive/Electric Shock.xpf deleted file mode 100644 index 7dea6fe4a..000000000 --- a/data/presets/X-Pressive/Electric Shock.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Faded Colors.xpf b/data/presets/X-Pressive/Faded Colors.xpf deleted file mode 100644 index 84a37826a..000000000 --- a/data/presets/X-Pressive/Faded Colors.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Fat Flute.xpf b/data/presets/X-Pressive/Fat Flute.xpf deleted file mode 100644 index 92242114e..000000000 --- a/data/presets/X-Pressive/Fat Flute.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Horn.xpf b/data/presets/X-Pressive/Horn.xpf deleted file mode 100644 index 099480569..000000000 --- a/data/presets/X-Pressive/Horn.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Piano-Gong.xpf b/data/presets/X-Pressive/Piano-Gong.xpf deleted file mode 100644 index 241f61a55..000000000 --- a/data/presets/X-Pressive/Piano-Gong.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Rubber Bass.xpf b/data/presets/X-Pressive/Rubber Bass.xpf deleted file mode 100644 index 73c3648ba..000000000 --- a/data/presets/X-Pressive/Rubber Bass.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Space Echoes.xpf b/data/presets/X-Pressive/Space Echoes.xpf deleted file mode 100644 index 1d4d2b543..000000000 --- a/data/presets/X-Pressive/Space Echoes.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Speaker Swapper.xpf b/data/presets/X-Pressive/Speaker Swapper.xpf deleted file mode 100644 index cf80b9304..000000000 --- a/data/presets/X-Pressive/Speaker Swapper.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Toss.xpf b/data/presets/X-Pressive/Toss.xpf deleted file mode 100644 index 27a0b3f96..000000000 --- a/data/presets/X-Pressive/Toss.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Untuned Bell.xpf b/data/presets/X-Pressive/Untuned Bell.xpf deleted file mode 100644 index 744927063..000000000 --- a/data/presets/X-Pressive/Untuned Bell.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Vibrato.xpf b/data/presets/X-Pressive/Vibrato.xpf deleted file mode 100644 index 34795de11..000000000 --- a/data/presets/X-Pressive/Vibrato.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/X-Distorted.xpf b/data/presets/X-Pressive/X-Distorted.xpf deleted file mode 100644 index cbe3742a5..000000000 --- a/data/presets/X-Pressive/X-Distorted.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/X-Pressive/Accordion.xpf b/data/presets/Xpressive/Accordion.xpf similarity index 99% rename from data/presets/X-Pressive/Accordion.xpf rename to data/presets/Xpressive/Accordion.xpf index a7a3a3b43..aa0957063 100644 --- a/data/presets/X-Pressive/Accordion.xpf +++ b/data/presets/Xpressive/Accordion.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Ambition.xpf b/data/presets/Xpressive/Ambition.xpf new file mode 100644 index 000000000..9d90ca516 --- /dev/null +++ b/data/presets/Xpressive/Ambition.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Baby Violin.xpf b/data/presets/Xpressive/Baby Violin.xpf new file mode 100644 index 000000000..11f02c4d9 --- /dev/null +++ b/data/presets/Xpressive/Baby Violin.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Bad Singer.xpf b/data/presets/Xpressive/Bad Singer.xpf new file mode 100644 index 000000000..b303f590b --- /dev/null +++ b/data/presets/Xpressive/Bad Singer.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Cloud Bass.xpf b/data/presets/Xpressive/Cloud Bass.xpf new file mode 100644 index 000000000..ac14b8fd5 --- /dev/null +++ b/data/presets/Xpressive/Cloud Bass.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Creature.xpf b/data/presets/Xpressive/Creature.xpf new file mode 100644 index 000000000..10d443132 --- /dev/null +++ b/data/presets/Xpressive/Creature.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/X-Pressive/Dream.xpf b/data/presets/Xpressive/Dream.xpf similarity index 99% rename from data/presets/X-Pressive/Dream.xpf rename to data/presets/Xpressive/Dream.xpf index 3b5dd7da2..3eb20cf60 100644 --- a/data/presets/X-Pressive/Dream.xpf +++ b/data/presets/Xpressive/Dream.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Electric Shock.xpf b/data/presets/Xpressive/Electric Shock.xpf new file mode 100644 index 000000000..65e4b35d8 --- /dev/null +++ b/data/presets/Xpressive/Electric Shock.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Faded Colors - notes test.xpf b/data/presets/Xpressive/Faded Colors - notes test.xpf new file mode 100644 index 000000000..53b6ba726 --- /dev/null +++ b/data/presets/Xpressive/Faded Colors - notes test.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Faded Colors.xpf b/data/presets/Xpressive/Faded Colors.xpf new file mode 100644 index 000000000..469a0b51d --- /dev/null +++ b/data/presets/Xpressive/Faded Colors.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Fat Flute.xpf b/data/presets/Xpressive/Fat Flute.xpf new file mode 100644 index 000000000..ada0512d2 --- /dev/null +++ b/data/presets/Xpressive/Fat Flute.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/X-Pressive/Frog.xpf b/data/presets/Xpressive/Frog.xpf similarity index 99% rename from data/presets/X-Pressive/Frog.xpf rename to data/presets/Xpressive/Frog.xpf index bf8b2b249..3dc3f6b29 100644 --- a/data/presets/X-Pressive/Frog.xpf +++ b/data/presets/Xpressive/Frog.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Horn.xpf b/data/presets/Xpressive/Horn.xpf new file mode 100644 index 000000000..2377f0566 --- /dev/null +++ b/data/presets/Xpressive/Horn.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/X-Pressive/Low Battery.xpf b/data/presets/Xpressive/Low Battery.xpf similarity index 64% rename from data/presets/X-Pressive/Low Battery.xpf rename to data/presets/Xpressive/Low Battery.xpf index c0e648ac9..6b73b9db3 100644 --- a/data/presets/X-Pressive/Low Battery.xpf +++ b/data/presets/Xpressive/Low Battery.xpf @@ -1,20 +1,21 @@ - + - - + + - + + + - - - - + + + + - - - + + diff --git a/data/presets/Xpressive/Piano-Gong.xpf b/data/presets/Xpressive/Piano-Gong.xpf new file mode 100644 index 000000000..1be055702 --- /dev/null +++ b/data/presets/Xpressive/Piano-Gong.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Rubber Bass.xpf b/data/presets/Xpressive/Rubber Bass.xpf new file mode 100644 index 000000000..f3a5774d5 --- /dev/null +++ b/data/presets/Xpressive/Rubber Bass.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Space Echoes.xpf b/data/presets/Xpressive/Space Echoes.xpf new file mode 100644 index 000000000..abeb7e20a --- /dev/null +++ b/data/presets/Xpressive/Space Echoes.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Speaker Swapper.xpf b/data/presets/Xpressive/Speaker Swapper.xpf new file mode 100644 index 000000000..9c9e4f416 --- /dev/null +++ b/data/presets/Xpressive/Speaker Swapper.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Toss.xpf b/data/presets/Xpressive/Toss.xpf new file mode 100644 index 000000000..9b765203c --- /dev/null +++ b/data/presets/Xpressive/Toss.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/Untuned Bell.xpf b/data/presets/Xpressive/Untuned Bell.xpf new file mode 100644 index 000000000..4a542b286 --- /dev/null +++ b/data/presets/Xpressive/Untuned Bell.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/data/presets/Xpressive/Vibrato.xpf b/data/presets/Xpressive/Vibrato.xpf new file mode 100644 index 000000000..23e816207 --- /dev/null +++ b/data/presets/Xpressive/Vibrato.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Xpressive/X-Distorted.xpf b/data/presets/Xpressive/X-Distorted.xpf new file mode 100644 index 000000000..61ee8b6bb --- /dev/null +++ b/data/presets/Xpressive/X-Distorted.xpf @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0074-Smooth Expanded.xiz b/data/presets/ZynAddSubFX/Companion/0074-Smooth Expanded.xiz index cc060f775..6ef773a33 100644 --- a/data/presets/ZynAddSubFX/Companion/0074-Smooth Expanded.xiz +++ b/data/presets/ZynAddSubFX/Companion/0074-Smooth Expanded.xiz @@ -19,7 +19,7 @@ Will Godfrey GPL V 2 or later Now has a slow long tail. -Only really noticable on lower notes. +Only really noticeable on lower notes. diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/ReadMe.txt b/data/presets/ZynAddSubFX/Cormi_Sound/ReadMe.txt index 1a82faa9e..8465a4292 100644 --- a/data/presets/ZynAddSubFX/Cormi_Sound/ReadMe.txt +++ b/data/presets/ZynAddSubFX/Cormi_Sound/ReadMe.txt @@ -1,27 +1,27 @@ - January 28th 2013 - -Dear friend, -here's an improved version of my instruments, release V2.0 -There are two banks: sound and noise. - -Maybe in the next times I'll need three of them. - -I like fantasy sounds, the zyn instruments do not reflect real instruments. -Some are modified copies created by others. - -I'm using ZynAddSubFx in almost all of my compositions. They are oriented to background sounds for narration. -So the instruments want to suggest atmospheres, feelings, and are not finalized to songs. -Often I mix two or three instruments simultaneously to produce a full sound. - - -You can hear some of them in: -http://www.freesound.org/search/?q=cormi&f=duration%3A%5B0+TO+*%5D&s=created+desc&advanced=1&a_username=1&g=1 - - - -I hope you'll enjoy my work as I enjoyed those that people wanted to share with me. - - - - -cormi + January 28th 2013 + +Dear friend, +here's an improved version of my instruments, release V2.0 +There are two banks: sound and noise. + +Maybe in the next times I'll need three of them. + +I like fantasy sounds, the zyn instruments do not reflect real instruments. +Some are modified copies created by others. + +I'm using ZynAddSubFx in almost all of my compositions. They are oriented to background sounds for narration. +So the instruments want to suggest atmospheres, feelings, and are not finalized to songs. +Often I mix two or three instruments simultaneously to produce a full sound. + + +You can hear some of them in: +http://www.freesound.org/search/?q=cormi&f=duration%3A%5B0+TO+*%5D&s=created+desc&advanced=1&a_username=1&g=1 + + + +I hope you'll enjoy my work as I enjoyed those that people wanted to share with me. + + + + +cormi diff --git a/data/presets/ZynAddSubFX/Laba170bank/descriptions.txt b/data/presets/ZynAddSubFX/Laba170bank/descriptions.txt index b4df11950..c0e6aec83 100644 --- a/data/presets/ZynAddSubFX/Laba170bank/descriptions.txt +++ b/data/presets/ZynAddSubFX/Laba170bank/descriptions.txt @@ -1,8 +1,8 @@ -Author of presets: Laba170 - -Made in Zynaddsubfx vsti ver 2.4.1.420 - - -* Some of these presets needs unison to sound like they were intended. - +Author of presets: Laba170 + +Made in Zynaddsubfx vsti ver 2.4.1.420 + + +* Some of these presets needs unison to sound like they were intended. + * Relative bandwith (relBW) can on many patches be tweaked to fatten up the sound or make it sharper. \ No newline at end of file diff --git a/data/presets/ZynAddSubFX/Plucked/progressive-house-pluck.xiz b/data/presets/ZynAddSubFX/Plucked/progressive-house-pluck.xiz index c9c255de4..c0c591451 100644 --- a/data/presets/ZynAddSubFX/Plucked/progressive-house-pluck.xiz +++ b/data/presets/ZynAddSubFX/Plucked/progressive-house-pluck.xiz @@ -1,465 +1,465 @@ - - - - - - - - - - - - - - Analog Piano 3 - - - - - - - - - - Analog Piano 3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + Analog Piano 3 + + + + + + + + + + Analog Piano 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/projects/demos/Alf42red-Mauiwowi.mmpz b/data/projects/demos/Alf42red-Mauiwowi.mmpz index ec390ad3a..446ca4280 100644 Binary files a/data/projects/demos/Alf42red-Mauiwowi.mmpz and b/data/projects/demos/Alf42red-Mauiwowi.mmpz differ diff --git a/data/projects/demos/CapDan/CapDan-TwilightArea-OriginalByAlf42red.mmpz b/data/projects/demos/CapDan/CapDan-TwilightArea-OriginalByAlf42red.mmpz index 1687e8c34..b4a00e1ea 100644 Binary files a/data/projects/demos/CapDan/CapDan-TwilightArea-OriginalByAlf42red.mmpz and b/data/projects/demos/CapDan/CapDan-TwilightArea-OriginalByAlf42red.mmpz differ diff --git a/data/projects/demos/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz b/data/projects/demos/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz index 95a29daff..578c4f926 100644 Binary files a/data/projects/demos/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz and b/data/projects/demos/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz differ diff --git a/data/projects/demos/DnB.mmpz b/data/projects/demos/DnB.mmpz index c84f3ebd2..6695356b2 100644 Binary files a/data/projects/demos/DnB.mmpz and b/data/projects/demos/DnB.mmpz differ diff --git a/data/projects/demos/EsoXLB-CPU.mmpz b/data/projects/demos/EsoXLB-CPU.mmpz index 1c2549027..7647ce62a 100644 Binary files a/data/projects/demos/EsoXLB-CPU.mmpz and b/data/projects/demos/EsoXLB-CPU.mmpz differ diff --git a/data/projects/demos/Farbro-Tectonic.mmpz b/data/projects/demos/Farbro-Tectonic.mmpz index c639401e3..3ba17f556 100644 Binary files a/data/projects/demos/Farbro-Tectonic.mmpz and b/data/projects/demos/Farbro-Tectonic.mmpz differ diff --git a/data/projects/demos/Greippi - Krem Kaakkuja (Second Flight Remix).mmpz b/data/projects/demos/Greippi - Krem Kaakkuja (Second Flight Remix).mmpz index 2f862dd51..d08ca6e04 100644 Binary files a/data/projects/demos/Greippi - Krem Kaakkuja (Second Flight Remix).mmpz and b/data/projects/demos/Greippi - Krem Kaakkuja (Second Flight Remix).mmpz differ diff --git a/data/projects/demos/Impulslogik-Zen.mmpz b/data/projects/demos/Impulslogik-Zen.mmpz index 05fa375c4..774ce89e3 100644 Binary files a/data/projects/demos/Impulslogik-Zen.mmpz and b/data/projects/demos/Impulslogik-Zen.mmpz differ diff --git a/data/projects/demos/Jousboxx-BuzzerBeater.mmpz b/data/projects/demos/Jousboxx-BuzzerBeater.mmpz index 60795608c..59f0d63f6 100644 Binary files a/data/projects/demos/Jousboxx-BuzzerBeater.mmpz and b/data/projects/demos/Jousboxx-BuzzerBeater.mmpz differ diff --git a/data/projects/demos/Momo64-esp.mmpz b/data/projects/demos/Momo64-esp.mmpz index 68ae6822c..37d1a52b5 100644 Binary files a/data/projects/demos/Momo64-esp.mmpz and b/data/projects/demos/Momo64-esp.mmpz differ diff --git a/data/projects/demos/Namitryus-K-Project.mmpz b/data/projects/demos/Namitryus-K-Project.mmpz index 6d463cbb9..4d62826c9 100644 Binary files a/data/projects/demos/Namitryus-K-Project.mmpz and b/data/projects/demos/Namitryus-K-Project.mmpz differ diff --git a/data/projects/demos/Oglsdl-Dr8v2.mmpz b/data/projects/demos/Oglsdl-Dr8v2.mmpz index eb9d7559a..56ed0ee2d 100644 Binary files a/data/projects/demos/Oglsdl-Dr8v2.mmpz and b/data/projects/demos/Oglsdl-Dr8v2.mmpz differ diff --git a/data/projects/demos/Oglsdl-PpTrip.mmpz b/data/projects/demos/Oglsdl-PpTrip.mmpz index d1baceeba..cf10a89a7 100644 Binary files a/data/projects/demos/Oglsdl-PpTrip.mmpz and b/data/projects/demos/Oglsdl-PpTrip.mmpz differ diff --git a/data/projects/demos/Popsip-Electric Dancer.mmpz b/data/projects/demos/Popsip-Electric Dancer.mmpz index fc93dd64a..1c935dbe1 100644 Binary files a/data/projects/demos/Popsip-Electric Dancer.mmpz and b/data/projects/demos/Popsip-Electric Dancer.mmpz differ diff --git a/data/projects/demos/Root84-Initialize.mmpz b/data/projects/demos/Root84-Initialize.mmpz index 349fcb88f..05200823a 100644 Binary files a/data/projects/demos/Root84-Initialize.mmpz and b/data/projects/demos/Root84-Initialize.mmpz differ diff --git a/data/projects/demos/Saber-FinalStep.mmpz b/data/projects/demos/Saber-FinalStep.mmpz index 5e3d1d1ff..6e7c3367d 100644 Binary files a/data/projects/demos/Saber-FinalStep.mmpz and b/data/projects/demos/Saber-FinalStep.mmpz differ diff --git a/data/projects/demos/Settel-InnerRecreation.mmpz b/data/projects/demos/Settel-InnerRecreation.mmpz index aaa01e0bc..7ddea8b2d 100644 Binary files a/data/projects/demos/Settel-InnerRecreation.mmpz and b/data/projects/demos/Settel-InnerRecreation.mmpz differ diff --git a/data/projects/demos/Shovon-ProgressiveHousePluckDemo.mmpz b/data/projects/demos/Shovon-ProgressiveHousePluckDemo.mmpz index 2d31bd7bd..fef19eab2 100644 Binary files a/data/projects/demos/Shovon-ProgressiveHousePluckDemo.mmpz and b/data/projects/demos/Shovon-ProgressiveHousePluckDemo.mmpz differ diff --git a/data/projects/demos/Skiessi/Skiessi-C64.mmpz b/data/projects/demos/Skiessi/Skiessi-C64.mmpz index f0b3f5cdb..a9756453b 100644 Binary files a/data/projects/demos/Skiessi/Skiessi-C64.mmpz and b/data/projects/demos/Skiessi/Skiessi-C64.mmpz differ diff --git a/data/projects/demos/Skiessi/Skiessi-Onion.mmpz b/data/projects/demos/Skiessi/Skiessi-Onion.mmpz index 0c40fb60a..23a1ddc48 100644 Binary files a/data/projects/demos/Skiessi/Skiessi-Onion.mmpz and b/data/projects/demos/Skiessi/Skiessi-Onion.mmpz differ diff --git a/data/projects/demos/Skiessi/Skiessi-RandomProjectNumber14253.mmpz b/data/projects/demos/Skiessi/Skiessi-RandomProjectNumber14253.mmpz index d3c6e0f8d..bc2810567 100644 Binary files a/data/projects/demos/Skiessi/Skiessi-RandomProjectNumber14253.mmpz and b/data/projects/demos/Skiessi/Skiessi-RandomProjectNumber14253.mmpz differ diff --git a/data/projects/demos/Skiessi/Skiessi-TurningPoint.mmpz b/data/projects/demos/Skiessi/Skiessi-TurningPoint.mmpz index ee5be4b55..47a0a3672 100644 Binary files a/data/projects/demos/Skiessi/Skiessi-TurningPoint.mmpz and b/data/projects/demos/Skiessi/Skiessi-TurningPoint.mmpz differ diff --git a/data/projects/demos/Socceroos-Progress.mmpz b/data/projects/demos/Socceroos-Progress.mmpz index 74ff5774c..854663787 100644 Binary files a/data/projects/demos/Socceroos-Progress.mmpz and b/data/projects/demos/Socceroos-Progress.mmpz differ diff --git a/data/projects/demos/StrictProduction-DearJonDoe.mmp b/data/projects/demos/StrictProduction-DearJonDoe.mmp index 98d26d74a..06ea96d9f 100644 --- a/data/projects/demos/StrictProduction-DearJonDoe.mmp +++ b/data/projects/demos/StrictProduction-DearJonDoe.mmp @@ -8,7 +8,7 @@ - + @@ -81,7 +81,7 @@ - + @@ -128,7 +128,7 @@ - + @@ -157,7 +157,7 @@ - + @@ -187,7 +187,7 @@ - + @@ -215,7 +215,7 @@ - + @@ -242,7 +242,7 @@ - + @@ -272,7 +272,7 @@ - + @@ -304,7 +304,7 @@ - + @@ -673,11 +673,11 @@ - + @@ -53,7 +53,7 @@ - + @@ -118,7 +118,7 @@ - + @@ -187,23 +187,23 @@